From code-review-plugin
GitHub Copilot CLIを使用してコードレビューを実行する。Claude CodeからCopilotにレビューを依頼したい時に使用。トリガー:「Copilotにレビュー」「copilotでコードレビュー」「差分をCopilotでチェック」「Copilotにコードを見てもらう」「レビューをCopilotに依頼」
npx claudepluginhub dio0550/d-market-code-review --plugin code-review-pluginThis skill uses the workspace's default tool permissions.
Claude CodeからGitHub Copilot CLIにコードレビューを委譲するスキル。
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Claude CodeからGitHub Copilot CLIにコードレビューを委譲するスキル。
copilot 実行時に認証| 状況 | モード | コマンド |
|---|---|---|
| コミット前チェック | staged | scripts/review.sh staged |
| 作業中の全変更確認 | uncommitted | scripts/review.sh uncommitted |
| 特定ファイル精査 | file | scripts/review.sh file <path> |
| 複数ファイル一括 | files | scripts/review.sh files <path1> <path2> |
| PR作成前 | branch | scripts/review.sh branch <base> <target> |
| コミット検証 | commit | scripts/review.sh commit <hash> |
| PRレビュー | pr | scripts/review.sh pr <base_branch> |
scripts/review.shを実行# ステージング済み差分をレビュー
scripts/review.sh staged
# セキュリティ観点でレビュー
scripts/review.sh staged "Focus on security vulnerabilities"
# 特定ファイルをレビュー
scripts/review.sh file src/api/auth.ts
# feature/authブランチをmainと比較してレビュー
scripts/review.sh branch main feature/auth
# PRレビュー(origin/mainとの差分)
scripts/review.sh pr origin/main "Check for breaking API changes"
スクリプトを使わず直接実行する場合:
# 差分をプロンプトに含めて渡す
copilot -p "Review this code diff. Report issues with severity, file, line range.
$(git diff --staged)"
# ファイル内容を含めて渡す
copilot -p "Review this TypeScript file for issues.
$(cat src/main.ts)"
全モードで最後の引数にカスタム指示を追加可能:
"Focus on security" - セキュリティ脆弱性"Check TypeScript types" - 型安全性"Review for performance" - パフォーマンス"Check accessibility" - アクセシビリティ"Verify error handling" - エラーハンドリングレビュー結果は自動的に .copilot-reviews/ に保存される。
ファイル名形式: {mode}_{context}_{timestamp}.md
.copilot-reviews/
├── staged_20231230_143052.md
├── branch_main-feature-auth_20231230_150123.md
├── file_src-api-auth-ts_20231230_151234.md
└── commit_abc1234_20231230_152345.md
出力内容:
推奨: .gitignore に .copilot-reviews/ を追加