with one click
debugging
Systematic root cause analysis — find the cause before fixing.
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
Systematic root cause analysis — find the cause before fixing.
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.
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.
Based on SOC occupation classification
| 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.