# dispatching-parallel-agents

> Claude/Codex skill by [@obra](https://omgskills.com/library/obra/index.md) · 280k stars · 188k installs · Updated 2026-08-29

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

Tags: ai, brainstorming, coding, obra, sdlc, skills, subagent-driven-development, superpowers

## Install

```sh
git clone https://github.com/obra/superpowers /tmp/superpowers && ln -s /tmp/superpowers/skills/dispatching-parallel-agents ~/.claude/skills/dispatching-parallel-agents
```

## From README

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.

## Links

- HTML page: https://omgskills.com/skills/obra/superpowers/dispatching-parallel-agents/
- GitHub: https://github.com/obra/superpowers
- Author: [@obra](https://omgskills.com/library/obra/index.md)

## More from this repo

- [systematic-debugging](https://omgskills.com/skills/obra/superpowers/systematic-debugging/index.md) — Used when encountering any bug, test failure, or unexpected behavior, before proposing fixes
   - [@obra](https://omgskills.com/library/obra/index.md) · 285k stars
- [brainstorming](https://omgskills.com/skills/obra/superpowers/brainstorming/index.md) — You MUST use this before any creative work - creating features, building components, adding functionality, or modifying...
   - [@obra](https://omgskills.com/library/obra/index.md) · 280k stars
- [executing-plans](https://omgskills.com/skills/obra/superpowers/executing-plans/index.md) — Used when you have a written implementation plan to execute in a separate session with review checkpoints
   - [@obra](https://omgskills.com/library/obra/index.md) · 280k stars
