tdd
Installation
SKILL.md
Methodology from obra/superpowers (MIT)
Test-Driven Development (TDD)
Iron law: no production code without a preceding failing test.
The RED-GREEN-REFACTOR Cycle
RED -- Write a Failing Test
- Identify the next smallest behavior to implement.
- Write a test that asserts that behavior.
- Run the test suite. Confirm the new test fails for the right reason.
- If it passes already, your test is not testing new behavior -- rewrite it.