원클릭으로
review-delta
Review uncommitted changes using impact analysis. Quick local delta review with blast-radius detection.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review uncommitted changes using impact analysis. Quick local delta review with blast-radius detection.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | review-delta |
| description | Review uncommitted changes using impact analysis. Quick local delta review with blast-radius detection. |
| argument-hint | [file or function name] |
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>
Safety analysis before refactoring -- dependency graph, test coverage, public API exposure, blast radius verdict.
Comprehensive PR review -- full branch diff against base, commit-by-commit analysis, breaking change detection, conventional commit verification.
Review only changes since last commit using impact analysis. Token-efficient delta review with automatic blast-radius detection.
Review a PR or branch diff using the knowledge graph for full structural context. Outputs a structured review with blast-radius analysis.
Build or update the code review knowledge graph. Run this first to initialize, or let hooks keep it updated automatically.