What problem does it solve? Code written before tests often ships untested or with tests that pass immediately and prove nothing. This Skill enforces a strict test-first discipline so every behavior change is verified by a failing test before implementation begins. ## Core Features & Use Cases - Red-Green-Refactor Enforcement: Guides the full TDD cycle with mandatory verification that each test fails for the right reason before writing minimal passing code. - Rationalization Detection: Lists common excuses for skipping TDD and the red flags that mean code should be deleted and restarted test-first. - Test Quality Rules: A companion reference defines how to write honest tests that name the break they catch, assert real behavior instead of mocks, and pass a mutation check. - Use Case: When fixing a bug where an empty email is accepted, write a failing test asserting the rejection, watch it fail, implement the minimal validation, and confirm all tests pass. ## Quick Start Use the test-driven-development skill to implement this feature by writing a failing test first, then the minimal code to make it pass.