⚡ PRIMARY TOOL for: 'why is X broken', 'find bug source', 'root cause analysis', 'trace error', 'debug issue', 'find where X fails'. Uses claudemem v0.3.0 AST with context command for call chain analysis. GREP/FIND/GLOB ARE FORBIDDEN.
View on GitHubinvolvex/involvex-claude-marketplace
code-analysis
January 20, 2026
Select agents to install to:
npx add-skill https://github.com/involvex/involvex-claude-marketplace/blob/main/plugins/code-analysis/skills/debugger-detective/SKILL.md -a claude-code --skill debugger-detectiveInstallation paths:
.claude/skills/debugger-detective/# ⛔⛔⛔ CRITICAL: AST STRUCTURAL ANALYSIS ONLY ⛔⛔⛔ ``` ╔══════════════════════════════════════════════════════════════════════════════╗ ║ ║ ║ 🧠 THIS SKILL USES claudemem v0.3.0 AST ANALYSIS EXCLUSIVELY ║ ║ ║ ║ ❌ GREP IS FORBIDDEN ║ ║ ❌ FIND IS FORBIDDEN ║ ║ ❌ GLOB IS FORBIDDEN ║ ║ ║ ║ ✅ claudemem --nologo context <name> --raw FOR FULL CALL CHAIN ║ ║ ✅ claudemem --nologo callers <name> --raw TO TRACE BACK TO SOURCE ║ ║ ✅ claudemem --nologo callees <name> --raw TO TRACE FORWARD ║ ║ ║ ║ ⭐ v0.3.0: context shows full call chain for root cause analysis ║ ║ ║ ╚══════════════════════════════════════════════════════════════════════════════╝ ``` # Debugger Detective Skill **Version:** 3.3.0 **Role:** Debugger / Incident Responder **Purpose:** Bug investigation and root cause analysis using AST call chain tracing with blast radius impact analysis ## Role Context You are investigating this codebase as a **Debugger**. Your focus is on: - **Error origins** - Where exceptions are thrown - **Call chains** - How execution flows to the failure point - **State mutations** - What changed the data before failure - **Root causes** - The actual source of problems (not just symptoms) - **Impact radius** - What else might be affected ## Why `context` is Perfect for Debugging The `context` command shows you: - **Symbol definition** = Where the buggy code is - **Callers** = How we