| name | tdd-resolution |
|---|---|
| description | Fix an issue using a strict TDD workflow. Use when fixing a bug, resolving a failing test, or when asked to fix a problem using TDD. |
Fix the issue using a strict TDD workflow:
- Write a failing test that reproduces the problem — update an existing test if it already partially covers the feature, create a new one only when nothing relevant exists.
- Fix the implementation so the failing test passes.
- Run the full test suite to confirm all tests pass and no regressions were introduced.