orchestration
SolidDelegate 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.
Install
Quality Score: 80/100
Skill Content
Details
- Author
- Marcel-Bich
- Repository
- Marcel-Bich/marcel-bich-claude-marketplace
- Created
- 6 months ago
- Last Updated
- 5 days ago
- Language
- Shell
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
subagent-delegation
Split work across subagents so each has a focused context, and combine their results deliberately. Use when a task is too large for one context or has independent parallel parts.
subagent-orchestration
Patterns 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.
delegate
Use before delegating any task to an agent — a single Agent() spawn or a whole wave — and whenever the user says "spawn an agent", "delegate this", "parallelize this", "split this work", or "use a subagent". Also applies when choosing a model tier, batching small tasks, or deciding inline-vs-spawn. Reload before every delegation, not once per session.