omc
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
Chineseomc (oh-my-claudecode) — Claude Code Multi-Agent Orchestration
omc (oh-my-claudecode) — Claude Code多Agent编排工具
When to use this skill
何时使用该工具
- You want Teams-first multi-agent orchestration inside Claude Code
- You need 32 specialized agents with smart model routing (Haiku → Opus)
- Complex tasks that benefit from parallel agent execution with verification loops
- Any Claude Code workflow that needs persistent, guaranteed-completion execution
- 你希望在Claude Code中使用面向团队的多Agent编排功能
- 你需要32个具备智能模型路由(Haiku → Opus)的专业Agent
- 适合需要多Agent并行执行并带有验证循环的复杂任务
- 任何需要持久化、确保完成的Claude Code工作流
1. Installation (3 Steps)
1. 安装步骤(3步)
Step 1: Install plugin
bash
/plugin marketplace add https://github.com/Yeachan-Heo/oh-my-claudecode
/plugin install oh-my-claudecodeStep 2: Run setup
bash
/omc:omc-setupStep 3: Build something
text
autopilot: build a REST API for managing tasksnpm alternative:npm install -g oh-my-claude-sisyphus
步骤1:安装插件
bash
/plugin marketplace add https://github.com/Yeachan-Heo/oh-my-claudecode
/plugin install oh-my-claudecode步骤2:运行初始化设置
bash
/omc:omc-setup步骤3:开始构建
text
autopilot: build a REST API for managing tasksnpm替代方案:npm install -g oh-my-claude-sisyphus
2. Orchestration Modes
2. 编排模式
| Mode | What it is | Use For |
|---|---|---|
| Team (recommended) | Staged pipeline: | Coordinated agents on shared task list |
| Autopilot | Autonomous single lead agent | End-to-end feature work with minimal ceremony |
| Ultrawork | Maximum parallelism (non-team) | Burst parallel fixes/refactors |
| Ralph | Persistent mode with verify/fix loops | Tasks that must complete fully |
| Pipeline | Sequential staged processing | Multi-step transformations |
| Swarm/Ultrapilot | Legacy facades → route to Team | Existing workflows |
Enable Claude Code native teams in :
~/.claude/settings.jsonjson
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}| 模式 | 说明 | 适用场景 |
|---|---|---|
| 团队模式(推荐) | 分阶段流水线: | 多个Agent协作处理共享任务列表 |
| 自动驾驶模式(Autopilot) | 自主单主导Agent模式 | 端到端功能开发,流程极简 |
| 超并行模式(Ultrawork) | 最大并行度(非团队模式) | 批量并行修复/重构任务 |
| 持久模式(Ralph) | 带有验证/修复循环的持久化模式 | 必须确保完全完成的任务 |
| 流水线模式(Pipeline) | 顺序分阶段处理 | 多步骤转换类任务 |
| 集群/超级自动驾驶(Swarm/Ultrapilot) | 兼容旧版工作流 → 路由到团队模式 | 现有工作流迁移 |
在中启用Claude Code原生团队功能:
~/.claude/settings.jsonjson
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}3. Magic Keywords
3. 魔法关键词
| Keyword | Effect | Example |
|---|---|---|
| Canonical Team orchestration | |
| Full autonomous execution | |
| Persistence mode | |
| Maximum parallelism | |
| Planning interview | |
| Iterative planning consensus | |
| Legacy (routes to Team) | |
| Legacy (routes to Team) | |
Note:includes ultrawork — activating ralph mode automatically includes ultrawork's parallel execution.ralph
| 关键词 | 作用 | 示例 |
|---|---|---|
| 标准团队编排 | |
| 全自主执行 | |
| 持久化模式 | |
| 最大并行度 | |
| 规划访谈 | |
| 迭代式规划共识 | |
| 旧版模式(路由到团队模式) | |
| 旧版模式(路由到团队模式) | |
注意:模式包含超并行功能 — 启用ralph模式后会自动开启ultrapilot的并行执行。ralph
4. Team Mode (Canonical)
4. 团队模式(标准模式)
bash
/omc:team 3:executor "fix all TypeScript errors"Runs as a staged pipeline:
team-plan → team-prd → team-exec → team-verify → team-fix (loop)bash
/omc:team 3:executor "fix all TypeScript errors"按以下分阶段流水线运行:
team-plan → team-prd → team-exec → team-verify → team-fix (循环)5. Utilities
5. 实用工具
Rate Limit Wait
速率限制等待
Auto-resume Claude Code sessions when rate limits reset:
bash
omc wait # Check status, get guidance
omc wait --start # Enable auto-resume daemon
omc wait --stop # Disable daemon当速率限制重置时自动恢复Claude Code会话:
bash
omc wait # 检查状态,获取指导
omc wait --start # 启用自动恢复守护进程
omc wait --stop # 禁用守护进程Notifications (Telegram/Discord)
通知(Telegram/Discord)
bash
omc config-stop-callback telegram --enable --token <bot_token> --chat <chat_id>
omc config-stop-callback discord --enable --webhook <url>bash
omc config-stop-callback telegram --enable --token <bot_token> --chat <chat_id>
omc config-stop-callback discord --enable --webhook <url>6. Updating
6. 更新
bash
undefinedbash
undefined1. Sync latest version
1. 同步最新版本
/plugin marketplace update omc
/plugin marketplace update omc
2. Re-run setup
2. 重新运行初始化设置
/omc:omc-setup
/omc:omc-setup
If issues after update
如果更新后出现问题
/omc:omc-doctor
---/omc:omc-doctor
---7. Optional: Multi-AI Orchestration
7. 可选功能:多AI编排
OMC can optionally orchestrate external AI providers (not required):
| Provider | Install | What it enables |
|---|---|---|
| Gemini CLI | | Design review, UI consistency (1M token context) |
| Codex CLI | | Architecture validation, code review cross-check |
OMC可选择性编排外部AI提供商(非必需):
| 提供商 | 安装方式 | 功能说明 |
|---|---|---|
| Gemini CLI | | 设计评审、UI一致性检查(100万token上下文) |
| Codex CLI | | 架构验证、代码评审交叉检查 |
Why OMC?
为什么选择OMC?
- Zero configuration — works out of the box with intelligent defaults
- Team-first orchestration — Team is the canonical multi-agent surface
- Natural language interface — no commands to memorize
- Automatic parallelization — complex tasks distributed across 32 specialized agents
- Persistent execution — won't stop until the job is verified complete
- Cost optimization — smart model routing saves 30–50% on tokens
- Real-time visibility — HUD statusline shows what's happening under the hood
- 零配置 — 开箱即用,智能默认设置
- 面向团队的编排 — 团队模式是标准的多Agent协作界面
- 自然语言交互 — 无需记忆复杂命令
- 自动并行化 — 复杂任务自动分配给32个专业Agent并行处理
- 持久化执行 — 持续运行直到任务被验证完成
- 成本优化 — 智能模型路由可节省30–50%的token成本
- 实时可视化 — HUD状态栏可实时展示后台执行状态
Quick Reference
快速参考
| Action | Command |
|---|---|
| Install | |
| Setup | |
| Team mode | |
| Autopilot | |
| Ralph loop | |
| Ultrawork | |
| Update | |
| Debug | |