Matt Pocock's Skills
Commands and capabilities checked on September 21, 2026.
Matt Pocock's skill pack is an implementation of spec-driven development as a set of coding-agent skills. Unlike Spec Kit and OpenSpec, which stack artifacts in a repository directory, this pack builds the pipeline on top of the issue tracker: the specification is published as an issue, tasks as linked tickets, and the work then follows the team's usual process.
Installation and setup
Two ways: editable — npx skills@latest add mattpocock/skills (the skills are copied into the repository, ready to fork and edit) — and managed, via the official Claude Code plugin marketplace (/plugin install mattpocock-skills). Then /setup-matt-pocock-skills runs once per repository: the setup skill detects the tracker from the repository and confirms the choice (GitHub, GitLab, and local Markdown have templates; other trackers, including Linear, use workflow instructions supplied by the user), the triage label vocabulary (needs-triage, ready-for-agent, ready-for-human…), and the domain-doc layout; the configuration lands in docs/agents/.
Workflow
The main "idea → ship" flow is assembled from skills along the SDD phases:
- An interview instead of a rough prompt.
/grill-merelentlessly interviews you: independent questions in rounds throughgrilling, with a recommended answer for each. Questions depending on unresolved decisions wait for a later round; the skill looks up facts in the codebase itself and leaves the decisions to the human. The/grill-with-docsvariant maintains the domain documentation along the way viadomain-modeling: the glossary inCONTEXT.mdand ADRs are written down the moment a decision crystallizes. - Specification.
/to-specsynthesizes the worked-through conversation into a self-contained specification (a PRD, essentially) — no new interview — and publishes it to the tracker with theready-for-agentlabel. The specification omits concrete file paths and ordinary code listings because they become stale. A short prototype excerpt may be included when it captures a decision more precisely, such as a state model. A separate step is choosing the testing "seams": the skill presents them to the user for sign-off, preferring existing seams over new ones. - Tasks.
/to-ticketsslices the specification into tracer-bullet tickets — vertical slices "through every layer: schema, API, UI, tests", each sized to fit a single fresh context window and each explicitly declaring which tickets block it. On a real tracker the edges become native blocking links; in the local variant, text in the ticket file. The execution rule is "work the frontier": pick any ticket whose blockers are all done. The exception is wide mechanical refactors: those are not sliced but sequenced as expand–contract. - Implementation.
/implementdrives the work from the specification or tickets:/tddinside, at the pre-agreed seams, regular typechecking and test runs, the full suite at the end. - Review.
/implementfinishes with/code-review: two axes — conformance to the repository's standards and conformance to the original specification — checked by parallel subagents so they don't pollute each other's context.
Around the main pipeline sit skills for scale and the edges of the process:
/wayfinder— when the work is bigger than one specification: the idea unfolds into a map of investigation tickets on the tracker, and the agent resolves them one at a time until the way is clear./triage— incoming issues move through the canonical labels (needs-triage→ready-for-agent/ready-for-human) and end up as an agent-ready brief./prototypeanswers a design question with a standalone interactive HTML file for logic or switchable UI alternatives. The prototype is preserved on a separate branch linked from the task./handoff— compacting the conversation into a handoff document for the next session, referencing the already-created artifacts instead of duplicating them./diagnosing-bugsorganizes hypothesis-driven debugging./to-questionnaireprepares questions for the person who holds the missing knowledge./wizardgenerates an interactive script for human-only setup or migration steps./writing-for-agentshelps write agent instructions and documents; it replaces and expandswriting-great-skills.
Artifacts
| Artifact | Where it lives |
|---|---|
| Specification (PRD) | A tracker issue with the ready-for-agent label |
| Tickets with blocking edges | The tracker (or files in .scratch/<feature>/issues/, if the tracker is local) |
CONTEXT.md |
Repository root: the domain glossary |
| ADRs | docs/adr/: architectural decisions |
| Handoff document | The OS temp directory — deliberately outside the repo |
What makes it different
- A pipeline on top of the tracker: the specification and tickets live where the humans' tasks live — the team's process doesn't fork in two.
- An interview as the first phase: the pack assumes holes in the idea are cheapest to find before the specification, in conversation.
- Tracer-bullet tickets: the slicing is not into "layers" (model, API, UI) but into vertical slices with an explicit blocking graph — every ticket brings the feature to a verifiable state.
- Domain documentation as a by-product: the glossary and ADRs are written during the interview, and the other skills are obliged to use that vocabulary.
When to choose it
Matt Pocock's pack is the option for those who already live in a coding agent and an issue tracker and want SDD without a new tool in the stack: the pipeline is assembled from skills, and the artifacts land in familiar issues. Managed installation is available in Claude Code; the editable route works in Codex and other agents. If you want a rigid frame with fixed artifact files in the repository, OpenSpec is closer; philosophically the nearest neighbor is Superpowers — another skill pack, with stricter checkpoints.