tirth8205/code-review-graph

review-delta

Review only changes since last commit using impact analysis. Token-efficient delta review with automatic blast-radius detection.

All-time #9401 First seen Mar 17, 2026
8-week activity · all time api

Installation

$ npx skills add tirth8205/code-review-graph --skill review-delta

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from tirth8205/code-review-graph.

npx skills add tirth8205/code-review-graph

Browse all from tirth8205/code-review-graph

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 31.3K
License LICENSE
Default branch main
Open issues 88
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,180 B
  • docs SUMMARY.md 148 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1,100 installs

SKILL.md

Review Delta

Perform a focused, token-efficient code review of only the changed code and its blast radius.

Token optimization: Before starting, call getdocssectiontool(sectionname="review-delta") for the optimized workflow. Use ONLY changed nodes + 2-hop neighbors in context.

Steps

  1. Ensure the graph is current by calling buildorupdategraphtool() (incremental update).
  1. Get review context by calling getreviewcontext_tool(). This returns:

- Changed files (auto-detected from git diff) - Impacted nodes and files (blast radius) - Source code snippets for changed areas - Review guidance (test coverage gaps, wide impact warnings, inheritance concerns)

  1. Analyze the blast radius by reviewing the impactednodes and impactedfiles in the context. Focus on:

- Functions whose callers changed (may need signature/behavior verification) - Classes with inheritance changes (Liskov substitution concerns) - Files with many dependents (high-risk changes)

  1. Perform the review using the context. For each changed file:

- Review the source snippet for correctness, style, and potential bugs - Check if impacted callers/dependents need updates - Verify test coverage using querygraphtool(pattern="testsfor", target=<functionname>) - Flag any untested changed functions

  1. Report findings in a structured format:

- Summary: One-line overview of the changes - Risk level: Low / Medium / High (based on blast radius) - Issues found: Bugs, style issues, missing tests - Blast radius: List of impacted files/functions - Recommendations: Actionable suggestions

Advantages Over Full-Repo Review

  • Only sends changed + impacted code to the model (5-10x fewer tokens)
  • Automatically identifies blast radius without manual file searching
  • Provides structural context (who calls what, inheritance chains)
  • Flags untested functions automatically