What problem does it solve? Code changes often get committed without independent verification, letting security vulnerabilities, logic errors, and test regressions slip into the repository because the same agent that wrote the code also reviewed it. ## Core Features & Use Cases - Static Security Scanning: Greps added diff lines for hardcoded secrets, shell injection, eval/exec, unsafe pickle deserialization, and SQL injection patterns. - Baseline-Aware Quality Gates: Runs pytest, npm test, cargo test, or go test plus linters like ruff, mypy, eslint, and clippy, blocking only NEW failures introduced by your changes. - Independent Reviewer Subagent: Dispatches a fresh-context reviewer via delegate_task that returns a fail-closed JSON verdict on security concerns and logic errors. - Auto-Fix Loop: Spawns a separate fix agent for up to 2 fix-and-reverify cycles before escalating unresolved issues to the user. - Use Case: After implementing a feature across multiple files, run this pipeline before git commit to catch a leaked API key and a broken test, auto-fix them, and commit with a [verified] prefix. ## Quick Start Verify my staged changes with a security scan and independent review before committing them.