matt-pocock
0
总安装量
1
周安装量
安装命令
npx skills add https://github.com/ajoslin/dot --skill matt-pocock
Agent 安装分布
amp
1
cline
1
opencode
1
cursor
1
continue
1
kimi-cli
1
Skill 文档
Matt Pocock Workflow Router
Use this as a meta-skill that classifies work, routes to the right downstream skills, and enforces planning-before-execution.
Core Flow
idea -> write-a-prd -> prd-to-issues -> execute vertical slices -> manual QA
Do not skip required artifacts. If required artifact is missing, route backward to generate it.
Routing Table
| Situation | Route |
|---|---|
| New feature, unclear scope, ambiguous requirements | write-a-prd |
| PRD exists but implementation tasks are not decomposed | prd-to-issues |
| Bugfix or behavior change needs confidence | tdd |
| High-impact API/UI contract or unclear interface | design-an-interface |
| Multi-file risky refactor | request-refactor-plan |
| Commit safety / branch hygiene needed | git-guardrails-claude-code |
Guardrails
- Do not execute medium/large implementation work without clear acceptance criteria.
- Prefer vertical slices over horizontal layer-by-layer execution.
- Require dependency mapping when multiple issues/agents are involved.
- Require behavior-first test evidence for bugfixes and non-trivial changes.
- Keep artifacts concise and machine-operable.
Handoff Contract
Each routing hop should output explicit artifacts:
write-a-prd->prd.mdwith scope, stories, constraints, acceptance criteria.prd-to-issues-> issue list with dependencies, owners/agents, and slice boundaries.tdd-> failing test intent, implementation notes, passing evidence.design-an-interface-> compared options, chosen design, tradeoff rationale.request-refactor-plan-> invariants, sequence, rollback points, verification steps.
Reading Order
references/workflow-philosophy.mdreferences/skill-graph.mdreferences/planning-execution-loop.mdreferences/vertical-slice-playbook.mdreferences/trw-adaptation-notes.md
Anti-Patterns
- Starting implementation before artifact readiness
- Creating oversized, ambiguous tasks
- Horizontal-only execution (db -> api -> ui) with late integration
- Duplicate doctrine across files instead of linking references
In This Reference
references/workflow-philosophy.md– principles and decision heuristicsreferences/skill-graph.md– routing DAG and branch rulesreferences/planning-execution-loop.md– end-to-end operating loopreferences/vertical-slice-playbook.md– slice design and quality checksreferences/trw-adaptation-notes.md– how to apply this in TRW