test-driven-development
Installation
SKILL.md
Test-Driven Development
The Cycle
Red
Write a test that describes the behavior you want. Run it. It should fail.
Green
Write the minimum code to make the test pass.
Refactor
Make the code good. Tests must still pass.