From mattpocock-skills
Guides test-driven development with red-green-refactor loop, test quality standards, seam identification, and anti-pattern avoidance. Useful when building features or fixing bugs test-first.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mattpocock-skills:tddThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
TDD is the red → green loop. This skill is the reference that makes that loop produce tests worth keeping: what a good test is, where tests go, the anti-patterns, and the rules of the loop. Every section applies on every cycle — consult them before and during the loop, not after.
TDD is the red → green loop. This skill is the reference that makes that loop produce tests worth keeping: what a good test is, where tests go, the anti-patterns, and the rules of the loop. Every section applies on every cycle — consult them before and during the loop, not after.
When exploring the codebase, read CONTEXT.md (if it exists) so test names and interface vocabulary match the project's domain language, and respect ADRs in the area you're touching.
Tests verify behavior through public interfaces, not implementation details. Code can change entirely; tests shouldn't. A good test reads like a specification — "user can checkout with valid cart" tells you exactly what capability exists — and survives refactors because it doesn't care about internal structure.
See tests.md for examples and mocking.md for mocking guidelines.
A seam is the public boundary you test at: the interface where you observe behavior without reaching inside. Tests live at seams, never against internals.
Test only at pre-agreed seams. Before writing any test, write down the seams under test and confirm them with the user. No test is written at an unconfirmed seam. You can't test everything — agreeing the seams up front is how testing effort lands on the critical paths and complex logic instead of every edge case.
Ask: "What's the public interface, and which seams should we test?"
expect(add(a, b)).toBe(a + b), a snapshot derived by hand the same way, a constant asserted equal to itself), so it passes by construction and can never disagree with the code. Expected values must come from an independent source of truth — a known-good literal, a worked example, the spec.code-review skill), not the red → green implementation cycle.npx claudepluginhub haroldhuanrongliu/mattpocock-skills34plugins reuse this skill
First indexed Jul 13, 2026
Showing the 6 earliest of 34 plugins
Guides test-driven development with red-green-refactor loop, test quality standards, seam identification, and anti-pattern avoidance. Useful when building features or fixing bugs test-first.
Implements test-driven development: write one test, implement, repeat across vertical slices. Covers good test characteristics, seams, and anti-patterns.
Guides test-driven development with a red-green-refactor loop, vertical slicing (one test at a time), and integration-style tests that verify behavior through public interfaces.