Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies.
Scanned 5/29/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill dispatching-parallel-agents --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dispatching Parallel Agents?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-dispatching-parallel-agents)More formats (shields.io, HTML) on the badges page.
---
name: dispatching-parallel-agents
description: Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies.
---
# Dispatching Parallel Agents
## Overview
One agent per independent problem domain. Let them work concurrently.
**Core principle:** Dispatch one agent per independent problem domain.
## When to Use
- 3+ test files failing with different root causes
- Multiple subsystems broken independently
- Each problem understood without context from others
- No shared state between investigations
## When NOT to Use
- Failures are related (fix one might fix others)
- Need full system state understanding
- Agents would interfere (editing same files)
## Process
1. Identify independent domains
2. Dispatch agents in parallel (ctx.parallel.all)
3. Check for conflicts between solutions
4. Run full test suite to verify integration
## Agents Used
- Process agents defined in `dispatching-parallel-agents.js`
## Tool Use
Invoke via babysitter process: `methodologies/superpowers/dispatching-parallel-agents`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!