TDD Guide The agent guides red-green-refactor TDD workflows, generates framework-specific test stubs from requirements, parses coverage reports to identify prioritized gaps, and calculates test quality metrics including smell detection and assertion density. Supports Jest, Pytest, JUnit, Vitest, and Mocha. Quick Start --- Core Workflows Workflow 1: TDD a New Feature 1. Write a failing test for the feature requirement (RED phase) 2. Call -- confirms test exists and fails 3. Write minimal code to make the test pass (GREEN phase) 4. Call -- confirms all tests pass 5. Refactor while keeping tests…