AC TDD Runner Automate the Test-Driven Development cycle for feature implementation. Purpose Enforces the RED-GREEN-REFACTOR cycle, ensuring all features are implemented with test-first methodology for quality and maintainability. Quick Start TDD Cycle RED Phase Write failing tests first: GREEN Phase Implement minimum code to pass: REFACTOR Phase Clean up while tests pass: Cycle Result RED Phase Details 1. Generate test file from feature test cases 2. Write test functions with proper structure 3. Run tests to verify they fail 4. If tests pass unexpectedly, add more specific assertions GREEN P…