
Copilot Tools
- 6 repo stars
- Updated July 29, 2026
- GGPrompts/my-plugins
Orchestrate multiple models — audit with gpt5-mini, or convene an Opus/Codex/Gemini council on a task.
About
A multi-model orchestration skill that routes work across providers: a quick audit lane using gpt5-mini and a deliberative council combining Opus, Codex, and Gemini. Developers use it to get second opinions and cross-checks from several LLMs on the same problem instead of relying on one model.
- Multi-model orchestration
- gpt5-mini audit lane
- Opus/Codex/Gemini council
- Cross-provider review
Copilot Tools by the numbers
- Data as of Jul 30, 2026 (Skillselion catalog sync)
/plugin marketplace add GGPrompts/my-plugins/plugin install copilot-tools@my-pluginsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 6 |
|---|---|
| Last updated | July 29, 2026 |
| Repository | GGPrompts/my-plugins ↗ |
What it does
Orchestrate multiple models — audit with gpt5-mini, or convene an Opus/Codex/Gemini council on a task.
README.md
Copilot Tools Plugin
Multi-model orchestration using GitHub Copilot CLI and Codex CLI.
Commands
/audit [path]
Read-only codebase audit using gpt5-mini (unlimited). Creates beads issues for findings - no files modified.
/audit # Audit current project
/audit ~/projects/myapp # Audit specific path
/council "prompt"
Fan out the same prompt to multiple models (Opus, gpt5.2-codex, Gemini 3) and compare responses.
/council "Design an auth system for a veteran resource app"
/council "What's the best approach for real-time notifications?"
Model Presets
Quick reference for Copilot CLI models:
| Preset | Model | Best For |
|---|---|---|
mini |
gpt-5-mini | Unlimited grunt work, maintenance |
codex |
gpt-5.2-codex | Code-focused tasks |
codex-max |
gpt-5.1-codex-max | Complex debugging |
opus |
claude-opus-4.5 | Deep reasoning |
gemini |
gemini-3-pro-preview | Alternative perspective |
Usage Examples
# Run maintenance audit (safe, read-only)
copilot --model gpt-5-mini -p "$(cat ~/.claude/plugins/copilot-tools/scripts/audit-prompt.md)" -s --yolo
# Complex debugging with max thinking
codex -m gpt5.2codex --full-auto "debug the race condition in worker.py"
# Get multiple perspectives on architecture
/council "Should we use WebSockets or SSE for real-time updates?"