What problem does it solve? Developers often skip writing tests or write them after the fact, leading to fragile code, regressions, and low confidence during refactoring. This Skill enforces a disciplined test-driven development workflow with concrete patterns and coverage requirements. ## Core Features & Use Cases - TDD Enforcement: Guides writing tests first for new features, bug fixes, refactoring, API endpoints, and components. - Ready-Made Test Patterns: Provides Jest/Vitest unit test examples, Next.js API integration test patterns, and E2E test file organization. - Coverage Verification: Defines 80% thresholds for branches, functions, lines, and statements, plus watch-mode and pre-commit testing workflows. - Use Case: When adding a new API endpoint to a Next.js app, use this Skill to write the integration test first, implement the route, and verify coverage meets the 80% threshold before committing. ## Quick Start Ask the AI to implement a new feature using the tdd-workflow skill so tests are written first and coverage stays above 80%.