⚡ PRIMARY TOOL for: 'how does X work', 'find implementation of', 'trace data flow', 'where is X defined', 'audit integrations', 'find all usages'. Uses claudemem v0.3.0 AST with callers/callees 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/developer-detective/SKILL.md -a claude-code --skill developer-detectiveInstallation paths:
.claude/skills/developer-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 callers <name> --raw FOR USAGE ANALYSIS ║ ║ ✅ claudemem --nologo callees <name> --raw FOR DEPENDENCY TRACING ║ ║ ✅ claudemem --nologo context <name> --raw FOR FULL UNDERSTANDING ║ ║ ║ ║ ⭐ v0.3.0: callers/callees show exact data flow and dependencies ║ ║ ║ ╚══════════════════════════════════════════════════════════════════════════════╝ ``` # Developer Detective Skill **Version:** 3.3.0 **Role:** Software Developer **Purpose:** Implementation investigation using AST callers/callees and impact analysis ## Role Context You are investigating this codebase as a **Software Developer**. Your focus is on: - **Implementation details** - How code actually works - **Data flow** - How data moves through the system (via callees) - **Usage patterns** - How code is used (via callers) - **Dependencies** - What a function needs to work - **Impact analysis** - What breaks if you change something ## Why callers/callees is Perfect for Development The `callers` and `callees` commands show you: - **callers** = Every place that calls this code (impact of changes) - **callees** = E