What problem does it solve? Before editing code, developers need to know what will break. This Skill answers questions like "Is it safe to change this function?" and "What depends on this code?" by tracing upstream dependencies and execution flows through the GitNexus index, then assigning a risk level to the change. ## Core Features & Use Cases - Symbol Blast Radius: Runs impact analysis with upstream direction to list direct callers (d=1 WILL BREAK), indirect dependents (d=2), and transitive effects (d=3) with confidence scores. - Pre-Commit Change Detection: Uses git-diff based detect_changes to map uncommitted edits to affected execution processes and an overall risk rating. - Risk Gating: Classifies changes as LOW, MEDIUM, HIGH, CRITICAL, or UNKNOWN, treating zero-caller results as unresolved rather than safe until confirmed by text search. - Use Case: Before renaming a shared validateUser function, run the workflow to discover that loginHandler and apiMiddleware call it directly and that LoginFlow and TokenRefresh processes depend on it, yielding a MEDIUM risk report. ## Quick Start Ask the assistant to check what will break if you change a specific function before you edit it.