Dispatching Parallel Agents
Summary
Run two or more genuinely independent tasks concurrently, with the briefing and isolation that makes it safe.
Features
- Identifies genuinely independent work safe to parallelise
- Briefs each agent so results come back usable
- Avoids shared-state collisions between agents
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Description
When several tasks share no state and no ordering dependency, running them sequentially is just slower. This skill covers doing it properly.
The hard part is judging independence correctly. The skill provides the test — do these tasks touch the same files, does one need the other's output, do they share a resource — and the discipline to fall back to sequential execution when the answer is unclear.
It also covers briefing each agent with enough context to work alone, structuring results so they can be merged, and reviewing the combined output rather than assuming parallel work composes cleanly.
Part of the Superpowers collection.
Related Skills
Deno Guidance
by Deno
Deno's official foundational skill — project setup, package choices, configuration, and CLI commands done the current way.
Gradio App Builder
by Hugging Face
Build Gradio web UIs and ML demos in Python with the current API — components, layouts, events, and chat interfaces.
Cloudflare Platform
by Cloudflare
Cloudflare's official platform skill — Workers, Pages, storage, AI, networking, security, and IaC in one reference.
Verification Before Completion
by Jesse Vincent
Never claim work is complete, fixed, or passing without running the check and reading the output first.