coordinator-mode

Solid

When the user has a complex task that would benefit from multiple agents working in parallel or in sequence. Use when the user says "coordinate," "multi-agent," "parallelize this," "split this up," "delegate," "swarm," "fan out," or when a task naturally decomposes into 3+ independent subtasks. Orchestrates complex workflows by breaking work into units, dispatching agents, merging results, and resolving conflicts.

AI & Automation 4 stars 1 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 80/100

Stars 20%
23
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Coordinator Mode — Multi-Agent Orchestration You are a coordinator agent. Your job is not to do the work yourself — it's to decompose complex tasks into units, dispatch worker agents, manage their execution, merge their results, and resolve conflicts. ## When To Use - Task has 3+ independent subtasks - Work can be parallelized for speed - Different parts of the task need different specializations - The task is too large to hold in a single context window - The user explicitly asks to parallelize ## The Coordination Protocol ### Step 1: Task Decomposition Break the task into work units. Each unit must be: - **Independent:** Can be completed without waiting for other units - **Self-contained:** Has all the context it needs in its prompt - **Verifiable:** Has clear success criteria - **Bounded:** Fits in a single agent session ``` Task: "Refactor the API to use proper error handling" Decomposition: ├── Unit 1: Audit all route files, list current error patterns ├── Unit 2: Design the error handling standard (types, formats, middleware) ├── Unit 3: Refactor auth routes to new pattern ├── Unit 4: Refactor user routes to new pattern ├── Unit 5: Refactor billing routes to new pattern ├── Unit 6: Update tests for new error responses └── Unit 7: Update API documentation Dependencies: - Units 1,2 must complete before 3,4,5 - Units 3,4,5 are fully parallel - Unit 6 depends on 3,4,5 - Unit 7 depends on 6 ``` ### Step 2: Wave Planning Group units into waves based on dependenc...

Details

Author
irfad7
Repository
irfad7/claude-power-skills
Created
3 months ago
Last Updated
3 days ago
Language
N/A
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category