Loading...
Loading...
Expert in designing, orchestrating, and managing multi-agent systems (MAS). Specializes in agent collaboration patterns, hierarchical structures, and swarm intelligence. Use when building agent teams, designing agent communication, or orchestrating autonomous workflows.
npx skill4agent add 404kidwiz/claude-supercode-skills agent-organizerAgent System Design:
├── Single task, no coordination → Single agent
├── Parallel independent tasks → Worker pool pattern
├── Sequential dependent tasks → Pipeline pattern
├── Complex interdependent tasks
│ ├── Clear hierarchy → Hierarchical orchestration
│ ├── Peer collaboration → Swarm/consensus pattern
│ └── Dynamic roles → Adaptive agent mesh
└── Human-in-the-loop → Supervisor pattern| Anti-Pattern | Problem | Correct Approach |
|---|---|---|
| God agent | Single agent doing everything | Decompose into specialized agents |
| Chatty agents | Excessive inter-agent messages | Batch communications, async where possible |
| Tight coupling | Agents depend on internal state | Use contracts and interfaces |
| No supervision | Agents run without oversight | Add supervisor or human-in-loop |
| Shared mutable state | Race conditions and conflicts | Use message passing or event sourcing |