What problem does it solve? Manual code exploration with grep and file reading burns thousands of tokens and still misses cross-service relationships. This Skill queries a pre-indexed knowledge graph of the codebase, returning precise structural answers—callers, callees, dependencies, dead code—in roughly 500 tokens instead of 80K. ## Core Features & Use Cases - Call Chain Tracing: Trace inbound, outbound, or bidirectional call paths from any function with depth control and risk labels. - Structural Search: Find functions by name pattern, filter by fan-in/fan-out degree, and detect dead code by excluding entry points. - Cypher Queries & Change Impact: Run raw Cypher for cross-service edge analysis and map git diffs to affected symbols with detect_changes. - Use Case: Before refactoring a shared handler, ask who calls it—the graph returns every inbound caller across services, including HTTP and async edges that grep would miss. ## Quick Start Ask the agent to trace who calls a specific function in the indexed codebase and show its full call context.