subagent-orchestration
SolidPatterns for delegating work to parallel subagents with Claude Fable 5 — when to split tasks, async coordination, long-lived workers, and fresh-context verifiers. Use when designing multi-agent harnesses, when a large task has independent parts, when runs bottleneck on sequential steps, or when self-review keeps missing its own mistakes.
Install
Quality Score: 78/100
Skill Content
Details
- Author
- kpab
- Repository
- kpab/claude-fable-5-skills
- Created
- 1 months ago
- Last Updated
- 5 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
orchestration
Delegate work to subagents safely and efficiently - decide how many subagents to run, keep parallel tracks on disjoint files, monitor them without flooding your context, inherit security to every subagent, and use return-and-resume so a subagent can ask a question and continue with full context. Use whenever you are about to spawn one or more subagents, run work in parallel, or coordinate delegated tasks. Applies to any agent that delegates, including subagents that spawn their own helpers.
subagent-driven-development
Explains how an AI orchestrator should delegate implementation, sequencing, and verification to subagents rather than doing the work directly, including how to route tasks to models by capability need. Use when implementing a work item, when deciding whether to spawn a subagent, when an orchestrating agent is about to write code or run commands itself, or when someone asks "should I use a subagent for this", "how do I split work across agents", or "which model should handle this step".
subagents
Use when delegating work to a separate agent with its own context. Covers when delegation pays off, designing a subagent's scope and prompt, parallel fan-out, and the cost of a cold start.