mattpocock/skills: The Repository That Turns AI Agents Into Engineers
A system of skills, workflows, and state files that pushes coding agents toward TDD, triage, and rigorous decision-making instead of loose prompt-following.
- `mattpocock/skills` treats AI agents as junior engineers that need questions, constraints, and verification before they need output.
- Its real innovation is not prompt writing, but moving context and decisions into files so the workflow can survive outside the model window.
- The repo is opinionated about process, which makes it feel closer to a governance layer than a prompt library.
- That difference matters because it optimizes for accountable engineering, not just faster generation.
The sharpest thing about `mattpocock/skills` is not that it helps agents write code. It is that it tries to make them behave like engineers who ask for clarity, follow process, and leave a paper trail. That is a different product category entirely.
Matt Pocock’s own framing is blunt: “Skills for Real Engineers. Straight from my .claude directory.” That line is more than branding. It is the project thesis in miniature: practical, opinionated, and allergic to AI theater.
The smartest part is not the code. It is the questioning.
The repo’s most memorable move is /grill-me. Instead of taking a half-baked request and racing to code, the agent interrogates the problem first. The point is not politeness. The point is reducing ambiguity before it metastasizes into a bad implementation.
After using Matt Pocock's skills, I've come around to the idea that LLM's main utility is to act as the ultimate rubber ducky. The `grill-me` feature is honestly the most useful, not for guiding the follow up writing of code, but to make me write down and explore the idea I have more quickly.
That observation explains the repo’s hidden appeal. People do not just want a coding assistant. They want a pressure-tested thought partner that forces them to articulate the problem well enough for the rest of the workflow to make sense.
A repository that behaves like a workflow engine
At the structural level, this is a modular skill library with installation, invocation, and lifecycle management. The important files are not just prompts. They are the scaffolding around prompts: bootstrap scripts, plugin metadata, documentation mirrors, and skill folders that segment behavior by task and discipline.
skills/
engineering/
triage/
SKILL.md
tdd/
SKILL.md
wayfinder/
SKILL.md
productivity/
grill-me/
SKILL.md
setup-matt-pocock-skills/
SKILL.md
.claude-plugin/
plugin.json
scripts/
link-skills.sh
Skills are markdown, but they act like state machines
The cleverness sits in the `SKILL.md` pattern. These files are readable by humans, but they also behave like procedural constraints for the model. In practice, that means the agent is guided through a sequence instead of being left to improvise from a single vague instruction.
needs-triage -> needs-info -> ready-for-agent
Explore -> Present -> Confirm -> Write
red -> green -> refactor
That is why the repo feels more like an operating system than a prompt pack. It does not just tell the model what to do. It defines what counts as a valid next step.
The filesystem is the memory
This is the repo’s most practical idea. LLMs are stateless by default, so `mattpocock/skills` pushes important decisions into the repository itself. The agent does not have to remember everything if the workflow has already written the important bits down.
That shows up in the bootstrapper and in the local docs it creates. A project can be foggy in the moment and still become navigable later, because the state lives in files, not in a temporary context window.
This is not one skill. It is a system of governance
The repository is broad on purpose. `grill-me`, `tdd`, `triage`, `wayfinder`, `codebase-design`, and the rest are not random utilities. They are controls. Each one constrains a different failure mode: unclear requirements, lazy implementation, architectural drift, or poor task decomposition.
| Dimension | mattpocock/skills | Generic prompt library | Automation-first toolkit |
|---|---|---|---|
| Primary goal | Engineer disciplined agent behavior | Provide reusable prompts | Execute tasks with fewer steps |
| Constraint model | Workflow stages and state transitions | Ad hoc instructions | Tool calls and scripts |
| State persistence | Yes, via filesystem artifacts | Usually no | Sometimes, but not central |
| Engineering discipline | Explicitly optimized for it | Optional | Secondary to speed |
| Assumes the user already knows the answer | No, it asks first | Often yes | Usually yes |
That distinction matters. A generic prompt library asks, “What can the model do?” This repo asks, “What process should the model be forced to respect?” The second question is much more interesting if you care about code quality over demo velocity.
Skills for Real Engineers. Straight from my .claude directory.
Why this beats generic AI setups
The competition is not just other prompt packs. It is broader AI workflow design: personal Claude setups, full-stack harnesses, and catalog-style skill indexes. `mattpocock/skills` stands out because it is opinionated about engineering standards, not just about access to tools.
| Project | Best at | Weak spot relative to mattpocock/skills |
|---|---|---|
| gstack | Executive-style Claude workflows | Less focused on granular engineering discipline |
| pi-mono | Platform-agnostic skill harnesses | Less centered on Claude Code and on engineering habits |
| awesome-codex-skills | Discovery and indexing | More catalog than workflow |
| andrej-karpathy-skills | Influential markdown-based agent patterns | Less explicit about governed engineering loops |
The repo’s niche is narrow but strong. It is trying to create an accountable AI maintainer, not a clever chatbot. That narrower goal is exactly why it feels useful.
The larger bet
The bigger implication is that serious AI tooling will move away from loose prompting and toward encoded process. Models will keep getting better, but the real leap may come from wrapping them in better engineering discipline.
`mattpocock/skills` is a clean example of that shift. It makes AI less magical, more legible, and easier to trust. In a noisy category, that is the difference that lasts.