tdd
Installation
SKILL.md
/tdd - Test-Driven Development Workflow
Strict TDD workflow: tests first, then implementation.
When to Use
- "Implement X using TDD"
- "Build this feature test-first"
- "Write tests for X then implement"
- Any feature where test coverage is critical
- Bug fixes that need regression tests
TDD Philosophy
Overview
Write the test first. Watch it fail. Write minimal code to pass.