tdd
Installation
SKILL.md
TDD
Use this skill to shape code through a test-first workflow instead of designing the full implementation up front.
Intent Router
| Need | Load |
|---|---|
| red-green-refactor workflow, seam design, test quality heuristics, and anti-patterns | references/tdd-guide.md |
| language and framework examples for python, typescript, javascript, c, c++, c#, and rust | references/language-examples.md |
Quick Start
- Start from one observable behavior, not an internal helper.
- Write the smallest failing test that names the next capability.
- Make the test pass with the simplest implementation that preserves intent.
- Refactor only while the test suite stays green.
- Keep the cycle small enough that each failure explains one design decision.