Skip to content

Skills Overview

MeowKit ships 43 skills using the meow: namespace prefix.

Architecture

Each skill folder follows a two-layer design: a compact decision router (SKILL.md, ~100 lines) that handles routing logic inline, and a references/ directory for detailed procedures loaded on demand. This keeps context overhead low — agents load only what each phase requires.

meow:skill-name/
├── SKILL.md          # Decision router (~100 lines)
├── references/       # Detailed procedures (loaded on-demand)
│   ├── workflow-*.md
│   └── patterns.md
├── scripts/          # Validation scripts
├── bin/              # Shell hooks
└── assets/           # Templates, configs

On-demand loading

Skills only load their references/ files when the relevant phase is active. This prevents flooding the context window with procedures that don't apply to the current step.

Skill Types

Skills fall into distinct types based on purpose and phase alignment.

TypePurposeExamples
PipelineEnd-to-end workflows orchestrating multiple phasescook, fix, ship, workflow-orchestrator
Quality GateEnforce standards at specific phase boundariesreview, cso, vulnerability-scanner, lint-and-validate
PlanningPlan creation, review, and ideationplan-creator, plan-ceo-review, plan-eng-review, office-hours
ExplorationCodebase search, debugging, doc retrievalscout, investigate, docs-finder
DomainStack-specific patterns and conventionstypescript, vue, frontend-design
SafetyPrevent destructive actions, scope editscareful, freeze, skill-template-secure
InfrastructureAgent routing, loading, skill creationagent-detector, lazy-agent-loader, skill-creator
Reference ToolkitGuides loaded by agents during specific phasesdevelopment, testing, planning, shipping, documentation, memory
UtilityCross-cutting tools (browser, media, docs gen)browse, agent-browser, multimodal, llms, qa, qa-manual, playwright-cli

Plan-First Gate

Most pipeline and quality skills check for an approved plan before proceeding. The table below documents each skill's gate behavior and the conditions under which planning is skipped.

SkillGate behaviorSkip condition
meow:cookCreate plan if missingPlan path arg, --fast mode
meow:fixPlan if > 2 files--quick mode
meow:shipRequire approved planHotfix with human approval
meow:csoScope audit via plan--daily mode
meow:qaCreate QA scope docQuick tier
meow:reviewRead plan for contextPR diff reviews
meow:workflow-orchestratorRoute to plan-creatorFasttrack mode
meow:investigateProduces input FOR plansAlways skips
meow:office-hoursPre-planning skillAlways skips
meow:retroData-driven, no planAlways skips
meow:document-releaseScope from diffPost-ship sync

Why some skills always skip planning

Skills that skip planning have documented reasons — they either produce planning input (investigate, office-hours) or are data-driven and operate after the ship phase (retro, document-release).

Pipeline Skills

Full development pipelines that orchestrate multiple phases.

SkillWhat it does
meow:cookEnd-to-end feature pipeline: plan → test → build → review → ship
meow:fixStructured bug investigation with auto-complexity detection
meow:shipShip pipeline: merge, test, review, version, commit, PR
meow:workflow-orchestrator5-phase TDD workflow with token budgets and fast-track
meow:session-continuationSave/resume workflow state across sessions

Quality & Review

Code quality enforcement, review, and security scanning.

SkillWhat it does
meow:reviewMulti-pass code review with adversarial analysis
meow:csoChief Security Officer — infrastructure-first audit
meow:vulnerability-scannerOWASP 2025 code-level scanning
meow:clean-codePragmatic coding standards (SRP, DRY, KISS)
meow:lint-and-validateAuto-run linters + type checks after changes

Planning & Design

Plan creation, review, and ideation.

SkillWhat it does
meow:plan-creatorAuto-select plan template by task scope
meow:plan-ceo-reviewCEO-mode plan review with scope expansion
meow:plan-eng-reviewEngineering plan review — architecture, edges, tests
meow:office-hoursYC-style brainstorming (startup + builder modes)
meow:brainstormingStructured ideation with scoring + plan-creator handoff

Exploration & Research

Codebase exploration, debugging, and documentation retrieval.

SkillWhat it does
meow:scoutParallel codebase exploration via Explore subagents
meow:investigateSystematic 5-phase root cause debugging
meow:docs-finderLibrary/project docs via Context7 + Context Hub
meow:sequential-thinkingHypothesis-driven reasoning for root cause analysis

Browser & QA Testing

Browser automation, QA testing, and E2E code generation.

SkillWhat it does
meow:qa-manualSpec-driven manual QA + Playwright E2E code gen
meow:qaSystematic QA with bug fixing and health scores
meow:browseFast headless browser (~100ms/command)
meow:agent-browserChrome/CDP with session persistence and auth
meow:playwright-cliPlaywright MCP with code generation

Frontend

TypeScript, Vue, React, and UI/UX design patterns.

SkillWhat it does
meow:typescriptStrict TS: null handling, type guards, utility types
meow:vueVue 3 Composition API, Pinia, reactivity
meow:angularAngular v20+ patterns — 10 topics consolidated (components, signals, DI, forms, routing, HTTP, SSR, testing, tooling)
meow:react-patternsReact/Next.js performance — 45+ rules from Vercel Engineering
meow:frontend-designUI/UX with anti-AI-slop enforcement
meow:ui-design-systemDesign intelligence: styles, WCAG 2.1 AA, palettes, quality checklists

Analysis & Media

Multimodal analysis and documentation generation.

SkillWhat it does
meow:multimodalImage/video/audio/PDF via Gemini API
meow:llmsGenerate llms.txt per llmstxt.org spec

Safety & Scoping

Destructive command prevention and edit restrictions.

SkillWhat it does
meow:carefulWarn before rm -rf, DROP TABLE, force-push
meow:freezeRestrict edits to one directory
meow:skill-template-secureSecure template for skills handling untrusted input

Infrastructure

Agent detection, loading, skill creation, and project organization.

SkillWhat it does
meow:agent-detectorAuto-detect agent + complexity + model per message
meow:lazy-agent-loaderOn-demand agent loading for token savings
meow:skill-creatorScaffold + validate + register new skills
meow:project-organizationFile naming, directory structure standards
meow:bootstrapApplication scaffold for any stack with progressive generation

Documentation & Release

Post-ship docs, retrospectives, and release management.

SkillWhat it does
meow:docs-initGenerate initial docs from codebase analysis
meow:document-releasePost-ship doc sync — cross-reference diff against docs
meow:retroSprint retrospective with commit analysis + trends

Reference Toolkits

Collections of reference guides loaded by agents during specific phases.

SkillWhat it does
meow:developmentCode patterns, TDD, skill loading (Phase 3)
meow:documentationLiving docs, API sync, changelog (Phase 6)
meow:memorySession capture, patterns, cost tracking (Phase 0, 6)
meow:shippingShip pipeline, canary deploy, rollback (Phase 5)
meow:testingRed-green-refactor, validation, visual QA (Phase 2-3)

See Also

Released under the MIT License.