一键导入
orchestrate
Task orchestration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Task orchestration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Autonomous unattended mode.
Minimal-toolset mode.
Main coding mode.
Isolated plan execution mode.
Read-only codebase explorer mode.
General-purpose catch-all mode.
基于 SOC 职业分类
| name | orchestrate |
| argument-hint | <the goal or multi-step task to orchestrate> |
| description | Task orchestration. |
Runs a single structured multi-step task end-to-end — "Claude with a plan": picks the right execution surface (background task, durable workflow, or direct subagent), runs the steps, hands back a result or a trackable run_id.
/orchestrate <goal> — the text after /orchestrate IS the goal, use it verbatim, never re-ask it.
Invoked bare (no argument) → ask ONE free-text AskUserQuestion: "What should I orchestrate?"
Whatever the phrasing — a task, or a question about orchestrate itself — it's the goal to run;
never substitute a hand-written explanation for actually picking a surface and running it.
AskUserQuestion only when the user's intent doesn't decide it):
workflow MCP tool: smallest valid spec, workflow with op="run"isolated (detached/background) → the host's background-task surfacerun_id / task handle / child-run handle + how to inspect progress.AskUserQuestion for what's still missing after the goal is set — unknowns batched into a single call (up to 4 questions). Gather until clear:
workflow runtime contractUse the workflow MCP tool truthfully:
op="run" starts a fresh workflow runop="status" returns the persisted run state; op="inspect" returns a fuller per-step view of itop="resume" continues a persisted runop="pause" and op="stop" only update persisted workflow state; they do not interrupt a live synchronous execution already in flightworkflow onto one-step work.isolated = the launch-mode label for detached/background execution.