From tdd
Guides test-driven development with the red-green-refactor loop, defining good test characteristics, seams, anti-patterns, and loop rules for vertical-slice workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tdd: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.3plugins reuse this skill
First indexed Jul 3, 2026
npx claudepluginhub filippolmt/skills --plugin tddGuides test-driven development with the red-green-refactor loop, defining good test characteristics, seams, anti-patterns, and loop rules for vertical-slice workflows.
Guides test-driven development with red-green-refactor loop, emphasizing vertical slicing and behavior-focused integration tests. Use when building features or fixing bugs test-first.
Guides test-driven development with vertical slicing: one test at a time, followed by implementation. Covers integration-style testing philosophy, mocking, and avoiding horizontal slice anti-patterns.