What problem does it solve? Developers often write code first and add tests afterward, which produces tests that pass immediately and prove nothing about correctness. This Skill enforces a strict test-first discipline so every piece of production code is backed by a test that was watched failing before implementation. ## Core Features & Use Cases - Red-Green-Refactor Enforcement: Guides the AI through writing one failing test, verifying the failure, writing minimal code to pass, and refactoring only while tests stay green. - Rationalization Detection: Lists common excuses ("too simple to test", "I'll test after") and red flags that trigger deleting code and restarting with TDD. - Subagent Integration: Shows how to dispatch implementation tasks via delegate_task with TDD requirements embedded, and how to run tests through the terminal tool. - Use Case: When fixing a bug, the Skill requires writing a failing test that reproduces the bug first, then implementing the fix, guaranteeing the test proves the fix and prevents regression. ## Quick Start Ask the agent to implement a new feature or bug fix using strict test-driven development with the red-green-refactor cycle.