← ClaudeAtlas

review-deltalisted

Review uncommitted changes using impact analysis. Quick local delta review with blast-radius detection.
n24q02m/claude-plugins · ★ 3 · Code & Development · score 74
Install: claude install-skill n24q02m/claude-plugins
# Review Delta 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. ## Steps 1. **Ensure the graph is current** by calling `graph(action="update")`. 2. **Get review context** by calling `review()`. 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) 3. **Analyze the blast radius** by reviewing the `impacted_nodes` and `impacted_files` 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) 4. **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 `query(action="query", pattern="tests_for", target=<function_name>)` - Flag any untested changed functions 5. **Report findings** in a structured format: ``` ## Delta Review ### Summary <One-line ove