بنقرة واحدة
debugging
Systematic root cause analysis — find the cause before fixing.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Systematic root cause analysis — find the cause before fixing.
التثبيت باستخدام 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.
Secure coding patterns and security scanning tools.
Fetch version-specific documentation and code examples.
Orchestrate research, planning, implementation, and verification.
Advanced history manipulation, recovery, and diagnostics.
| name | debugging |
| description | Systematic root cause analysis — find the cause before fixing. |
| needs | ["verification"] |
Iron Law: NO FIXES WITHOUT ROOT CAUSE INVESTIGATION.
Before any fix:
git diff, new deps, config changesMulti-component tracing:
# Trace a value through the stack
grep -rn "VARIABLE_NAME" src/
git log --oneline -10 # recent changes
git diff HEAD~3 -- src/module/ # what changed recently
Stack trace when lost:
import traceback; traceback.print_stack()
# or in Rust: println!("{:?}", std::backtrace::Backtrace::capture());
grep -rn "working_pattern" src/verification skill| Layer | Purpose |
|---|---|
| Entry | Reject invalid input at boundary |
| Business Logic | Ensure data makes sense for operation |
| Environment | Prevent dangerous operations in context |
| Debug | Capture context for forensics |
All mean: Return to Phase 1. If 3+ failed → question architecture.