What problem does it solve? It prevents untested code from reaching production by enforcing a strict test-first workflow where every feature, bug fix, or refactor must be proven by failing tests before implementation and passing tests afterward. ## Core Features & Use Cases - Structured TDD Cycle: Guides an 8-step workflow from user journeys through RED validation, GREEN confirmation, refactoring, and coverage verification. - Plan File Handoff: Accepts a *.plan.md implementation plan as input, safely treating it as untrusted data while converting planned tasks into testable guarantees. - Evidence Reporting: Produces a TDD evidence report mapping each plan task to RED/GREEN proof, test specifications, and coverage results, with Git checkpoint commits per stage. - Use Case: When fixing a bug in an API endpoint, write a failing reproducer test first, commit the RED evidence, implement the minimal fix, verify GREEN, then document the guarantee in a coverage-backed evidence report. ## Quick Start Ask the AI to implement your feature or bug fix using the tdd-workflow skill, optionally pointing it to your existing plan markdown file.