What problem does it solve? Writing tests after implementation often produces brittle, implementation-coupled tests that break during refactors and fail to verify real behavior. This Skill enforces a disciplined test-first workflow so tests act as durable specifications of behavior. ## Core Features & Use Cases - Red-Green Loop Discipline: Enforces writing a failing test before any implementation, one vertical slice at a time, with no speculative features. - Seam-Based Test Placement: Defines tests only at pre-agreed public interface boundaries, confirmed with the user before any test is written. - Anti-Pattern Detection: Identifies implementation-coupled, tautological, and horizontally-sliced tests, with mocking guidelines restricted to system boundaries like external APIs, time, and file systems. - Use Case: When adding a checkout feature, write one failing test through the public checkout interface, implement the minimal code to pass it, then repeat for the next behavior. ## Quick Start Ask the AI to build a new feature using test-driven development with the red-green-refactor loop, starting by agreeing on the seams to test.