What problem does it solve? Exploring an unfamiliar codebase with grep and manual file reading is slow and token-expensive. This Skill provides structural answers about code—who calls a function, what a function calls, which code is dead—in roughly 500 tokens instead of 80K, using a pre-indexed knowledge graph. ## Core Features & Use Cases - Call Chain Tracing: Trace inbound, outbound, or bidirectional call paths for any function with trace_path, including risk-classified results. - Structural Search: Find functions by name pattern, detect dead code (zero-degree nodes), and identify high fan-in/fan-out refactor candidates with search_graph. - Impact Analysis: Map local git diffs to affected symbols with detect_changes and run custom Cypher queries via query_graph for cross-service edge analysis. - Use Case: Before refactoring a shared utility function, trace its full call context in both directions, check index coverage for gaps, and identify every caller that could break. ## Quick Start Ask the agent to use the codebase knowledge graph to show who calls the function you are about to modify and trace its full call chain.