
Copilot Review
- Updated April 22, 2026
- superyyrrzz/copilot-review-plugin-cc
copilot-review is a Claude Code skill in the Code Review & Quality category. Automated code review loops using GitHub Copilot for Claude Code.
Key points
- copilot-review
- Code Review & Quality
- AI-coding skill
Copilot Review by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add superyyrrzz/copilot-review-plugin-cc/plugin install copilot-review@copilot-reviewAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | April 22, 2026 |
|---|---|
| Repository | superyyrrzz/copilot-review-plugin-cc ↗ |
What it does
Automated code review loops using GitHub Copilot for Claude Code.
README.md
copilot-review-plugin-cc
Claude Code plugin for automated code review loops using GitHub Copilot.
Unlike review loop plugins that rely on OpenAI Codex, this plugin uses GitHub Copilot as the review backend — both via the GitHub PR reviewer and the local Copilot CLI.
Commands
/copilot-review:copilot-review-loop
PR-based cron loop. Monitors a GitHub PR for Copilot review comments, fixes them, pushes, re-requests review, and repeats until Copilot reports "generated no comments."
- Non-blocking — uses a 5-minute cron schedule
- Automatically requests Copilot reviews after each push (required for non-Enterprise GitHub plans)
- Fetches unresolved threads via GraphQL, resolves them after fixing
- Stops when Copilot is satisfied, PR is merged/closed, or safety valve triggers
/copilot-review:local-copilot-review-loop
Local CLI iterative loop. Runs the Copilot CLI locally via the Agent Client Protocol (ACP) to review code changes, fix findings, and re-run until clean — no PR required.
- Drives Copilot CLI over ACP using the bundled
copilot-acp-companion.mjsscript - Activity-based idle timeout (default 2 min) lets long but active reviews continue
- Wall-clock safety valve (default 30 min) prevents runaway sessions
- Structured finding format:
[file:line] severity (high/medium/low): description - Stops when no findings remain, loop detection triggers, or 5 iterations reached
Installation
# Add the marketplace
/plugin marketplace add superyyrrzz/copilot-review-plugin-cc
# Install the plugin
/plugin install copilot-review@copilot-review
Updating
# Pull the latest version
/plugin marketplace update copilot-review
# Reload to apply
/reload-plugins
Prerequisites
- GitHub Copilot CLI (
npm install -g @github/copilot) — required for local review loop - GitHub CLI (
gh) — required for PR-based review loop - Node.js 18+
Usage
PR-based review loop
Open a PR and tell Claude Code:
"Run copilot review loop on this PR"
Or invoke directly:
/copilot-review:copilot-review-loop
Local review loop
Make some changes and tell Claude Code:
"Run local copilot review"
Or invoke directly:
/copilot-review:local-copilot-review-loop
Development
Test the plugin locally without installing:
claude --plugin-dir ./plugins/copilot-review
License
MIT