ClaudeSuperPower

dispatching-parallel-agents

Skill

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies

Install

git clone https://github.com/obra/superpowers.git ~/.claude/skills/dispatching-parallel-agents

What is dispatching-parallel-agents?

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies

What this can do

Capabilities declared in this component's own frontmatter — not inferred.

Inherit all session tools

Declares no tool restrictions — inherits every session tool

~27 tokens of context used while enabled, before you invoke anything

Documentation

README · ~4 min read

Dispatching Parallel Agents

Overview

You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history — you construct exactly what they need. This also preserves your own context for coordination work.

When you have multiple unrelated failures (different test files, different subsystems, different bugs), investigating them sequentially wastes time. Each investigation is independent and can happen in parallel.

Core principle: Dispatch one agent per independent problem domain. Let them work concurrently.

When to Use

digraph when_to_use {
    "Multiple failures?" [shape=diamond];
    "Are they independent?" [shape=diamond];

Reviews

Log in to leave a review.

No reviews yet — be the first.

Explore related

Other things in this space — across every part of the ecosystem, not just skills.