by Yeachan-Heo
Teams-first Multi-agent orchestration for Claude Code
# Add to your Claude Code skills
git clone https://github.com/Yeachan-Heo/oh-my-claudecodeEnglish | 한국어 | 中文 | 日本語 | Español | Tiếng Việt | Português
For Codex users: Check out oh-my-codex — the same orchestration experience for OpenAI Codex CLI.
Multi-agent orchestration for Claude Code. Zero learning curve.
Don't learn Claude Code. Just use OMC.
Get Started • Documentation • Migration Guide
Step 1: Install
/plugin marketplace add https://github.com/Yeachan-Heo/oh-my-claudecode
/plugin install oh-my-claudecode
Step 2: Setup
No comments yet. Be the first to share your thoughts!
/omc-setup
Step 3: Build something
autopilot: build a REST API for managing tasks
That's it. Everything else is automatic.
Starting in v4.1.7, Team is the canonical orchestration surface in OMC. Legacy entrypoints like swarm and ultrapilot are still supported, but they now route to Team under the hood.
/team 3:executor "fix all TypeScript errors"
Team runs as a staged pipeline:
team-plan → team-prd → team-exec → team-verify → team-fix (loop)
Enable Claude Code native teams in ~/.claude/settings.json:
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}
If teams are disabled, OMC will warn you and fall back to non-team execution where possible.
v4.4.0 removes the Codex/Gemini MCP servers (x, g providers). Use /omc-teams to spawn real CLI processes in tmux split-panes instead:
/omc-teams 2:codex "review auth module for security issues"
/omc-teams 2:gemini "redesign UI components for accessibility"
/omc-teams 1:claude "implement the payment flow"
For mixed Codex + Gemini work in one command, use the /ccg skill:
/ccg Review this PR — architecture (Codex) and UI components (Gemini)
| Skill | Workers | Best For |
|-------|---------|----------|
| /omc-teams N:codex | N Codex CLI panes | Code review, security analysis, architecture |
| /omc-teams N:gemini | N Gemini CLI panes | UI/UX design, docs, large-context tasks |
| `/omc-teams ...