tdd
Installation
SKILL.md
Test-Driven Development (TDD) Skill
Core Principle
Write the test first, then make it pass, then refactor.
TDD is a discipline where you:
- Write a failing test
- Write minimal code to make it pass
- Refactor while keeping tests green
This creates well-tested, well-designed code by default.