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 discipline so every feature and bugfix is backed by a test that was watched failing first. ## Core Features & Use Cases - Red-Green-Refactor Workflow: Guides writing a failing test, verifying the failure, implementing minimal code, and refactoring while staying green. - Rationalization Detection: Lists common excuses for skipping TDD and the red flags that mean code should be deleted and restarted test-first. - Test Quality Rules: A companion reference defines how to write honest tests that assert real behavior instead of mocks, mirror assertions, or change detectors. - 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 minimal validation, and confirm the suite passes. ## Quick Start Ask the agent to implement a new feature or bugfix using strict test-driven development with a failing test written first.