What problem does it solve? It prevents untested production code by enforcing a strict test-first discipline, eliminating the false confidence of tests written after implementation that pass immediately and prove nothing. ## Core Features & Use Cases - Red-Green-Refactor Cycle: Guides writing a failing test, verifying it fails for the right reason, writing minimal code to pass, then refactoring while staying green. - Anti-Rationalization Rules: Counters common excuses like "I'll test after" or "deleting code is wasteful" with concrete rebuttals and red-flag checklists. - Testing Anti-Patterns Reference: Covers testing mock behavior, test-only methods in production classes, incomplete mocks, and mocking without understanding dependencies. - Use Case: When fixing a bug where empty emails are accepted, write a failing test asserting the rejection error first, watch it fail, then implement the minimal validation to make it 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.