test-driven-execution
Installation
SKILL.md
Test Driven Execution
Use tests as the feedback loop that shapes the implementation one vertical slice at a time.
Core Rules
- Test behavior through public interfaces.
- Prefer integration-style tests over implementation-coupled tests.
- Work in vertical slices, not horizontal batches.
- One failing test -> one minimal implementation -> repeat.
- Refactor only while green.