Upgrade a raw multi-agent framework into a Claude Code-style system with memory retrieval, role coordination, evidence-based verification, and safety gates.
Coding
Agent Coordinator
Try itMulti-agent coordination protocol — task distribution, result aggregation, and parallel execution across multiple AI agents. Distilled from Claude Code Team...
What it does
Multi-agent coordination protocol — task distribution, result aggregation, and parallel execution across multiple AI agents. Distilled from Claude Code Team mode.
The skill document
Agent Coordinator
Distilled from Claude Code Team mode (TeamCreate/SendMessage protocol). Coordinates multiple AI agents to work on tasks in parallel, then aggregates results.
When to use
- Parallel data collection (scrape multiple sources)
- Parallel analysis (analyze multiple stocks/documents)
- Task decomposition (break complex task into subtasks)
- Review pipeline (one agent writes, another reviews)
- Ensemble decision (multiple agents vote on a decision)
How it works
- Task Decomposition — Break a complex task into parallel subtasks
- Agent Dispatch — Assign each subtask to an agent worker
- Parallel Execution — Run agents concurrently
- Result Aggregation — Collect and merge results
- Conflict Resolution — Handle conflicting outputs
Usage
`ash
Decompose and run a complex task
python3 {baseDir}/coordinator.py --task "Analyze top 5 tech stocks" --workers 3
Run with custom subtasks
python3 {baseDir}/coordinator.py --subtasks subtasks.json
Review pipeline (one writes, another reviews)
python3 {baseDir}/coordinator.py --pipeline review --input report.md
Ensemble decision
python3 {baseDir}/coordinator.py --ensemble "Should we buy?" --voters 3
Export results
python3 {baseDir}/coordinator.py --task "Research AI trends" --export results.json `
Task format
json [ {"id": "subtask-1", "description": "Analyze AAPL financials", "agent": "analyst"}, {"id": "subtask-2", "description": "Analyze GOOGL financials", "agent": "analyst"}, {"id": "subtask-3", "description": "Compare results", "agent": "reviewer"} ]
Built-in coordination patterns
| Pattern | Description |
|---|---|
| fan-out | Same task to multiple agents, aggregate results |
| pipeline | Agent1 -> Agent2 -> Agent3 (sequential) |
| ensemble | Multiple agents vote, majority wins |
| decompose | Break task into subtasks, run in parallel |
| review | One agent produces, another reviews |
Algorithm reference
Based on Claude Code Team mode:
- Task queue with priority
- Agent worker pool with concurrency limit
- Result aggregation with conflict resolution
- Timeout per subtask
- Progress tracking
Related skills
Coordinate multi-agent swarms for parallel and pipeline workflows. Use when coordinating multiple agents, running parallel reviews, building pipeline workflows, or implementing divide-and-conquer patterns with subagents.
Coordinate deep, source-verifiable research projects in OpenClaw using AgentSkills-compatible folders, local artifact tracking, and explicit evidence ledgers...
Multi-Agent Communication Protocol — 通用多智能体通信框架。用于在 OpenClaw 中编排多个 Agent 之间的结构化通信、任务委派和协同工作。适用场景:(1) 在主 Agent 与子 Agent 之间传递消息 (2) 多个独立 Agent(如 QClaw、学术助手、学生工...
Agent协作模式,提供多Agent任务委派、并行执行、结果汇总的完整方法论。触发词:Agent协作、多Agent、任务委派、并行执行、团队协作、meta-skill-system
A comprehensive governance system for managing agent roles, responsibilities, handoff policies, and conflict resolution in multi-agent environments