coordination-strategies

Multi-Agent Coordination Strategies

Content Preview
# Multi-Agent Coordination Strategies

## Patterns

### Fan-Out / Fan-In

The simplest and most common pattern. One coordinator dispatches the same task to N agents, waits for all to complete, then evaluates.

```
         ┌─ Agent 1 ─┐
Task ──> ├─ Agent 2 ─┤ ──> Evaluate ──> Merge Winner
         └─ Agent 3 ─┘
```

**When to use**: Optimization tasks, competitive solutions, exploring diverse approaches, competing content drafts, vendor evaluation.

**Agent count**: 2-5 (diminishing returns beyo
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/coordination-strategies.md \
  https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/agenthub/references/coordination-strategies.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/alirezarezvani/claude-skills

Then reference at engineering/agenthub/references/coordination-strategies.md

Related Skills