Review uncommitted changes using impact analysis. Quick local delta review with blast-radius detection.
npx claudepluginhub n24q02m/claude-plugins --plugin better-code-review-graphThis skill uses the workspace's default tool permissions.
Perform a focused, token-efficient code review of uncommitted changes and their blast radius. Use this for quick local reviews BEFORE committing. For full branch/PR reviews, use review-pr instead.
Reviews only code changes since last commit using graph-based impact analysis and blast radius detection. Provides token-efficient context for focused reviews of bugs, style, tests, and affected files/functions.
Reviews only changes since last commit using impact analysis and blast-radius detection for token-efficient delta code review.
Reviews git changes (commits, ranges, files, staged) with impact assessment, breaking-change detection, confidence-classified findings, and risk-weighted verdicts.
Share bugs, ideas, or general feedback.
Perform a focused, token-efficient code review of uncommitted changes and their blast radius. Use this for quick local reviews BEFORE committing. For full branch/PR reviews, use review-pr instead.
Token optimization: Before starting, call help(topic="graph") for the full actions reference. Use ONLY changed nodes + 2-hop neighbors in context.
Ensure the graph is current by calling graph(action="update").
Get review context by calling review(). This returns:
Analyze the blast radius by reviewing the impacted_nodes and impacted_files in the context. Focus on:
Perform the review using the context. For each changed file:
query(action="query", pattern="tests_for", target=<function_name>)Report findings in a structured format:
## Delta Review
### Summary
<One-line overview of the changes>
### Risk Level
- **Low**: Test-only changes, documentation, config files
- **Medium**: Implementation changes with <5 impacted files, no public API changes
- **High**: >5 impacted files OR public API signature/behavior change
### Issues Found
- <Bugs, style issues, missing tests>
### Blast Radius
- <List of impacted files/functions>
### Recommendations
1. <Actionable suggestion>