AgentSkillsCN

orchestration

规划、编排并执行多步骤的实施任务。在撰写方案、将方案拆解为任务、执行方案、派遣并行代理、以子代理驱动开发,或完成开发分支时使用此功能。

SKILL.md
--- frontmatter
name: orchestration
description: Plan, orchestrate, and execute multi-step implementation tasks. USE WHEN writing plans, breaking plans into tasks, executing plans, dispatching parallel agents, subagent-driven development, or finishing development branches.

Orchestration

End-to-end workflow for planning, executing, and completing multi-step development tasks.

Workflow Routing

WorkflowTriggerFile
Write Plan"write a plan", "create implementation plan", spec/requirements readyworkflows/write-plan.md
Orchestrate Tasks"break into tasks", after plan is written/approvedworkflows/orchestrate.md
Execute Plan"execute the plan", "implement the plan" in separate sessionworkflows/execute.md
Subagent Dev"execute with subagents", implement in current sessionworkflows/subagent-dev.md
Parallel Dispatch2+ independent tasks, no shared stateworkflows/parallel-dispatch.md
Finish Branchimplementation complete, ready to merge/PR/cleanupworkflows/finish-branch.md

Typical Pipeline

code
WritePlan → Orchestrate → Execute/SubagentDev (using ParallelDispatch) → FinishBranch

Quick Decision

  • Have requirements, no plan yet?WritePlan
  • Have plan, need task graph?Orchestrate
  • Have tasks, need execution?Execute (new session) or SubagentDev (this session)
  • Multiple independent tasks?ParallelDispatch
  • All tasks done?FinishBranch