What problem does it solve? Code written without tests first produces tests that pass on the first run and prove nothing, bug fixes ship without verified regression coverage, and test suites fill with change detectors and mock assertions that fail on refactors while sleeping through real bugs. ## Core Features & Use Cases - Red-green-refactor workflows: Guided implement-feature and fix-bug flows that require watching each test fail before writing code, discovering the repository's own test commands, and quoting real command output as evidence. - Regression proof for bug fixes: A mandatory revert-the-fix procedure that confirms a regression test fails without the fix and passes with it restored. - Test review with verdicts: A review-tests workflow that names the production change each test would catch and issues keep/rewrite/delete verdicts with file:line references, backed by catalogues of test smells, mocking rules, and test strategy guidance. - Use Case: Given a bug report that toSlug returns 'deploy----v2-' instead of 'deploy-v2', write a failing reproduction test using the repo's own make test command, fix the root cause, then revert and restore the fix to prove the regression test is real. ## Quick Start Ask the agent to implement a new function or fix a bug test-first, following the red-green-refactor loop and reporting the actual failing and passing test output.