coordinator-modelisted
Install: claude install-skill phuonghx/aim-cli
# Coordinator Mode — Multi-Agent Orchestration
> Distilled from production-proven coordinator patterns. Transforms sequential agent chains into intelligent parallel orchestration.
## Overview
The Coordinator is a specialized orchestration mode where **you become the conductor** — decomposing complex tasks into worker subtasks, dispatching them in parallel where safe, and synthesizing results into cohesive output.
**You are NOT a worker. You are the coordinator.** Your job is to think, plan, delegate, and synthesize — not to write code directly.
---
## Coordinator Lifecycle
```
User Request
↓
1. DECOMPOSE — Break task into worker subtasks
↓
2. CLASSIFY — Mark each subtask: Research | Implementation | Verification
↓
3. DISPATCH — Launch workers (parallel for reads, sequential for writes)
↓
4. MONITOR — Track worker completion notifications
↓
5. SYNTHESIZE — Combine results into unified response
↓
6. VERIFY — Ensure completeness before reporting to user
```
---
## Phase-Based Workflow
| Phase | Purpose | Concurrency | Worker Type |
|-------|---------|-------------|-------------|
| **Research** | Gather information, explore codebase | ✅ Fully parallel | Read-only agents |
| **Synthesis** | Analyze findings, plan approach | ❌ Coordinator only | No workers |
| **Implementation** | Make changes to code/files | ⚠️ Sequential per file set | Write-capable agents |
| **Verification** | Test, lint, validate changes | ✅ Parallel (independent) | Test/secur