What problem does it solve? Code written before tests often ships untested or with tests that pass immediately and prove nothing. This Skill enforces strict test-driven development so every feature and bugfix starts with a failing test that verifies the intended behavior. ## Core Features & Use Cases - Red-Green-Refactor Enforcement: Guides the full cycle of writing a failing test, verifying it fails for the right reason, writing minimal code to pass, and refactoring while staying green. - Rationalization Detection: Lists common excuses for skipping TDD ("too simple to test", "I'll test after") with concrete rebuttals, plus red flags that trigger a restart. - 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 empty emails are accepted, write a failing test asserting the rejection error, watch it fail, implement the minimal validation, and confirm all tests pass. ## Quick Start Ask the assistant to implement a new feature or bugfix using strict test-driven development with a failing test written first.