What problem does it solve? It prevents untested production code by enforcing a strict test-first workflow, eliminating rationalizations that lead to writing implementation before tests and shipping unverified behavior. ## Core Features & Use Cases - Red-Green-Refactor Cycle: Guides writing a failing test, verifying the failure, implementing minimal code, and refactoring while keeping tests green. - Anti-Rationalization Rules: Counters common excuses like "I'll test after" or "deleting code is wasteful" with concrete counterarguments and red flags. - Testing Anti-Patterns Reference: Covers testing mock behavior, test-only production methods, 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, 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.