What problem does it solve?
Prevents AI-assisted development from reintroducing the same bugs by enforcing automated regression tests that target known blind spots (especially when the same model writes and reviews code).
Core Features & Use Cases
- Sandbox-mode, DB-free API testing: Force a mock/sandbox environment to validate behavior quickly without database dependencies.
- Response contract regression checks: Assert required response fields and invariants so missing columns or shape mismatches are caught immediately.
- Sandbox/production parity validation: Ensure sandbox and production paths return the same response shape, catching the most common AI regression class.
Use case: After an AI modifies API routes, run bug-check first, then add a regression test for the specific failure so the issue cannot silently return in later changes.
Quick Start
Ask your AI agent to run a bug-check, then add a sandbox-forced regression test that asserts the required response fields and verifies sandbox/production parity for the changed API route.