一键导入
verification
Reproduce bugs, validate fixes, and run regressions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reproduce bugs, validate fixes, and run regressions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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