with one click
verification
Reproduce bugs, validate fixes, and run regressions.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Reproduce bugs, validate fixes, and run regressions.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Search, read, and send emails via Apple Mail IPC. No TCC issues.
Structured code review with SOLID, security, and quality checks.
Systematic root cause analysis — find the cause before fixing.
Secure coding patterns and security scanning tools.
Fetch version-specific documentation and code examples.
Orchestrate research, planning, implementation, and verification.
| name | verification |
| description | Reproduce bugs, validate fixes, and run regressions. |
Evidence-based development. No completion claims without fresh proof of success.
Before fixing, prove the bug exists with a minimal test or script.
cat > repro.py << 'EOF'
# Minimal code to trigger the failure
EOF
python3 repro.py # Should FAIL
After implementation, run the same reproduction script to confirm the fix.
python3 repro.py # Should now PASS
Ensure no collateral damage by running existing test suites.
cargo test
uv run pytest
repo verify