Multi-agent orchestration plugin for OpenCode. Use when the user wants to install, configure, or operate oh-my-opencode — including agent delegation, ultrawork mode, Prometheus planning, background tasks, category-based task routing, model resolution, tmux integration, or any oh-my-opencode feature. Covers installation, configuration, all agents (Sisyphus, Oracle, Librarian, Explore, Atlas, Prometheus, Metis, Momus), all categories, slash commands, hooks, skills, MCPs, and troubleshooting.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install oh-my-opencode或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install oh-my-opencode⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/oh-my-opencode/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: oh-my-opencode description: Multi-agent orchestration plugin for OpenCode. Use when the user wants to install, configure, or operate oh-my-opencode — including agent delegation, ultrawork mode, Prometheus planning, background tasks, category-based task routing, model resolution, tmux integration, or any oh-my-opencode feature. Covers installation, configuration, all agents (Sisyphus, Oracle, Librarian, Explore, Atlas, Prometheus, Metis, Momus), all categories, slash commands, hooks, skills, MCPs, and troubleshooting. metadata: clawdbot: emoji: "🏔️" homepage: "https://github.com/code-yeongyu/oh-my-opencode" requires: bins: ["opencode"] ---
Multi-agent orchestration plugin that transforms OpenCode into a full agent harness with specialized agents, background task execution, category-based model routing, and autonomous work modes.
Package: oh-my-opencode (install via bunx oh-my-opencode install) Repository: https://github.com/code-yeongyu/oh-my-opencode Schema: https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json
---
opencode --version should be 1.0.150+)```bash curl -fsSL https://opencode.ai/install | bash # or: npm install -g opencode-ai # or: bun install -g opencode-ai ```
opencode auth login)---
Run the interactive installer:
bunx oh-my-opencode install
Non-interactive mode with provider flags:
bunx oh-my-opencode install --no-tui \
--claude=<yes|no|max20> \
--openai=<yes|no> \
--gemini=<yes|no> \
--copilot=<yes|no> \
--opencode-zen=<yes|no> \
--zai-coding-plan=<yes|no>
Verify:
opencode --version
cat ~/.config/opencode/opencode.json # should contain "oh-my-opencode" in plugin array
---
Include ultrawork or ulw in your prompt. That's it.
ulw add authentication to my Next.js app
The agent will automatically:
For complex or critical tasks:
.sisyphus/plans/*.md/start-work → Atlas orchestrator takes over:- Distributes tasks to specialized sub-agents - Verifies each task completion independently - Accumulates learnings across tasks - Tracks progress across sessions (resume anytime)
Critical rule: Do NOT use Atlas without /start-work. Prometheus and Atlas are a pair — always use them together.
---
All agents are enabled by default. Each has a default model and provider priority fallback chain.
| Agent | Role | Default Model | Provider Priority Chain | |-------|------|---------------|------------------------| | Sisyphus | Primary orchestrator | claude-opus-4-5 | anthropic → kimi-for-coding → zai-coding-plan → openai → google | | Sisyphus-Junior | Focused task executor (used by delegate_task with categories) | Determined by category | Per-category chain | | Hephaestus | Autonomous deep worker — goal-oriented, explores before acting | gpt-5.2-codex (medium) | openai → github-copilot → opencode (requires gpt-5.2-codex) | | Oracle | Architecture, debugging, high-IQ reasoning (read-only) | gpt-5.2 | openai → google → anthropic | | Librarian | Official docs, OSS search, remote codebase analysis | glm-4.7 | zai-coding-plan → opencode → anthropic | | Explore | Fast codebase grep (contextual search) | claude-haiku-4-5 | anthropic → github-copilot → opencode | | Multimodal Looker | Image/PDF/diagram analysis | gemini-3-flash | google → openai → zai-coding-plan → kimi-for-coding → anthropic → opencode | | Prometheus | Work planner (interview-based plan generation) | claude-opus-4-5 | anthropic → kimi-for-coding → openai → google | | Metis | Pre-planning consultant (ambiguity/failure-point analysis) | claude-opus-4-5 | anthropic → kimi-for-coding → openai → google | | Momus | Plan reviewer (clarity, verifiability, completeness) | gpt-5.2 | openai → anthropic → google | | Atlas | Plan orchestrator (executes Prometheus plans via /start-work) | k2p5 / claude-sonnet-4-5 | kimi-for-coding → opencode → anthropic → openai → google | | OpenCode-Builder | Default build agent (disabled by default when Sisyphus is active) | System default | System default |
Agents are invoked via delegate_task() or the --agent CLI flag — NOT with @ prefix.
// Invoke a specific agent
delegate_task(subagent_type="oracle", prompt="Review this architecture...")
// Invoke via category (routes to Sisyphus-Junior with category model)
delegate_task(category="visual-engineering", load_skills=["frontend-ui-ux"], prompt="...")
// Background execution (non-blocking)
delegate_task(subagent_type="explore", run_in_background=true, prompt="Find auth patterns...")
CLI:
opencode --agent oracle
opencode run --agent librarian "Explain how auth works in this codebase"
| Situation | Agent | |-----------|-------| | General coding tasks | Sisyphus (default) | | Autonomous goal-oriented deep work | Hephaestus (requires gpt-5.2-codex) | | Architecture decisions, debugging after 2+ failures | Oracle | | Looking up library docs, finding OSS examples | Librarian | | Finding code patterns in your codebase | Explore | | Analyzing images, PDFs, diagrams | Multimodal Looker | | Complex multi-day projects needing a plan | Prometheus + Atlas (via Tab → /start-work) | | Pre-planning scope analysis | Metis | | Reviewing a generated plan for gaps | Momus | | Quick single-file changes | delegate_task with quick category |
---
Categories route tasks to Sisyphus-Junior with domain-optimized models via delegate_task().
| Category | Default Model | Variant | Provider Priority Chain | Best For | |----------|---------------|---------|------------------------|----------| | visual-engineering | gemini-3-pro | — | google → anthropic → zai-coding-plan | Frontend, UI/UX, design, styling, animation | | ultrabrain | gpt-5.2-codex | xhigh | openai → google → anthropic | Deep logical reasoning, complex architecture | | deep | gpt-5.2-codex | medium | openai → anthropic → google | Goal-oriented autonomous problem-solving (Hephaestus-style) | | artistry | gemini-3-pro | max | google → anthropic → openai | Creative/novel approaches, unconventional solutions | | quick | claude-haiku-4-5 | — | anthropic → google → opencode | Trivial tasks, single file changes, typo fixes | | unspecified-low | claude-sonnet-4-5 | — | anthropic → openai → google | General tasks, low effort | | unspecified-high | claude-opus-4-5 | max | anthropic → openai → google | General tasks, high effort | | writing | gemini-3-flash | — | google → anthropic → zai-coding-plan → openai | Documentation, prose, technical writing |
...
安装 Oh My OpenCode 后,可以对 AI 说这些话来触发它
Help me get started with Oh My OpenCode
Explains what Oh My OpenCode does, walks through the setup, and runs a quick demo based on your current project
Use Oh My OpenCode to multi-agent orchestration plugin for OpenCode
Invokes Oh My OpenCode with the right parameters and returns the result directly in the conversation
What can I do with Oh My OpenCode in my product manager workflow?
Lists the top use cases for Oh My OpenCode, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/oh-my-opencode/ 目录(个人级,所有项目可用),或 .claude/skills/oh-my-opencode/(项目级)。重启 AI 客户端后,用 /oh-my-opencode 主动调用,或让 AI 根据上下文自动发现并使用。
Oh My OpenCode 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Oh My OpenCode 可免费安装使用。请查阅仓库了解许可证信息。
Multi-agent orchestration plugin for OpenCode. Use when the user wants to install, configure, or operate oh-my-opencode — including agent delegation, ultrawork mode, Prometheus planning, background tasks, category-based task routing, model resolution, tmux integration, or any oh-my-opencode feature. Covers installation, configuration, all agents (Sisyphus, Oracle, Librarian, Explore, Atlas, Prometheus, Metis, Momus), all categories, slash commands, hooks, skills, MCPs, and troubleshooting.
Automate my product manager tasks using Oh My OpenCode
Identifies repetitive steps in your workflow and sets up Oh My OpenCode to handle them automatically
Oh My OpenCode 属于「Product Manager」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。