What problem does it solve? Code reviews often miss hidden ripple effects of a change, such as impacted execution flows and untested functions. This Skill performs a structured, risk-aware review by querying a knowledge graph to detect changes, trace affected flows, and check test coverage before merge. ## Core Features & Use Cases - Risk-Scored Change Detection: Runs detect_changes to identify what changed and rank findings by risk level. - Impact Analysis: Uses get_affected_flows and get_impact_radius to map the blast radius of each change across execution paths. - Test Coverage Checks: Queries the graph for tests covering high-risk functions and suggests specific test cases for untested changes. - Use Case: Before merging a pull request that modifies a core authentication function, run this review to see which flows are impacted, whether tests exist for the changed code, and receive a merge recommendation grouped by risk level. ## Quick Start Review my current code changes and tell me the risk level, impacted flows, test coverage gaps, and whether it is safe to merge.