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 piece of production code is backed by a test that was watched failing first. ## 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 ("too simple to test", "I'll test after") and red flags that signal TDD is being skipped, requiring a restart. - Vertical Tracer Bullets: Prevents horizontal slicing by requiring one end-to-end behavior slice per cycle instead of writing all tests then all implementation. - Use Case: When fixing a bug, write a failing test that reproduces it first, verify it fails, implement the minimal fix, and confirm the full suite passes without regressions. ## Quick Start Ask the agent to implement a new feature using strict TDD with pytest, writing and running a failing test before any production code.