git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
29 lines
545 B
Markdown
29 lines
545 B
Markdown
# agent-coordination
|
|
|
|
Coordination patterns for multi-agent collaboration.
|
|
|
|
## Coordination Patterns
|
|
|
|
### Hierarchical
|
|
Queen-led with worker specialization
|
|
```bash
|
|
npx claude-flow swarm init --topology hierarchical
|
|
```
|
|
|
|
### Mesh
|
|
Peer-to-peer collaboration
|
|
```bash
|
|
npx claude-flow swarm init --topology mesh
|
|
```
|
|
|
|
### Adaptive
|
|
Dynamic topology based on workload
|
|
```bash
|
|
npx claude-flow swarm init --topology adaptive
|
|
```
|
|
|
|
## Best Practices
|
|
- Use hierarchical for complex projects
|
|
- Use mesh for research tasks
|
|
- Use adaptive for unknown workloads
|