| name | review-diff |
| description | Review a git diff for regressions, style violations, complexity, and security issues. Use for cross-tool monitoring — one agent reviews another's changes. |
Workflow
- Show what changed:
git -P log --oneline main..HEAD and git -P diff --stat main..HEAD
- Review each file:
git -P diff main..HEAD -- <file>
- Check: correctness, regressions, style, complexity, security, tests
- Run tests:
cargo test && cargo clippy --all-targets --all-features -- -D warnings
- Report findings with file:line references and severity (blocker/warning/nit)
Cross-Tool Usage
Claude makes changes → commit → Kiro runs /review-diff
Kiro makes changes → commit → Claude reviews the branch