agenthub
AgentHub - Multi-Agent DAG Orchestration
Category: Engineering / AI Agents Maintainer: Claude Skills Team
Overview
AgentHub provides patterns and tools for orchestrating multiple AI agents as a directed acyclic graph (DAG). Instead of one agent doing everything sequentially, AgentHub lets you decompose complex tasks into sub-tasks, assign each to a specialized agent, define dependencies between them, and merge their outputs into a coherent result.
The core insight: complex tasks decompose better than they scale. A 10-step sequential task run by one agent hits context limits and quality degradation. Five parallel agents with clear scopes and a merge step produce better results faster.
Sub-Skills
This skill uses compound sub-skill architecture. Each sub-skill in skills/ handles a stage of the orchestration lifecycle:
| Sub-Skill | File | Purpose |
|---|---|---|
| Init | skills/init.md |
Initialize a multi-agent workflow definition |
| Run | skills/run.md |
Execute a defined workflow end-to-end |
| Spawn | skills/spawn.md |
Spawn individual agents within a workflow |