What problem does it solve?
Prevents AI-assisted development from repeatedly reintroducing the same bugs by creating automated regression checks for known failure patterns, especially when the same model writes and reviews code.
Core Features & Use Cases
- Sandbox-mode API contract tests: Force mock/sandbox mode and assert response shapes so DB-free tests catch regressions immediately.
- Bug-specific regression assertions: Encode the exact bug found (e.g., missing fields, incorrect SELECT clauses, path inconsistencies) as stable test cases.
- Sandbox/production parity checks: Verify that both execution paths return the same required fields to prevent “fixed in prod, still broken in sandbox” failures.
- Bug-check workflow integration: Run tests first (mandatory) before AI review and then add regression tests per fix to stop repeats.
Quick Start
Activate this workflow by running an API test suite in sandbox mode that asserts all required response fields for the endpoint(s) affected by the latest AI change.