What problem does it solve? Navigating unfamiliar codebases and predicting the blast radius of code changes is slow and error-prone when done by manually reading files. This Skill uses the GitNexus knowledge graph to answer questions about symbol dependencies, execution flows, and change impact directly. ## Core Features & Use Cases - Execution Flow Tracing: Query call chains between symbols, inspect callers and callees, and read step-by-step process traces to understand how code behaves. - Impact Analysis: Compute the blast radius of a change with depth-limited upstream and downstream analysis, and map git diffs to affected execution flows before committing. - Guided Workflows: Follow structured procedures for exploring new code, debugging bugs, planning safe edits, and verifying changes, including risk-level assessment and raw Cypher graph queries. - Use Case: Before renaming a shared validation function, run an impact query to list every direct caller, check which execution processes depend on it, then perform a coordinated multi-file rename. ## Quick Start Ask the AI to trace how the login flow reaches the database layer and show the impact of changing the authenticate function.