What problem does it solve? Code written before tests often ships with unverified behavior, hidden bugs, and tests that pass immediately without proving they catch anything. This Skill enforces a strict test-first discipline so every feature and bugfix is backed by a test that was watched failing before implementation. ## Core Features & Use Cases - Red-Green-Refactor Cycle: Guides writing one minimal failing test, verifying it fails for the right reason, then writing the simplest code to pass. - Rationalization Detection: Lists common excuses for skipping TDD ("too simple to test", "I'll test after") and explains why each fails. - Test Quality Rules: A companion reference defines how to write honest tests that name the break they catch, avoid mock assertions, and derive expectations independently. - 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 the suite stays green. ## Quick Start Ask the AI to implement a new feature or bugfix using strict test-driven development with a failing test written first.