multi-agent-orchestration
SolidCoordinate multiple AI agents for complex tasks — decomposition, delegation, and synthesis
AI & Automation 3 stars
1 forks Updated yesterday MIT
Install
Quality Score: 82/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Multi-Agent Orchestration Skill
> Decompose complex problems into agent-appropriate subtasks, delegate effectively, and synthesize results.
## ⚠️ Rapid Evolution Domain
Multi-agent patterns are evolving rapidly. This skill captures stable patterns while acknowledging the field is in flux.
**Refresh triggers:**
- New orchestration frameworks (LangGraph, AutoGen, CrewAI releases)
- Claude/GPT native multi-agent features
- VS Code Copilot agent architecture changes
**Last validated:** February 2026
---
## Core Concepts
### When to Use Multi-Agent
| Scenario | Single Agent | Multi-Agent |
|----------|--------------|-------------|
| Simple code edit | ✅ | ❌ Overkill |
| Multi-file refactor | ✅ (if capable model) | ⚠️ Consider |
| Research + implement | ⚠️ Long context | ✅ Decompose |
| Cross-domain task | ❌ Context overload | ✅ Specialists |
| Parallel independent work | ❌ Sequential | ✅ Parallel agents |
### Agent Roles
| Role | Responsibility | Example |
|------|---------------|---------|
| **Orchestrator** | Decompose, delegate, synthesize | Main chat session |
| **Specialist** | Deep expertise in one domain | Security reviewer agent |
| **Worker** | Execute well-defined subtask | "Find all usages of X" |
| **Critic** | Validate, review, improve | Code review agent |
---
## Decomposition Patterns
### 1. **Horizontal Decomposition** (Parallel)
Split task into independent subtasks that can run simultaneously.
```
┌─────────────────┐
│ Orchestrator │
└──────...
Details
- Author
- fabioc-aloha
- Repository
- fabioc-aloha/Alex_Skill_Mall
- Created
- 3 months ago
- Last Updated
- yesterday
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
agentic-orchestration
Patterns for multi-agent coordination, task decomposition, handoffs, and workflow orchestration. Best practices for building and managing agent systems.
6 Updated today
frankxai AI & Automation Listed
multi-agent-orchestration
Multi-agent fan-out/fan-in workflows — supervisor delegation, conflict resolution, and parallel research pipeline synthesis
6 Updated today
ArieGoldkin AI & Automation Listed
multi-agent-supervisor
Hierarchical multi-agent orchestration supervisor that decomposes tasks, delegates to specialized worker agents, tracks state, and employs triumvirate consensus for high-stakes operations
4 Updated 4 days ago
AreteDriver