Review local code changes against main branch
Scanned 9/9/2026
Install to Claude Code
npx -y skills add sasamuku/dotfiles --skill review-code --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Review Code?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/sasamuku-review-code)More formats (shields.io, HTML) on the badges page.
---
name: review-code
description: Review local code changes against main branch
---
# Review Code
現在のブランチと main の差分 (未コミット・コミット済みの変更すべて) をレビューする。
## 手順
1. main と現在の HEAD の差分を取得する:
```bash
git diff main...HEAD
```
2. コンテキスト用のコミット履歴を取得する:
```bash
git log main..HEAD --oneline
```
3. 未コミットの変更がある場合:
```bash
git diff
git diff --cached
```
4. **code-reviewer** エージェントでレビューを実施する
## 出力
code-reviewer エージェントが優先度別に構造化されたフィードバックを提供する:
- **Critical**: セキュリティ問題、バグ
- **Warning**: コード品質の懸念事項
- **Suggestion**: 改善提案
ファイルパスと修正の推奨事項を含む。
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!