What problem does it solve? Developers often write production code before tests, producing tests that pass immediately and prove nothing about correctness. This Skill enforces a strict test-driven development cycle so every behavior change is verified by a failing test first, catching regressions and design flaws early. ## Core Features & Use Cases - Red-Green-Refactor Enforcement: Guides writing one minimal failing test, verifying it fails for the right reason, implementing minimal code, and refactoring while staying green. - Rationalization Countermeasures: Provides explicit rebuttals to common excuses like "I'll test after" or "too simple to test", plus red flags that signal restarting with TDD. - Testing Anti-Pattern Reference: Details how to avoid testing mock behavior, adding test-only methods to production classes, incomplete mocks, and mocking without understanding dependencies. - Use Case: When fixing a bug where an empty email is accepted, write a failing test asserting the rejection error, watch it fail, implement the validation, and confirm all tests pass before refactoring. ## Quick Start Ask the AI to implement your next feature or bugfix using strict test-driven development with a failing test written and verified first.