From superpowers-ccg
Guides the red-green-refactor TDD cycle: write failing tests first, then minimal code to pass. Use when implementing features, fixing bugs, or refactoring.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers-ccg:practicing-test-driven-developmentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Write the test first. Watch it fail. Write minimal code to pass.
Core principle: If you didn't watch the test fail, you don't know if it tests the right thing.
Violating the letter of the rules is violating the spirit of the rules.
Follow the [CP Protocol Threshold] injected by hooks:
If unmet -> immediately perform the CP assessment, then continue the flow right away; do not stop or interrupt.
Always:
Exceptions (ask your human partner):
Thinking "skip TDD just this once"? Stop. That's rationalization.
NO PRODUCTION CODE WITHOUT A FAILING TEST FIRST
Write code before the test? Delete it. Start over.
No exceptions:
Implement fresh from tests. Period.
digraph tdd_cycle {
rankdir=LR;
red [label="RED\nWrite failing test", shape=box, style=filled, fillcolor="#ffcccc"];
verify_red [label="Verify fails\ncorrectly", shape=diamond];
green [label="GREEN\nMinimal code", shape=box, style=filled, fillcolor="#ccffcc"];
verify_green [label="Verify passes\nAll green", shape=diamond];
refactor [label="REFACTOR\nClean up", shape=box, style=filled, fillcolor="#ccccff"];
next [label="Next", shape=ellipse];
red -> verify_red;
verify_red -> green [label="yes"];
verify_red -> red [label="wrong\nfailure"];
green -> verify_green;
verify_green -> refactor [label="yes"];
verify_green -> green [label="no"];
refactor -> verify_green [label="stay\ngreen"];
verify_green -> next;
next -> red;
}
Write one minimal test showing what should happen.
Hard reminder: before your first Task tool call, you must output a standalone 【CP1 Assessment】 block (fixed format with fields).
► Checkpoint 1 (Task Analysis): Before writing test, apply checkpoint logic from coordinating-multi-model-work/checkpoints.md:
✅ Good example:
test("retries failed operations 3 times", async () => {
let attempts = 0;
const operation = () => {
attempts++;
if (attempts < 3) throw new Error("fail");
return "success";
};
const result = await retryOperation(operation);
expect(result).toBe("success");
expect(attempts).toBe(3);
});
Clear name, tests real behavior, one thing
❌ Bad example:
test("retry works", async () => {
const mock = jest
.fn()
.mockRejectedValueOnce(new Error())
.mockRejectedValueOnce(new Error())
.mockResolvedValueOnce("success");
await retryOperation(mock);
expect(mock).toHaveBeenCalledTimes(3);
});
Vague name, tests mock not code
Requirements:
MANDATORY. Never skip.
npm test path/to/test.test.ts
Confirm:
Test passes? You're testing existing behavior. Fix test.
Test errors? Fix error, re-run until it fails correctly.
Write simplest code to pass the test.
► Checkpoint 3 (Quality Gate): After implementation passes, apply checkpoint logic from coordinating-multi-model-work/checkpoints.md:
✅ Good example:
async function retryOperation<T>(fn: () => Promise<T>): Promise<T> {
for (let i = 0; i < 3; i++) {
try {
return await fn();
} catch (e) {
if (i === 2) throw e;
}
}
throw new Error("unreachable");
}
Just enough to pass
❌ Bad example:
async function retryOperation<T>(
fn: () => Promise<T>,
options?: {
maxRetries?: number;
backoff?: "linear" | "exponential";
onRetry?: (attempt: number) => void;
},
): Promise<T> {
// YAGNI
}
Over-engineered
Don't add features, refactor other code, or "improve" beyond the test.
MANDATORY.
Hard reminder: before claiming completion or verification passed, you must output a standalone 【CP3 Assessment】 block (fixed format with fields).
npm test path/to/test.test.ts
Confirm:
Test fails? Fix code, not test.
Other tests fail? Fix now.
After green only:
Keep tests green. Don't add behavior.
Next failing test for next feature.
| Quality | Good | Bad |
|---|---|---|
| Minimal | One thing. "and" in name? Split it. | test('validates email and domain and whitespace') |
| Clear | Name describes behavior | test('test1') |
| Shows intent | Demonstrates desired API | Obscures what code should do |
All of these mean: Delete code. Start over with TDD.
Bug: Empty email accepted
RED
test("rejects empty email", async () => {
const result = await submitForm({ email: "" });
expect(result.error).toBe("Email required");
});
Verify RED
$ npm test
FAIL: expected 'Email required', got undefined
GREEN
function submitForm(data: FormData) {
if (!data.email?.trim()) {
return { error: "Email required" };
}
// ...
}
Verify GREEN
$ npm test
PASS
REFACTOR Extract validation for multiple fields if needed.
Before marking work complete:
Can't check all boxes? You skipped TDD. Start over.
| Problem | Solution |
|---|---|
| Don't know how to test | Write wished-for API. Write assertion first. Ask your human partner. |
| Test too complicated | Design too complicated. Simplify interface. |
| Must mock everything | Code too coupled. Use dependency injection. |
| Test setup huge | Extract helpers. Still complex? Simplify design. |
Bug found? Write failing test reproducing it. Follow TDD cycle. Test proves fix and prevents regression.
Never fix bugs without a test.
When adding mocks or test utilities, read @testing-anti-patterns.md to avoid common pitfalls:
Related skill: superpowers:coordinating-multi-model-work
At checkpoints, apply semantic routing using coordinating-multi-model-work/routing-decision.md:
mcp__gemini__gemini)mcp__codex__codex)Full checkpoint logic: See coordinating-multi-model-work/checkpoints.md
See coordinating-multi-model-work/INTEGRATION.md for invocation templates.
CRITICAL: Generated tests must still follow TDD cycle - run them to confirm they fail (RED) before implementing.
Fallback (Fail-Closed): If external models are unavailable or time out, STOP and follow coordinating-multi-model-work/GATE.md (do not proceed with generated tests).
Production code → test exists and failed first
Otherwise → not TDD
No exceptions without your human partner's permission.
npx claudepluginhub bryanhoo/superpowers-ccg --plugin superpowers-ccgGuides test-driven development: write a failing test first, then minimal code to pass, then refactor. Use before implementing any feature or bugfix to ensure correct behavior.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Enforces strict Test-Driven Development (TDD): write failing test first for features, bug fixes, refactors before any production code.