What problem does it solve? Grepping a large codebase to understand structure, call chains, and dependencies is slow and token-expensive. This Skill answers structural code questions through a knowledge graph, returning precise results in roughly 500 tokens instead of tens of thousands. ## Core Features & Use Cases - Call Tracing: Find who calls a function, what a function calls, or the full call context using trace_path with inbound, outbound, or both directions. - Structural Search: Locate functions by name pattern, detect dead code via zero-degree nodes, and identify high fan-in or fan-out refactor candidates. - Cypher Queries: Run custom graph queries for cross-service edges like HTTP_CALLS, with access to 14 MCP tools including index_repository, detect_changes, and get_architecture. - Use Case: Before refactoring a shared utility function, trace its inbound callers across services, check impact with detect_changes against your git diff, and confirm no dead code depends on it. ## Quick Start Ask Claude to use the codebase-memory skill to trace who calls the function you are about to modify.