What problem does it solve? Reviewing pull requests by reading raw diffs alone misses how changes ripple through callers, execution flows, and test coverage, leading to undetected breaking changes and unsafe merges. ## Core Features & Use Cases - Index Freshness Verification: Compares the GitNexus indexed commit against HEAD before reviewing, preventing stale-graph false approvals. - Blast Radius Analysis: Maps each changed symbol to upstream dependents (d=1/d=2/d=3) via gitnexus_impact to find callers not updated in the PR. - Flow and Coverage Mapping: Uses gitnexus_detect_changes and gitnexus_context to identify affected execution flows and missing test coverage. - Use Case: When asked to review PR #42, the skill fetches the diff, maps changed symbols to CheckoutFlow and RefundFlow, flags a webhookHandler caller that was not updated, and outputs a structured risk-rated review with an APPROVE or REQUEST CHANGES recommendation. ## Quick Start Ask the assistant to review a specific pull request, for example: Review PR #42 and tell me if it is safe to merge.