Skip to content

Cheatsheet

Slash Commands

CommandPhaseWhat it does
/meow:meow [task]0Entry point — classifies and routes to right agent
/meow:plan [feature]1Premise challenge + two-lens plan + Gate 1
/meow:cook [feature]1→5Full pipeline: plan → test → build → review → ship
/meow:fix [bug]variesAuto-detect complexity, route to fix strategy
/meow:review4Multi-pass code review + adversarial analysis
/meow:ship5Pre-ship → commit → PR → CI verify → rollback doc
/meow:test2TDD enforcement — write or run tests
/meow:audit4Full security scan across all platforms
/meow:validateanyRun deterministic Python validation scripts
/meow:arch [action]1Generate, list, or analyze ADRs
/meow:design [system]1System design consultation (docs only)
/meow:docs-init6Initial codebase scan → doc skeleton
/meow:docs-sync6Diff-aware doc updates after feature work
/meow:canary5Staged deployment with monitoring
/meow:retro6Sprint retrospective with trend tracking
/meow:budgetanyToken cost tracking report
/meow:party [topic]1Multi-agent deliberation — 2-4 agents debate, forced synthesis
/meow:spawn [agent]anyLaunch parallel agent session
/meow:upgradeanySelf-update MeowKit
/meow:helpanyScan project state, recommend next pipeline step

Agents Quick Reference

AgentAuto-activates whenPhaseKey output
orchestratorEvery task0Routing decision + model tier
plannerStandard/complex tasks1Plan file at tasks/plans/
brainstormerExplicit or complex planning1Trade-off analysis
researcherResearch tasks0,1,4Structured findings
architectSchema/API/infra changes1ADR + system design
testerBefore implementation2Failing tests (RED phase)
securityAuth/payments/security changes2,4BLOCK/PASS verdict
developerAfter tester confirms RED3Implementation (GREEN phase)
reviewerAfter implementation45-dimension verdict
shipperAfter Gate 25PR + rollback docs
documenterAfter ship6Updated docs + changelog
analystSession start/end0,6Cost report + patterns
journal-writerOn failure/escalation6Root cause documentation

Workflow Phases

PhaseNameGate?What happens
0OrientRead memory, load skills, route model tier
1Plan✋ Gate 1Challenge premises, create plan, human approval
2Test REDWrite failing tests first (TDD)
3Build GREENImplement until tests pass
4Review✋ Gate 25-dimension audit, human approval
5ShipCommit, PR, CI verify, rollback docs
6ReflectUpdate docs, memory, retrospective

Execution Modes

ModeWhenAgentsGate behavior
Sequential (default)All tasks1 per phaseFull gates
ParallelCOMPLEX + independent subtasksUp to 3, worktree isolationGates always sequential
PartyArchitecture decisions2-4 deliberation agentsNo code, synthesis only

Model Routing

TierExamplesModel
TRIVIALRename, typo, formatCheapest (Haiku)
STANDARDFeature, bug fix, testsDefault (Sonnet)
COMPLEXArchitecture, security, authBest (Opus)

Domain override: meow:scale-routing at Phase 0. Fintech, healthcare, auth → force COMPLEX regardless of manual classification.

Modes

ModeGatesSecurityUse for
defaultBothFullMost work
strictBoth (no WARN)Every fileProduction, auth, payments
fastGate 1 onlyBLOCK onlyPrototypes
architectN/AN/ADesign-only sessions
auditN/AComprehensiveSecurity reviews

Hooks

HookTypeWhat it doesBlocks?
post-write.shPostToolUseSecurity scan on Edit/WriteYes
post-session.shStopCapture session to memoryNo
pre-task-check.shSkill-invokedInjection pattern detectionYes
pre-implement.shSkill-invokedTDD gate (must have failing test)Yes
pre-ship.shSkill-invokedTest + lint + typecheckYes
privacy-block.shPreToolUseBlock .env / *.key / credential readsYes
gate-enforcement.shPreToolUseBlock source writes before Gate 1 approvalYes
project-context-loader.shSessionStartAuto-load project-context.md into contextNo

Key Skills

SkillTriggerOutput
meow:cook"build feature"Full pipeline execution
meow:fix"fix bug", "debug"Root cause + fix + regression test
meow:ship"ship", "deploy", "create PR"PR URL + rollback docs
meow:review"review", "check diff"Verdict: APPROVE/BLOCK
meow:scout"find files", "search codebase"File map + architecture fingerprint
meow:investigate"debug this", "why broken"Root cause + evidence
meow:docs-finder"docs for [lib]"Structured documentation
meow:multimodalImage/video/audio fileAnalysis via Gemini
meow:qa-manual"test this flow"QA report or Playwright .spec.ts
meow:cso"security audit"OWASP + STRIDE findings
meow:party"decide architecture"Multi-agent decision brief
meow:scale-routingPhase 0 (automatic)Domain complexity level
meow:worktreeParallel execution setupIsolated git worktree

Planning (Phase 1)

CommandPurposeEnds with
meow:plan-creatorCreate plan from scratchPrint & Stop
meow:plan-ceo-reviewProduct lens reviewPrint & Stop
meow:plan-eng-reviewEngineering lens reviewPrint & Stop
/meow:cook [path]Begin implementationRuns pipeline

All three review skills stop after printing — you control when to run /meow:cook [plan path].

CommandWhat it does
/meow:plan "feature"Create plan via meow:plan-creator
npx mewkit task new --type feature "desc"Create task from template
npx mewkit task listList active tasks

Task Templates

TemplateUse whenCreate with
featureAdding new functionalitynpx mewkit task new --type feature
bug-fixFixing broken behaviornpx mewkit task new --type bug-fix
refactorRestructuring codenpx mewkit task new --type refactor
securitySecurity reviewnpx mewkit task new --type security
guidelineTeam standardsCopy from tasks/templates/guideline.md

Task status flow

draftin-progressblockedreviewdone

Non-trivial rule

Create a task file for any change affecting > 2 files OR > 30 minutes.

Released under the MIT License.