What problem does it solve? Writing tests after implementation often produces brittle, implementation-coupled tests that break on every refactor and fail to verify real behavior. This Skill enforces a disciplined red-green TDD loop so tests verify behavior through public interfaces and survive refactors. ## Core Features & Use Cases - Red-Green Loop Discipline: Enforces writing a failing test first, then only enough code to pass it, one vertical slice at a time. - Seam-Based Test Design: Requires agreeing on public interface seams with the user before any test is written, focusing effort on critical paths. - Anti-Pattern Detection: Identifies implementation-coupled, tautological, and horizontally-sliced tests with concrete good/bad examples in tests.md and mocking guidance in mocking.md. - Use Case: When building a checkout feature, ask the assistant to work test-first: it will confirm the seams (cart, payment interface), write one failing behavior test, implement the minimal code to pass, and repeat per slice. ## Quick Start Ask the assistant to build the next feature or fix the bug using test-driven development with the red-green loop.