com um clique
verification
Reproduce bugs, validate fixes, and run regressions.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Reproduce bugs, validate fixes, and run regressions.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
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.
Baseado na classificação ocupacional SOC
| 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