0
0
via GitHub · Posted Jul 11, 2026 · 1 min read
Claude Skill

Skills for Real Engineers. Straight from my .claude directory.

165,419Stars
14,228Forks
138Open issues
965Watching
Shell MIT v1.1.0 Updated 1 month ago
View on GitHub

At a glance

Shell 41 skills Actively maintained Commercial OK

A collection of Claude agent skills designed for practical software development, including techniques for requirements alignment, shared language documentation, test-driven development, and codebase architecture. These composable skills help developers work effectively with AI coding agents while maintaining software quality and preventing common failure modes.

0 comments

README

Skills For Real Engineers

skills.sh

My agent skills that I use every day to do real engineering - not vibe coding.

Developing real applications is hard. Approaches like GSD, BMAD, and Spec-Kit try to help by owning the process. But while doing so, they take away your control and make bugs in the process hard to resolve.

These skills are designed to be small, easy to adapt, and composable. They work with any model. They're based on decades of engineering experience. Hack around with them. Make them your own. Enjoy.

If you want to keep up with changes to these skills, and any new ones I create, you can join ~60,000 other devs on my newsletter:

Sign Up To The Newsletter

Installation (30-second setup)

Two ways in, two philosophies. The Claude Code plugin installs the whole set as a managed, read-only bundle that updates when I ship — you subscribe rather than fork. skills.sh copies editable skill files into your project, so you can hack on them and make them your own. Pick one — installing both leaves you with every skill twice.

1. Get the skills

claude plugins install mattpocock-skills

Or, from inside a session:

/plugin install mattpocock-skills

It's in Claude Code's official marketplace, so there's nothing to add first, and updates arrive automatically.

npx skills@latest add mattpocock/skills

Pick the skills you want, and which coding agents to install them on. The installer lets you choose which skills to take — make sure setup-matt-pocock-skills is one of them.

A native Codex plugin is on the roadmap — see .agents/adr/0002-ship-as-a-claude-code-plugin.md.

Use the same installer, on any agent — including Claude Code:

npx skills@latest add mattpocock/skills

It writes the skills into your repo as ordinary files you own and can edit. Nothing updates behind your back; pull my latest changes when you want them with npx skills update.

2. Run /setup-matt-pocock-skills

In your agent, run it once per repo. It will:

  • Ask you which issue tracker you want to use (GitHub, Linear, or local files)
  • Ask you what labels you apply to tickets when you triage them (/triage uses labels)
  • Ask you where you want to save any docs we create

3. Bam - you're ready to go.

Why These Skills Exist

I built these skills as a way to fix common failure modes I see with Claude Code, Codex, and other coding agents.

#1: The Agent Didn't Do What I Want

"No-one knows exactly what they want"

David Thomas & Andrew Hunt, The Pragmatic Programmer

The Problem. The most common failure mode in software development is misalignment. You think the dev knows what you want. Then you see what they've built - and you realize it didn't understand you at all.

This is just the same in the AI age. There is a communication gap between you and the agent. The fix for this is a grilling session - getting the agent to ask you detailed questions about what you're building.

The Fix is to use:

These are my most popular skills. They help you align with the agent before you get started, and think deeply about the change you're making. Use them every time you want to make a change.

#2: The Agent Is Way Too Verbose

With a ubiquitous language, conversations among developers and expressions of the code are all derived from the same domain model.

Eric Evans, Domain-Driven-Design

The Problem: At the start of a project, devs and the people they're building the software for (the domain experts) are usually speaking different languages.

I felt the same tension with my agents. Agents are usually dropped into a project and asked to figure out the jargon as they go. So they use 20 words where 1 will do.

The Fix for this is a shared language. It's a document that helps agents decode the jargon used in the project.

Here's an example CONTEXT.md, from my course-video-manager repo. Which one is easier to read?

  • BEFORE: "There's a problem when a lesson inside a section of a course is made 'real' (i.e. given a spot in the file system)"
  • AFTER: "There's a problem with the materialization cascade"

This concision pays off session after session.

This is built into /grill-with-docs. It's a grilling session, but that helps you build a shared language with the AI, and document hard-to-explain decisions in ADR's.

It's hard to explain how powerful this is. It might be the single coolest technique in this repo. Try it, and see.

[!TIP] A shared language has many other benefits than reducing verbosity:

  • Variables, functions and files are named consistently, using the shared language
  • As a result, the codebase is easier to navigate for the agent
  • The agent also spends fewer tokens on thinking, because it has access to a more concise language

#3: The Code Doesn't Work

"Always take small, deliberate steps. The rate of feedback is your speed limit. Never take on a task that’s too big."

David Thomas & Andrew Hunt, The Pragmatic Programmer

The Problem: Let's say that you and the agent are aligned on what to build. What happens when the agent still produces crap?

It's time to look at your feedback loops. Without feedback on how the code it produces actually runs, the agent will be flying blind.

The Fix: You need the usual tranche of feedback loops: static types, browser access, and automated tests.

For automated tests, a red-green-refactor loop is critical. This is where the agent writes a failing test first, then fixes the test. This helps give the agent a consistent level of feedback that results in far better code.

I've built a /tdd skill you can slot into any project. It encourages red-green-refactor and gives the agent plenty of guidance on what makes good and bad tests.

For debugging, I've also built a /diagnosing-bugs skill that wraps best debugging practices into a disciplined loop, gated phase by phase.

#4: We Built A Ball Of Mud

"Invest in the design of the system every day."

Kent Beck, Extreme Programming Explained

"The best modules are deep. They allow a lot of functionality to be accessed through a simple interface."

John Ousterhout, A Philosophy Of Software Design

The Problem: Most apps built with agents are complex and hard to change. Because agents can radically speed up coding, they also accelerate software entropy. Codebases get more complex at an unprecedented rate.

The Fix for this is a radical new approach to AI-powered development: caring about the design of the code.

This is built in to every layer of these skills:

  • /to-spec quizzes you about which modules you're touching before creating a spec

And crucially, /improve-codebase-architecture surveys a codebase for deepening opportunities and hands you the candidates. I recommend running it on your codebase once every few days. It is a survey, not a rescue: on a genuinely old codebase it will find real candidates, but it won't untangle the mud for you.

Summary

Software engineering fundamentals matter more than ever. These skills are my best effort at condensing these fundamentals into repeatable practices, to help you ship the best apps of your career. Enjoy.

Reference

These split on one axis — who can invoke them. User-invoked skills are reachable only when you type them (e.g. /grill-me); their job is to orchestrate. Model-invoked skills can be invoked by you or reached for automatically by the agent when the task fits; they hold the reusable discipline. A user-invoked skill may invoke model-invoked skills, but never another user-invoked one.

Engineering

Skills I use daily for code work.

User-invoked

  • ask-matt — Ask which skill or flow fits your situation. A router over the user-invoked skills in this repo.
  • grill-with-docs — Grilling session that also builds your project's domain model, sharpening terminology and updating CONTEXT.md and ADRs inline.
  • triage — Move issues through a state machine of triage roles.
  • improve-codebase-architecture — Scan a codebase for deepening opportunities, present them as a visual HTML report, then grill through whichever one you pick.
  • setup-matt-pocock-skills — Configure this repo for the engineering skills (issue tracker, triage labels, domain doc layout). Run once per repo before using the other engineering skills.
  • to-spec — Turn the current conversation into a spec and publish it to the issue tracker. No interview — just synthesizes what you've already discussed.
  • to-tickets — Break any plan, spec, or conversation into a set of tracer-bullet tickets, each declaring its blocking edges — written as text in a local file, or as native blocking links on a real tracker.
  • implement — Build the work described by a spec or set of tickets, driving /tdd at pre-agreed seams and closing out with /code-review before committing.
  • wayfinder — Plan a huge chunk of work, more than one agent session can hold, as a shared map of decision tickets on the issue tracker — resolve them one at a time until the way to the destination is clear.

Model-invoked

  • prototype — Build a throwaway prototype to answer a design question — a single shareable HTML file for state/logic questions, or several radically different UI variations toggleable from one route.
  • diagnosing-bugs — Disciplined diagnosis loop for hard bugs and performance regressions: build a feedback loop that goes red on this bug → minimise → hypothesise → instrument → fix → regression-test.
  • research — Investigate a question against high-trust primary sources and capture the findings as a cited Markdown file in the repo, run as a background agent.
  • tdd — Test-driven development with a red-green-refactor loop. Builds features or fixes bugs one vertical slice at a time.
  • domain-modeling — Actively build and sharpen a project's domain model — challenge terms against the glossary, stress-test with edge-case scenarios, and update CONTEXT.md and ADRs inline.
  • codebase-design — Shared discipline and vocabulary for designing deep modules: a lot of behaviour behind a small interface, placed at a clean seam, testable through that interface.
  • code-review — Two-axis review of the diff since a fixed point: Standards (does it follow the repo's coding standards, plus a Fowler smell baseline?) and Spec (does it faithfully implement the originating issue/spec?), run as parallel sub-agents so neither pollutes the other.
  • resolving-merge-conflicts — Work through an in-progress git merge or rebase conflict hunk by hunk, resolving by intent traced to each side's primary source, then finish the operation — never --abort.
  • wizard — Generate an interactive bash wizard that walks a human through steps only they can perform: provisioning infrastructure, setting up credentials or CI secrets, walking an unfamiliar third-party dashboard, or running a one-off migration or cutover.

Productivity

General workflow tools, not code-specific.

User-invoked

  • grill-me — Get relentlessly interviewed about a plan or design until every branch of the design tree is resolved.
  • handoff — Compact the current conversation into a handoff document so another agent can continue the work.
  • teach — Teach the user a new skill or concept over multiple sessions, using the current directory as a stateful teaching workspace.
  • to-questionnaire — Turn a decision you can't answer alone into a Markdown questionnaire for the one person who can — filled in async, or together over a meeting. It grills you about the send (who it's for, what you need back), not the subject.
  • wait-what — Fire this the moment a message doesn't land. The agent re-pitches it with the context you're missing, in plain English, using your CONTEXT.md vocabulary.

Model-invoked

  • grilling — Interview the user relentlessly about a plan, decision, or idea until every branch of the design tree is resolved. The reusable interview primitive behind grill-me, grill-with-docs, triage, wayfinder and improve-codebase-architecture.
  • writing-for-agents — Writing documents for agents: skills, AGENTS.md/CLAUDE.md, and any doc an agent reaches by a pointer.

41 skills in this repo

Plugin marketplace
Ask Matt Productivity

Ask which skill or flow fits your situation. A router over the skills in this repo.

Install
/plugin marketplace add mattpocock/skills
/plugin install ask-matt
Batch Grill Me Code Review & Testing

A relentless interview that asks every frontier question at once, round by round.

Install
/plugin marketplace add mattpocock/skills
/plugin install batch-grill-me
Claude Handoff Productivity

Hand the current conversation off to a fresh background agent that picks up the work immediately.

Install
/plugin marketplace add mattpocock/skills
/plugin install claude-handoff

Shared vocabulary for designing deep modules. Use when the user wants to design or improve a module's interface, find deepening opportunities, decide where a seam goes, make code more testable or AI-navigable, or when another skill needs th...

Install
/plugin marketplace add mattpocock/skills
/plugin install codebase-design
Code Review Legal

Review the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (does the code follow this repo's documented coding standards?) and Spec (does the code match what the originating issue/PRD asked for?)....

Install
/plugin marketplace add mattpocock/skills
/plugin install code-review

Generate multiple radically different interface designs for a module using parallel sub-agents. Use when user wants to design an API, explore interface options, compare module shapes, or mentions "design it twice".

Install
/plugin marketplace add mattpocock/skills
/plugin install design-an-interface

Diagnosis loop for hard bugs and performance regressions. Use when the user says "diagnose"/"debug this", or reports something broken/throwing/failing/slow.

Install
/plugin marketplace add mattpocock/skills
/plugin install diagnosing-bugs

Build and sharpen a project's domain model. Use when the user wants to pin down domain terminology or a ubiquitous language, record an architectural decision, or when another skill needs to maintain the domain model.

Install
/plugin marketplace add mattpocock/skills
/plugin install domain-modeling
Edit Article Writing & Editing

Edit and improve articles by restructuring sections, improving clarity, and tightening prose. Use when user wants to edit, revise, or improve an article draft.

Install
/plugin marketplace add mattpocock/skills
/plugin install edit-article
Git Guardrails Claude Code DevOps & Infrastructure

Set up Claude Code hooks to block dangerous git commands (push, reset --hard, clean, branch -D, etc.) before they execute. Use when user wants to prevent destructive git operations, add git safety hooks, or block git push/reset in Claude Co...

Install
/plugin marketplace add mattpocock/skills
/plugin install git-guardrails-claude-code
Grilling Productivity

Grill the user relentlessly about a plan, decision, or idea. Use when the user wants to stress-test their thinking, or uses any 'grill' trigger phrases.

Install
/plugin marketplace add mattpocock/skills
/plugin install grilling
Grill Me Productivity

A relentless interview to sharpen a plan or design.

Install
/plugin marketplace add mattpocock/skills
/plugin install grill-me
Grill With Docs Code Review & Testing

A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

Install
/plugin marketplace add mattpocock/skills
/plugin install grill-with-docs
Handoff Documents & Spreadsheets

Compact the current conversation into a handoff document for another agent to pick up.

Install
/plugin marketplace add mattpocock/skills
/plugin install handoff
Implement Support

Implement a piece of work based on a spec or set of tickets.

Install
/plugin marketplace add mattpocock/skills
/plugin install implement

Scan a codebase for deepening opportunities, present them as a visual HTML report, then grill through whichever one you pick.

Install
/plugin marketplace add mattpocock/skills
/plugin install improve-codebase-architecture
Loop Me Productivity

Grill me about specs for the workflows I want to build, within this workspace.

Install
/plugin marketplace add mattpocock/skills
/plugin install loop-me
Migrate To Shoehorn Code Review & Testing

Migrate test files from `as` type assertions to @total-typescript/shoehorn. Use when user mentions shoehorn, wants to replace `as` in tests, or needs partial test data.

Install
/plugin marketplace add mattpocock/skills
/plugin install migrate-to-shoehorn
Obsidian Vault Productivity

Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.

Install
/plugin marketplace add mattpocock/skills
/plugin install obsidian-vault
Prototype Design

Build a throwaway prototype to answer a design question. Use when the user wants to sanity-check whether a state model or logic feels right, or explore what a UI should look like.

Install
/plugin marketplace add mattpocock/skills
/plugin install prototype
Qa Coding

Interactive QA session where user reports bugs or issues conversationally, and the agent files GitHub issues. Explores the codebase in the background for context and domain language. Use when user wants to report bugs, do QA, file issues co...

Install
/plugin marketplace add mattpocock/skills
/plugin install qa

Create a detailed refactor plan with tiny commits via user interview, then file it as a GitHub issue. Use when user wants to plan a refactor, create a refactoring RFC, or break a refactor into safe incremental steps.

Install
/plugin marketplace add mattpocock/skills
/plugin install request-refactor-plan
Research Research

Investigate a question against high-trust primary sources and capture the findings as a Markdown file in the repo. Use when the user wants a topic researched, docs or API facts gathered, or reading legwork delegated to a background agent.

Install
/plugin marketplace add mattpocock/skills
/plugin install research
Resolving Merge Conflicts Code Review & Testing

Use when you need to resolve an in-progress git merge/rebase conflict.

Install
/plugin marketplace add mattpocock/skills
/plugin install resolving-merge-conflicts
Scaffold Exercises Code Review & Testing

Create exercise directory structures with sections, problems, solutions, and explainers that pass linting. Use when user wants to scaffold exercises, create exercise stubs, or set up a new course section.

Install
/plugin marketplace add mattpocock/skills
/plugin install scaffold-exercises
Setup Matt Pocock Skills DevOps & Infrastructure

Configure this repo for the engineering skills — set up its issue tracker, triage label vocabulary, and domain doc layout. Run once before first use of the other engineering skills.

Install
/plugin marketplace add mattpocock/skills
/plugin install setup-matt-pocock-skills
Setup Pre Commit DevOps & Infrastructure

Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.

Install
/plugin marketplace add mattpocock/skills
/plugin install setup-pre-commit
Setup TS Deep Modules DevOps & Infrastructure

Wire dependency-cruiser into a TypeScript repo so each package is a deep module — implementation hidden in subfolders, reachable only through its entry-point files. User-invoked.

Install
/plugin marketplace add mattpocock/skills
/plugin install setup-ts-deep-modules
Tdd Coding

Test-driven development. Use when the user wants to build features or fix bugs test-first, mentions "red-green-refactor", or wants integration tests.

Install
/plugin marketplace add mattpocock/skills
/plugin install tdd
Teach Productivity

Teach the user a new skill or concept, within this workspace.

Install
/plugin marketplace add mattpocock/skills
/plugin install teach
To Questionnaire Productivity

Turn a decision you can't fully answer into a questionnaire for someone else to fill in.

Install
/plugin marketplace add mattpocock/skills
/plugin install to-questionnaire
To Spec Documents & Spreadsheets

Turn the current conversation into a spec and publish it to the project issue tracker — no interview, just synthesis of what you've already discussed.

Install
/plugin marketplace add mattpocock/skills
/plugin install to-spec
To Tickets Support

Break a plan, spec, or the current conversation into a set of tracer-bullet tickets, each declaring its blocking edges, published to the configured tracker — edges as text in one file per ticket locally, or native blocking links on a real t...

Install
/plugin marketplace add mattpocock/skills
/plugin install to-tickets
Triage Code Review & Testing

Move issues and external PRs through a state machine of triage roles — categorise, verify, grill if needed, and write agent-ready briefs.

Install
/plugin marketplace add mattpocock/skills
/plugin install triage

Extract a DDD-style ubiquitous language glossary from the current conversation, flagging ambiguities and proposing canonical terms. Saves to UBIQUITOUS_LANGUAGE.md. Use when user wants to define domain terms, build a glossary, harden termin...

Install
/plugin marketplace add mattpocock/skills
/plugin install ubiquitous-language
Wayfinder Support

Plan a huge chunk of work — more than one agent session can hold — as a shared map of decision tickets on your issue tracker, and resolve them one at a time until the way to the destination is clear.

Install
/plugin marketplace add mattpocock/skills
/plugin install wayfinder
Wizard DevOps & Infrastructure

Generate an interactive bash wizard that walks a human through a manual procedure — third-party setup, a one-off migration, an A→B state transition — opening URLs, capturing values, confirming each step, and writing .env files and GitHub Ac...

Install
/plugin marketplace add mattpocock/skills
/plugin install wizard
Writing Beats Writing & Editing

Writing, exploit — assemble raw material into a journey of beats, grounding each term before a beat leans on it.

Install
/plugin marketplace add mattpocock/skills
/plugin install writing-beats
Writing Fragments Writing & Editing

Writing, explore — mine raw fragments, no structure yet.

Install
/plugin marketplace add mattpocock/skills
/plugin install writing-fragments
Writing Great Skills Writing & Editing

Reference for writing and editing skills well — the vocabulary and principles that make a skill predictable.

Install
/plugin marketplace add mattpocock/skills
/plugin install writing-great-skills
Writing Shape Writing & Editing

Writing, exploit — shape raw material into an article, paragraph by paragraph.

Install
/plugin marketplace add mattpocock/skills
/plugin install writing-shape

Comments (0)

Sign in to join the discussion.

No comments yet

Be the first to share your take.