██████╗ ██╗ ██╗ ███╗ ███╗██╗ ██╗
██╔═══██╗██║ ██║ ████╗ ████║╚██╗ ██╔╝
██║ ██║███████║ ██╔████╔██║ ╚████╔╝
██║ ██║██╔══██║ ██║╚██╔╝██║ ╚██╔╝
╚██████╔╝██║ ██║ ██║ ╚═╝ ██║ ██║
╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝
██████╗ ██████╗ ██████╗ ██╗██╗ ██████╗ ████████╗
██╔════╝██╔═══██╗██╔══██╗██║██║ ██╔═══██╗╚══██╔══╝
██║ ██║ ██║██████╔╝██║██║ ██║ ██║ ██║
██║ ██║ ██║██╔═══╝ ██║██║ ██║ ██║ ██║
╚██████╗╚██████╔╝██║ ██║███████╗╚██████╔╝ ██║
╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═╝
Turbocharge your Copilot CLI with multi-agent orchestration
Your Copilot has been working out, learning new ways to improve your life.
This work is based on oh-my-claudecode by Yeachan Heo, but with copilot cli focus.
# Step 1: Install
/plugin marketplace add https://github.com/RobinNorberg/oh-my-copilot
/plugin install oh-my-copilot@omcp
# or
npm i -g oh-my-copilot@latest
# Step 2: Setup
/setup
# Step 3: Build something
/autopilot: build a todo-app
# or
autopilot: build a todo-app
# If you enjoy the output, give the repo att ⭐ and tell a friendIf you're uncertain about requirements, have a vague idea, or want to micromanage the design:
/deep-interview "I want to build a todo-app"
The deep interview uses Socratic questioning to clarify your thinking before any code is written.
- Copilot CLI friendly — Perfect for development in the terminal
- Natural language interface — no commands to memorize, just describe what you want
- Team-first orchestration — staged pipeline with plan, exec, verify, and fix loop
- Automatic parallelization — complex tasks distributed across our specialized agents
- Smart model routing — Haiku for simple tasks, Sonnet for average and Opus for complex reasoning
- Persistent execution — won't give up until the job is verified complete
- Azure DevOps/GitHub native — auto-detection, work item management, PR operations, triage workflows
- Stop your yolo abuse — using a layered permission model to help your agents perform safe work without your interference
Optional shortcuts for power users. Natural language works fine without them.
Notes:
- Informational filtering: Asking "what is ralph?" or "explain ultrawork" won't trigger execution — only actionable uses activate keywords.
Team is the canonical orchestration surface. It runs a staged pipeline:
team-plan → team-prd → team-exec → team-verify → team-fix (loop)
/team 3:executor "fix all TypeScript errors"CCCG uses multi-model advisor synthesis — fans out via ask-copilot + ask-claude + ask-codex + ask-gemini, then Copilot synthesizes the results:
/cccg "review this branch — architecture, security, and UI components"Omc team spawn real tmux CLI workers for cross-model tasks:
omcp team 1:copilot "review the ingestion module for performance issues"
omcp team 2:claude "review the database module for sql issues"
omcp team 3:codex "review the auth module for security issues"
omcp team 5:gemini "redesign UI components for accessibility"- Documentation Home
- Quick Start
- Full Reference
- Team Mode
- Azure DevOps Integration
- GitHub Integration
- Architecture Overview
- Permission Architecture
OMC features like omcp team and rate-limit detection require tmux:
| Platform | tmux provider | Install |
|---|---|---|
| macOS | tmux | brew install tmux |
| Ubuntu/Debian | tmux | sudo apt install tmux |
| Fedora | tmux | sudo dnf install tmux |
| Arch | tmux | sudo pacman -S tmux |
| Windows | psmux (native) | winget install psmux |
| Windows (WSL2) | tmux (inside WSL) | sudo apt install tmux |
Windows users: psmux provides a native
tmuxbinary for Windows with 76 tmux-compatible commands. No WSL required.
OMC can orchestrate multiple AI CLI providers as tmux workers for cross-validation, design consistency, and parallel execution. All four major CLI tools are supported:
| Provider | Install | What it enables |
|---|---|---|
| Copilot CLI | npm install -g @github/copilot |
Core orchestration platform |
| Claude Code | npm install -g @anthropic-ai/claude-code |
Deep reasoning, architecture analysis |
| Gemini CLI | npm install -g @google/gemini-cli |
Design review, UI consistency (1M token context) |
| Codex CLI | npm install -g @openai/codex |
Architecture validation, code review cross-check |
omcp team 2:claude "review auth architecture"
omcp team 2:codex "security analysis"
omcp team 2:gemini "UI consistency check"
omcp team 1:copilot "review existing tests"Only Copilot CLI is required — the others are optional and add cross-provider validation.
Inspired by: • oh-my-claudecode, oh-my-opencode • Superpowers • get-shit-done • Ouroboros • BMAD
Contributions welcome! Open an issue or PR on GitHub to the dev branch.
MIT — see LICENSE.