Code-review-graph Review Changes
Perform a structured code review using change detection and impact
install
source · Clone the upstream repo
git clone https://github.com/tirth8205/code-review-graph
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/tirth8205/code-review-graph "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/review-changes" ~/.claude/skills/tirth8205-code-review-graph-review-changes && rm -rf "$T"
manifest:
skills/review-changes/SKILL.mdsource content
Review Changes
Perform a thorough, risk-aware code review using the knowledge graph.
Steps
- Run
to get risk-scored change analysis.detect_changes - Run
to find impacted execution paths.get_affected_flows - For each high-risk function, run
with pattern="tests_for" to check test coverage.query_graph - Run
to understand the blast radius.get_impact_radius - For any untested changes, suggest specific test cases.
Output Format
Provide findings grouped by risk level (high/medium/low) with:
- What changed and why it matters
- Test coverage status
- Suggested improvements
- Overall merge recommendation
Token Efficiency Rules
- ALWAYS start with
before any other graph tool.get_minimal_context(task="<your task>") - Use
on all calls. Only escalate to "standard" when minimal is insufficient.detail_level="minimal" - Target: complete any review/debug/refactor task in ≤5 tool calls and ≤800 total output tokens.