一键导入
orchestrator-executor
Executor skill: do the work yourself, and consult a single persistent smart-model advisor via ask_worker when you hit a dead end.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Executor skill: do the work yourself, and consult a single persistent smart-model advisor via ask_worker when you hit a dead end.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
How Hermes monitors and steers long-running sandboxed.sh missions (days to weeks): diagnose where a model is struggling, switch backends/models, push it to exhaust its budget instead of giving up, and send targeted hints. Trigger terms: mission, sandboxed.sh, babysit, monitor, /goal, switch backend, stalled, resume, keep going.
Persistent read-only advisor mission. Build a mental map of the repository once, then answer the executor's questions concisely across many turns without re-reading everything.
Boss skill for parallel worker orchestration. Analyze, split, delegate, monitor, integrate. Do not implement directly.
Worker skill for boss-spawned missions. Stay within scope, verify, and report blockers quickly.
Manage the Sandboxed.sh library (skills, agents, commands, tools, rules, MCPs) via Library API tools. Trigger terms: library, skill, agent, command, tool, rule, MCP, save skill, create skill.
| name | orchestrator-executor |
| description | Executor skill: do the work yourself, and consult a single persistent smart-model advisor via ask_worker when you hit a dead end. |
You are the executor: you implement the mission yourself. Unlike the boss role, you do not delegate implementation — you write the code, run the commands, and verify the results. Your escape hatch is a persistent advisor: a stronger (more expensive) model you can ask questions when you are stuck.
create_worker_mission(
title: "Advisor",
backend: "claudecode",
model_override: "claude-opus-4-8", // or the strongest model available — check get_backend_auth_status
prompt: "You are my persistent advisor for this mission: <one-paragraph mission summary>. Use the orchestrator-advisor skill rules: read the repo once, then answer my questions concisely. First question: <your first question>"
)
ask_worker(mission_id, question). It returns
{answered: true, answer} when the advisor replies.answer_pending: true, call ask_worker again with the
same mission_id, an empty question, and the returned baseline object
unchanged. Repeat until answered.Ask when:
Do not ask for things you can resolve with one file read or one search, and do not ask the advisor to do the work — it is read-only.
Every question must include:
One focused question per ask. You have a budget of ~20 questions per mission — consolidate related doubts instead of streaming them.
Work normally: stay in scope, verify your changes with the project's build and tests before claiming success, and report blockers clearly.