What problem does it solve? Debugging unfamiliar or large codebases often means hours of manual searching through files to understand call chains and locate the source of a bug. This Skill provides a systematic workflow that uses a code knowledge graph to trace issues from symptom to root cause. ## Core Features & Use Cases - Semantic Code Search: Find code related to an issue using semantic_search_nodes_tool instead of guessing file locations. - Call Chain Tracing: Use query_graph_tool with callers_of and callees_of plus get_flow to follow full execution paths through suspected areas. - Change & Impact Analysis: Run detect_changes_tool to check whether recent changes caused the issue, and get_impact_radius_tool to see what else a suspected file affects. - Use Case: A bug report says checkout fails after a recent commit. Start with get_minimal_context, trace the callers of the failing function, check recent changes, and confirm the blast radius before proposing a fix. ## Quick Start Debug the reported issue by starting with get_minimal_context, then trace callers and callees of the suspected code and check recent changes for the root cause.