---
name: Orchestration
slug: orchestration
category: AI Engineering
description: Orchestration coordinates multiple AI agents for task decomposition, parallel execution, and conflict resolution. Use it when you need multi-agent collaboration or parallel processing in complex coding workflows.
github: "https://github.com/fengshao1227/ccg-workflow/tree/main/templates/skills/domains/orchestration"
language: Go
stars: 5824
forks: 443
install: "npx degit https://github.com/fengshao1227/ccg-workflow/tree/main/templates/skills/domains/orchestration ~/.claude/skills/orchestration"
installs_to: ~/.claude/skills/orchestration
source_path: templates/skills/domains/orchestration/SKILL.md
collection_size: 25
category_size: 2451
collection_url: "https://dirskills.com/collections/fengshao1227/ccg-workflow"
added: 2026-08-15T06:52:31.767Z
last_synced: 2026-08-15T06:52:31.767Z
canonical_url: "https://dirskills.com/skills/orchestration"
---

# Orchestration

Orchestration coordinates multiple AI agents for task decomposition, parallel execution, and conflict resolution. Use it when you need multi-agent collaboration or parallel processing in complex coding workflows.

**Install:**

```bash
npx degit https://github.com/fengshao1227/ccg-workflow/tree/main/templates/skills/domains/orchestration ~/.claude/skills/orchestration
```

## README

# 🕸 协同编排秘典

## 知识主题

| 主题 | 文档 | 涵盖 |
|------|------|------|
| 多Agent协同 | [multi-agent.md](multi-agent.md) | 角色定义、任务分解、通信协议、冲突解决、状态共享 |

## 使用场景

- 大型任务分解
- 多文件并行处理
- 复杂系统重构
- 跨模块协同开发
- 紧急多点修复

## Codex 强化要点

- 优先使用 `spawn_agent/send_input/wait/close_agent` 形成闭环。
- 代码探索优先 `explorer`，执行改动使用 `worker`，长耗时任务使用 `awaiter`。
- 每个文件同一时刻仅允许一个 Agent 写入，先锁文件再并行。
