liauw-media

liauw-media

@liauw-media

GitHub
50 Skills
150 Total Stars
February 2026 Joined

Public Skills

Autonomous Development

by liauw-media

/mentor - Architecture review gate

Agents 3 4mo ago

gcp-architecture

by liauw-media

"Google Cloud Platform architecture patterns and best practices. Use when designing, deploying, or reviewing GCP infrastructure including GKE, Cloud Run, Cloud Functions, BigQuery, and IAM."

Database 3 4mo ago

alibaba-cloud-architecture

by liauw-media

"Alibaba Cloud architecture patterns and best practices. Use when designing, deploying, or reviewing infrastructure on Alibaba Cloud including ECS, ACK, Function Compute, and OSS."

Processing 3 4mo ago

aws-architecture

by liauw-media

"AWS cloud architecture patterns and best practices. Use when designing, deploying, or reviewing AWS infrastructure including EC2, ECS, EKS, Lambda, RDS, S3, IAM, and VPC."

Cloud 3 4mo ago

ansible-automation

by liauw-media

"Configuration management with Ansible. Use when automating server setup, application deployment, orchestrating multi-server tasks, or managing infrastructure configuration."

CLI Tools 3 4mo ago

docker-containers

by liauw-media

"Docker containerization best practices. Use when building Docker images, writing Dockerfiles, configuring Docker Compose, or troubleshooting container issues."

Docker 3 4mo ago

cost-optimization

by liauw-media

"Cloud cost optimization and FinOps practices. Use when analyzing cloud costs, implementing savings strategies, or optimizing resource usage."

Cloud 3 4mo ago

cloud-monitoring

by liauw-media

"Cloud monitoring with Prometheus, Grafana, and cloud-native tools. Use when setting up metrics, alerts, dashboards, or troubleshooting performance issues."

API Dev 3 4mo ago

azure-architecture

by liauw-media

"Microsoft Azure architecture patterns and best practices. Use when designing, deploying, or reviewing Azure infrastructure including AKS, App Service, Functions, CosmosDB, and Entra ID."

Cloud 3 4mo ago

vercel-deployment

by liauw-media

"Vercel deployment patterns and best practices. Use when deploying frontend applications, configuring edge functions, setting up preview deployments, or optimizing Next.js applications."

API Dev 3 4mo ago

gitops-workflows

by liauw-media

"GitOps deployment patterns with ArgoCD and Flux. Use when implementing Git-based infrastructure management, continuous deployment, or declarative operations."

Git & VCS 3 4mo ago

kubernetes-orchestration

by liauw-media

"Kubernetes container orchestration. Use when deploying to Kubernetes, writing manifests, configuring Helm charts, or troubleshooting cluster issues."

Kubernetes 3 4mo ago

policy-as-code

by liauw-media

"Policy as Code with OPA, Kyverno, and Checkov. Use when implementing governance, compliance automation, or security policies for infrastructure and Kubernetes."

Cloud 3 4mo ago

terraform-iac

by liauw-media

"Infrastructure as Code with Terraform. Use when provisioning cloud resources, managing state, creating modules, or reviewing Terraform configurations."

Cloud 3 4mo ago

rag-architecture

by liauw-media

"Use when building retrieval-augmented generation systems. Covers chunking strategies, embedding models, vector databases, retrieval patterns, and hybrid search. Apply when adding knowledge bases, document Q&A, or semantic search to applications."

Database 3 4mo ago

agentic-design

by liauw-media

"Use when building AI agent systems. Covers agent loops, tool calling, planning patterns, memory systems, multi-agent coordination, and safety guardrails. Apply when creating autonomous AI workflows, coding assistants, or task automation systems."

Agents 3 4mo ago

llm-integration

by liauw-media

"Use when integrating LLM APIs into applications. Covers API patterns, prompt templates, streaming, error handling, cost optimization, and provider abstraction. Apply when building chat interfaces, completion endpoints, or AI-powered features."

ML Ops 3 4mo ago

persistent-memory

by liauw-media

"Use when working on long-running projects or needing context across sessions. Covers memory architecture, privacy controls, efficient retrieval, and integration with claude-mem plugin. Apply when building features that span multiple sessions or need historical context."

Auth 3 4mo ago

branch-discipline

by liauw-media

"Enforce one branch per issue, small focused commits, and clean git history. Use with /branch command."

Code Review 3 5mo ago

system-architect

by liauw-media

"Use when performing security audits or system hardening. Teaches security assessment principles and prioritization."

Code Review 3 5mo ago

ci-templates

by liauw-media

"Use when setting up CI/CD pipelines. Teaches pipeline design principles and references platform-specific templates."

CI/CD 3 5mo ago

Resource Limiting Skill

by liauw-media

defense-in-depth - Multiple safety layers

CLI Tools 3 5mo ago

using-skills

by liauw-media

"Check for relevant skills before starting any task"

Automation 3 5mo ago

code-review

by liauw-media

"Self-review before declaring work complete"

Code Review 3 5mo ago

database-backup

by liauw-media

"Backup database before tests, migrations, or other database operations"

CLI Tools 3 5mo ago

brand-guidelines

by liauw-media

"Establish or analyze brand identity guidelines. Creates comprehensive brand documentation that frontend-design, testing, and other skills automatically reference for consistent execution."

Code Review 3 6mo ago

playwright-frontend-testing

by liauw-media

"Use when testing frontend applications. AI-assisted browser testing with Playwright MCP. Fast, deterministic, no vision models needed."

Scraping 3 6mo ago

frontend-design

by liauw-media

Create distinctive, production-grade frontend interfaces with high design quality. Use when building web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.

Animation 3 6mo ago

lighthouse-performance-optimization

by liauw-media

"Use when optimizing website performance. Run Google Lighthouse audits via MCP to measure metrics, identify bottlenecks, and iterate on improvements."

Code Review 3 6mo ago

browser-automation-debugging

by liauw-media

"Use when debugging web applications or automating browser tasks. Leverage Chrome DevTools MCP for inspection, performance analysis, and automated testing."

Code Review 3 6mo ago

git-platform-cli

by liauw-media

"MANDATORY: Use gh (GitHub) or glab (GitLab) CLI for ALL issue/task management. Unified workflow across platforms."

CLI Tools 3 6mo ago

pre-commit-hooks

by liauw-media

"MANDATORY setup for all projects. Automated code quality enforcement before commits. Prevents bad code from entering repository."

CLI Tools 3 6mo ago

verification-before-completion

by liauw-media

"Use when finishing any task. Final checklist before marking complete. Ensures nothing forgotten, all tests pass, documentation updated."

Auth 3 6mo ago

git-workflow

by liauw-media

"Use when making commits, creating branches, or managing Git operations. Ensures consistent Git practices and proper commit messages."

Auth 3 6mo ago

root-cause-tracing

by liauw-media

"Use when symptoms don't reveal the cause. Trace backward through call chains to find where problems originate. Follow: Observe symptom → Find immediate cause → Identify caller → Keep tracing → Locate trigger."

Debugging 3 6mo ago

testing-skills-with-subagents

by liauw-media

"Use to validate process documentation. Apply TDD to skill writing: RED (run without skill, document failures) → GREEN (write skill) → REFACTOR (close loopholes). Test under pressure: time constraints, sunk cost, exhaustion, authority."

Automation 3 6mo ago

writing-skills

by liauw-media

"Use when creating reusable process documentation. Apply TDD: baseline without skill → document failures → write skill → test → iterate. Four types: Discipline, Technique, Pattern, Reference. Iron Law: No skill without failing test first."

Debugging 3 6mo ago

testing-anti-patterns

by liauw-media

"Use to avoid critical testing mistakes. Five Iron Laws: Never test mock behavior, Never add test-only methods, Never mock without understanding, Always integration test, Always test error paths."

Code Gen 3 6mo ago

sharing-skills

by liauw-media

"Use when contributing skills back to the community. Follow git workflow: sync upstream → create branch → develop skill → test with writing-skills → commit → push → PR. One skill per PR."

Code Review 3 6mo ago

requesting-code-review

by liauw-media

"Use when completing tasks or major features. Know when and how to request reviews. Provides git commit range to code-reviewer agent."

Auth 3 6mo ago

defense-in-depth

by liauw-media

"Use when implementing validation or safety checks. Multi-layer validation approach prevents bugs through redundant safeguards. Makes bugs structurally impossible."

Processing 3 6mo ago

condition-based-waiting

by liauw-media

"Use when tests fail intermittently. Replace arbitrary timeouts with condition polling. Eliminates flaky tests caused by timing assumptions."

CI/CD 3 6mo ago

receiving-code-review

by liauw-media

"Use when processing code review feedback. Technical evaluation of feedback, verify before implementing. No performative agreement or gratitude."

Code Review 3 6mo ago

systematic-debugging

by liauw-media

"Use when encountering bugs or unexpected behavior. Methodical approach to identify root cause: Reproduce → Isolate → Identify → Fix → Verify."

Code Review 3 6mo ago

test-driven-development

by liauw-media

"Use when adding features or fixing bugs. Follow RED/GREEN/REFACTOR cycle. Write failing test first, implement minimal code to pass, then refactor."

Code Gen 3 6mo ago

executing-plans

by liauw-media

"Use when implementing a multi-step plan. Execute systematically with verification checkpoints to catch errors early."

Auth 3 6mo ago

writing-plans

by liauw-media

"Use after brainstorming, before implementation. Breaks work into discrete, actionable tasks with clear verification points."

Automation 3 6mo ago

dispatching-parallel-agents

by liauw-media

"Use when multiple independent tasks can run simultaneously. Enables efficient parallel work execution with specialized agents."

Agents 3 6mo ago

finishing-a-development-branch

by liauw-media

"Use when ready to merge feature branch. Complete checklist before creating PR/MR. Ensures professional quality and prevents embarrassing mistakes."

Auth 3 6mo ago

brainstorming

by liauw-media

"Use when starting new features, major changes, or unclear requirements. Establishes shared understanding before implementation."

Auth 3 6mo ago