tdd
Installation
SKILL.md
TDD Workflow
Implement using strict Test-Driven Development.
Process
1. RED - Write Failing Test First
- Write ONE test that describes expected behavior
- Run test - confirm it FAILS for the right reason
- Show test to user before proceeding
2. GREEN - Minimum Code to Pass
- Write the MINIMUM code to make test pass
- No extra features, no optimization
- Run test - confirm it PASSES