Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By wagnersza
Integrates GitHub Copilot into Claude Code to review code and delegate tasks as a session-based agent, with an enforced review gate on session end.
npx claudepluginhub wagnersza/copilot-plugin-cc --plugin copilotRun a Copilot review that challenges the implementation approach and design choices
Cancel an active background Copilot job in this repository
Delegate investigation, an explicit fix request, or follow-up rescue work to the Copilot rescue subagent
Show the stored final output for a finished Copilot job in this repository
Run a Copilot code review against local git state
Internal helper contract for calling the copilot-companion runtime from Claude Code
Internal guidance for composing Copilot prompts for coding, review, diagnosis, and research tasks across GPT-5.4, GPT-5.3-Codex, and Gemini 3.1 Pro inside the Copilot Claude Code plugin
Internal guidance for presenting Copilot helper output back to the user
Uses power tools
Uses Bash, Write, or Edit tools
No model invocation
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Use Codex from Claude Code to review code or delegate tasks.
Delegate GitHub-context research and code review to GitHub Copilot CLI via ACP. Part of cc-multi-cli-plugin. Requires the `multi` plugin.
Automatic code review, adversarial review, and rescue via Codex.
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Memory compression system for Claude Code - persist context across sessions
Run multiple Claude Code instances with different auth methods from a single session.
Executes directly as bash, bypassing the AI model
Executes directly as bash, bypassing the AI model
Runs pre-commands
Contains inline bash commands via ! syntax
Runs pre-commands
Contains inline bash commands via ! syntax
Share bugs, ideas, or general feedback.
Use Copilot from inside Claude Code for code reviews or to delegate tasks to Copilot.
This plugin is for Claude Code users who want an easy way to start using Copilot from the workflow they already have.
/copilot:review for a normal read-only Copilot review/copilot:adversarial-review for a steerable challenge review/copilot:rescue, /copilot:status, /copilot:result, and /copilot:cancel to delegate work and manage background jobsAdd the marketplace in Claude Code:
/plugin marketplace add wagnersza/copilot-plugin-cc
Install the plugin:
/plugin install copilot@wagnersza
Reload plugins:
/reload-plugins
Then run:
/copilot:setup
/copilot:setup will tell you whether Copilot is ready. If Copilot is missing and npm is available, it can offer to install Copilot for you.
If you prefer to install Copilot yourself, use:
npm install -g @github/copilot-cli
If Copilot is installed but not logged in yet, run:
!copilot auth login
After install, you should see:
copilot:copilot-rescue subagent in /agentsOne simple first run is:
/copilot:review --background
/copilot:status
/copilot:result
/copilot:reviewRuns a normal Copilot review on your current work. It gives you the same quality of code review as running /review inside Copilot directly.
[!NOTE] Code review especially for multi-file changes might take a while. It's generally recommended to run it in the background.
Use it when you want:
mainUse --base <ref> for branch review. It also supports --wait and --background. It is not steerable and does not take custom focus text. Use /copilot:adversarial-review when you want to challenge a specific decision or risk area.
Examples:
/copilot:review
/copilot:review --base main
/copilot:review --background
This command is read-only and will not perform any changes. When run in the background you can use /copilot:status to check on the progress and /copilot:cancel to cancel the ongoing task.
/copilot:adversarial-reviewRuns a steerable review that questions the chosen implementation and design.
It can be used to pressure-test assumptions, tradeoffs, failure modes, and whether a different approach would have been safer or simpler.
It uses the same review target selection as /copilot:review, including --base <ref> for branch review.
It also supports --wait and --background. Unlike /copilot:review, it can take extra focus text after the flags.
Use it when you want:
Examples:
/copilot:adversarial-review
/copilot:adversarial-review --base main challenge whether this was the right caching and retry design
/copilot:adversarial-review --background look for race conditions and question the chosen approach
This command is read-only. It does not fix code.
/copilot:rescueHands a task to Copilot through the copilot:copilot-rescue subagent.
Use it when you want Copilot to:
[!NOTE] Depending on the task and the model you choose these tasks might take a long time and it's generally recommended to force the task to be in the background or move the agent to the background.
It supports --background, --wait, --resume, and --fresh. If you omit --resume and --fresh, the plugin can offer to continue the latest rescue thread for this repo.
Examples:
/copilot:rescue investigate why the tests started failing
/copilot:rescue fix the failing test with the smallest safe patch
/copilot:rescue --resume apply the top fix from the last run
/copilot:rescue --model gpt-5.4 --effort medium investigate the flaky integration test
/copilot:rescue --model spark fix the issue quickly
/copilot:rescue --background investigate the regression
You can also just ask for a task to be delegated to Copilot:
Ask Copilot to redesign the database connection to be more resilient.
Notes: