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 strict test-driven development so every behavior is verified by a test that was watched failing before implementation. ## Core Features & Use Cases - Red-Green-Refactor Enforcement: Mandates writing one failing test, verifying the failure, writing minimal code to pass, then refactoring with tests green. - Rationalization Detection: Lists common excuses for skipping TDD and red flags that trigger deleting code and restarting with tests first. - Subagent Integration: Shows how to enforce TDD when dispatching implementation work via delegate_task and pairing with systematic debugging for bug fixes. - Use Case: When fixing a bug, write a failing test that reproduces it, watch it fail, implement the minimal fix, and confirm the full suite passes to prevent regressions. ## Quick Start Ask the agent to implement a new feature using strict TDD with the red-green-refactor cycle, running pytest to verify each test fails before writing code.