بنقرة واحدة
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