What problem does it solve? Grepping a large codebase to answer structural questions like "who calls this function" or "what is dead code" is slow and token-expensive. This Skill uses a pre-indexed knowledge graph to return precise structural results in roughly 500 tokens instead of tens of thousands. ## Core Features & Use Cases - Call Tracing: Trace inbound, outbound, or bidirectional call chains for any function with trace_path, including risk-classified traces. - Structural Search: Find functions by name pattern, detect dead code via degree filters, and identify high fan-in/fan-out refactor candidates with search_graph. - Cross-Service Analysis: Run raw Cypher queries with query_graph to inspect HTTP_CALLS, ASYNC_CALLS, and other edge types across services. - Use Case: Before refactoring a shared handler, run search_graph to find its exact name, then trace_path(direction="both", depth=3) to map every caller and callee, and detect_changes() to map your git diff to affected symbols. ## Quick Start Ask the agent to check whether the project is indexed with list_projects, then trace who calls a specific function using the codebase knowledge graph.