From bd453a6742fb8660bf618c298f1e2b80fb9f35e3 Mon Sep 17 00:00:00 2001 From: Matt Pocock Date: Fri, 3 Jul 2026 09:53:34 +0100 Subject: [PATCH] docs: fix tdd skill reference to code-review skill The tdd skill pointed at a `review` skill that no longer exists; the review skill is now named `code-review`. Update the reference. Fixes #432 Co-Authored-By: Claude Opus 4.8 (1M context) --- skills/engineering/tdd/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/engineering/tdd/SKILL.md b/skills/engineering/tdd/SKILL.md index 4e243fb..9a2e1d2 100644 --- a/skills/engineering/tdd/SKILL.md +++ b/skills/engineering/tdd/SKILL.md @@ -33,4 +33,4 @@ Ask: "What's the public interface, and which seams should we test?" - **Red before green.** Write the failing test first, then only enough code to pass it. Don't anticipate future tests or add speculative features. - **One slice at a time.** One seam, one test, one minimal implementation per cycle. -- **Refactoring is not part of the loop.** It belongs to the review stage (see the `review` skill), not the red → green implementation cycle. +- **Refactoring is not part of the loop.** It belongs to the review stage (see the `code-review` skill), not the red → green implementation cycle.