Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
npx claudepluginhub chinlung/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 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
Executes directly as bash, bypassing the AI model
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 Copilot from Claude Code to review code or delegate tasks.
Use Codex from Claude Code to review code or delegate tasks.
Automated code review for pull requests using multiple specialized agents with confidence-based scoring
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.
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
Complete development workflow system with 6 specialized agents: requirements analysis, code exploration, architecture design, implementation, testing, and quality assurance.
Session 經驗學習系統 - 漸進式保存對話中的有價值模式為 memory 或 skill
High-Precision Multi-Agent development mode - compress single-agent error rate from p to p^4 through epistemic division of labor
多代理辯證系統 - 透過多角度思考與批判審查,產出最優實踐方案
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 GitHub Copilot CLI from within Claude Code sessions for code reviews or to delegate tasks.
This plugin is for Claude Code users who want an easy way to leverage GitHub Copilot from the workflow they already have.
This project is a refactored fork of openai/codex-plugin-cc, which was originally built around the OpenAI Codex CLI.
Key changes from the upstream project:
--resume/--continue for session management, added --autopilot for autonomous continuation, and --share/--share-gist for session export, alongside the --model and --background/--wait API.COPILOT_GITHUB_TOKEN, GH_TOKEN, or GITHUB_TOKEN for flexible GitHub authentication, with automatic fallback to gh auth token for users already logged in with GitHub CLI./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 jobsnpm install -g @github/copilot)COPILOT_GITHUB_TOKEN, GH_TOKEN, or GITHUB_TOKEN environment variable, or just be logged in with gh auth login (the plugin will automatically derive a token from gh auth token)Add the marketplace in Claude Code:
/plugin marketplace add chinlung/copilot-plugin-cc
Install the plugin:
/plugin install copilot@chinlung-copilot-plugin-cc
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
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.
[!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: