用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Supernor/openclaw-skills --skill multi-engine命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | multi-engine |
| description | Route work to the right engine (Reactor, Sub-reactor, Agents) based on task characteristics |
| tags | ["routing","reactor","gemini","agents","efficiency"] |
| version | 1.0.0 |
Three engines available. Route work to the right one based on task needs.
| Engine | Tool | Strengths | Cost | Trigger |
|---|---|---|---|---|
| Reactor | claude -p via bridge | Deep reasoning, complex code, architecture | Flat rate (time) | bridge.sh send |
| Sub-reactor | gemini-task | Web research, batch ops, file scanning | Free (1000 RPD) | gemini-task "prompt" |
| Agents | oc agent | Domain expertise, memory, tool access | Flat rate (Codex) | oc agent --agent <id> |
Use Reactor when:
Use Sub-reactor (Gemini) when:
Use Agents when:
All three engines can run simultaneously:
# Agent researches while Reactor codes while Gemini scans
oc agent --agent spec-research --message "Research X" --json &
gemini-task "Scan all SKILL.md files for missing versions" --dir /root/.openclaw &
# Reactor handles the heavy lifting in the main flow
Claude Code, Gemini CLI, and OpenClaw all support MCP servers. An MCP server built once works across all three engines.
Agents can use external MCP servers directly — configured per-agent in openclaw.json:
{
"agents": {
"list": [{
"id": "spec-dev",
"mcp": {
"servers": [{
"name": "chartroom",
"command": "node",
"args": ["/path/to/chartroom-mcp.js"],
"type": "stdio"
}]
}
}]
}
}
stdio, sse, http transportsserverName_toolName (prevents collisions)chart tool, gives agents native tool access| Engine | MCP support | Config location |
|---|---|---|
| Claude Code | ~/.claude/settings.json mcpServers | Host |
| Gemini CLI | ~/.gemini/settings.json mcpServers | Host |
| OpenClaw agents | openclaw.json agents.list[].mcp.servers | Container |
| Reactor | Inherits Claude Code's MCP config | Host |
基于 SOC 职业分类