원클릭으로
orchestrate
Task orchestration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Task orchestration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Autonomous unattended mode.
Minimal-toolset mode.
Main coding mode.
Isolated plan execution mode.
Read-only codebase explorer mode.
General-purpose catch-all mode.
| 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.