Change Verification
Run all 4 verification agents in parallel to validate changes before committing or deploying.
Agents (run in parallel)
1. PII Compliance Checker
code
Task: pii-compliance-checker
Prompt: "Review the recently changed files for PII handling violations.
Check: masking, audit logging, data leaks in console/errors."
2. Security Scanner
code
Task: security-scanner
Prompt: "Run Snyk scans on the project.
- snyk_code_scan for source vulnerabilities
- snyk_sca_scan for dependency vulnerabilities
Report critical/high findings."
3. Verifier
code
Task: verifier
Prompt: "Verify the implementation is complete and functional.
Check: no broken imports, no TODO placeholders, UI renders correctly."
4. Test Runner
code
Task: Test Runner
Prompt: "Run the test suite. If tests fail, report which tests failed and why.
Do not auto-fix unless explicitly asked."
Output
Combine results into a verification report:
markdown
## Verification Report | Check | Status | Findings | |-------|--------|----------| | PII Compliance | ✅/⚠️/❌ | [summary] | | Security | ✅/⚠️/❌ | [summary] | | Implementation | ✅/⚠️/❌ | [summary] | | Tests | ✅/⚠️/❌ | [pass/fail count] | ### Issues to Address 1. [Issue from any failing check] 2. [Issue from any failing check] ### Ready to Commit: Yes/No