From beads-superpowers
Dispatches parallel agents for independent tasks, enabling concurrent work on multiple bug investigations or subsystem changes without shared state.
How this skill is triggered — by the user, by Claude, or both
Slash command
/beads-superpowers:dispatching-parallel-agentsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
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 independent tasks — whether bug investigations, plan tasks, or subsystem changes — executing them sequentially wastes time. Each task is independent and can happen in parallel, provided each agent gets its own isolated workspace.
Core principle: Dispatch one agent per independent problem domain. Let them work concurrently.
digraph when_to_use {
"Multiple failures?" [shape=diamond];
"Are they independent?" [shape=diamond];
"Single agent investigates all" [shape=box];
"One agent per problem domain" [shape=box];
"Can they work in parallel?" [shape=diamond];
"Sequential agents" [shape=box];
"Parallel dispatch" [shape=box];
"Multiple failures?" -> "Are they independent?" [label="yes"];
"Are they independent?" -> "Single agent investigates all" [label="no - related"];
"Are they independent?" -> "Can they work in parallel?" [label="yes"];
"Can they work in parallel?" -> "Parallel dispatch" [label="yes"];
"Can they work in parallel?" -> "Sequential agents" [label="no - shared state"];
}
Use when:
Don't use when:
Group failures by what's broken:
Each domain is independent - fixing tool approval doesn't affect abort tests.
Each agent gets:
// In Claude Code / AI environment
Task("Fix agent-tool-abort.test.ts failures")
Task("Fix batch-completion-behavior.test.ts failures")
Task("Fix tool-approval-race-conditions.test.ts failures")
// All three run concurrently
When agents return:
Good agent prompts are:
Fix the 3 failing tests in src/agents/agent-tool-abort.test.ts:
1. "should abort tool with partial output capture" - expects 'interrupted at' in message
2. "should handle mixed completed and aborted tools" - fast tool aborted instead of completed
3. "should properly track pendingToolCount" - expects 3 results but gets 0
These are timing/race condition issues. Your task:
1. Read the test file and understand what each test verifies
2. Identify root cause - timing issues or actual bugs?
3. Fix by:
- Replacing arbitrary timeouts with event-based waiting
- Fixing bugs in abort implementation if found
- Adjusting test expectations if testing changed behavior
Do NOT just increase timeouts - find the real issue.
Return: Summary of what you found and what you fixed.
❌ Too broad: "Fix all the tests" - agent gets lost ✅ Specific: "Fix agent-tool-abort.test.ts" - focused scope
❌ No context: "Fix the race condition" - agent doesn't know where ✅ Context: Paste the error messages and test names
❌ No constraints: Agent might refactor everything ✅ Constraints: "Do NOT change production code" or "Fix tests only"
❌ Vague output: "Fix it" - you don't know what changed ✅ Specific: "Return summary of root cause and changes"
Related failures: Fixing one might fix others - investigate together first Need full context: Understanding requires seeing entire system Exploratory debugging: You don't know what's broken yet Shared state: Agents would interfere (editing same files, using same resources) Single task: Only one task remaining — no parallelism benefit Same files: Tasks that modify the same files — merge conflicts likely even with worktree isolation
Invoked by:
Invokes: None — this is a dispatch pattern skill, not a pipeline skill.
Subagent-Driven Development uses this skill's pattern — not the skill itself — when executing plans with independent tasks.
How SDD uses the pattern:
bd ready --parent <epic-id> (tasks with no unresolved dependencies)bd worktree per task — subagent receives path, never creates worktrees itselfAgent tool calls (max 5 per batch)Key difference from standalone use: In SDD, the orchestrator manages the full lifecycle (worktree creation → dispatch → review → merge → cleanup). This skill describes the dispatch pattern; SDD adds the orchestration layer.
Example — plan task execution with per-task worktrees:
Orchestrator identifies 3 unblocked tasks (no deps between them):
Task A: Add validation to user input (touches src/validation.py)
Task B: Add logging middleware (touches src/middleware.py)
Task C: Update API docs (touches docs/api.md)
Orchestrator creates per-task worktrees:
bd worktree create task-a --branch feature/epic/task-a
bd worktree create task-b --branch feature/epic/task-b
bd worktree create task-c --branch feature/epic/task-c
Dispatches 3 subagents in parallel (one Agent call each, same message):
Agent 1 → "Work from: .worktrees/task-a" → implements validation
Agent 2 → "Work from: .worktrees/task-b" → implements middleware
Agent 3 → "Work from: .worktrees/task-c" → updates docs
After all 3 pass review:
git merge feature/epic/task-a (in epic worktree)
git merge feature/epic/task-b
git merge feature/epic/task-c
bd worktree remove task-a task-b task-c
Run full test suite → integration check
Concurrent orchestrators (optional —
bd merge-slot): The merges above are run by a single orchestrator, one at a time, so there is no merge race in the normal flow. If two or more orchestrators or sessions ever run this pattern concurrently against the same repo, serialize their merges with the beads v1.0.5 merge slot:bd merge-slot createonce, thenbd merge-slot acquirebefore eachgit mergeandbd merge-slot releaseafter — so only one orchestrator resolves conflicts at a time.
Scenario: 6 test failures across 3 files after major refactoring
Failures:
Decision: Independent domains - abort logic separate from batch completion separate from race conditions
Dispatch:
Agent 1 → Fix agent-tool-abort.test.ts
Agent 2 → Fix batch-completion-behavior.test.ts
Agent 3 → Fix tool-approval-race-conditions.test.ts
Results:
Integration: All fixes independent, no conflicts, full suite green
Time saved: 3 problems solved in parallel vs sequentially
After agents return:
If you discovered something reusable, capture it before closing:
# Only if worth preserving for future sessions:
bd remember "parallel: <coordination pattern>"
From debugging session (2025-10-03):
npx claudepluginhub dollardill/beads-superpowers --plugin beads-superpowersDispatches parallel agents to investigate multiple independent failures or tasks concurrently, avoiding sequential bottlenecks.
Dispatches isolated agents to investigate or fix multiple independent problems in parallel (e.g., separate failing test files, unrelated subsystems). Saves time by avoiding sequential debugging when problems don't share state or dependencies.
Dispatches parallel agents or subagents for 2+ independent tasks without shared state, like multiple test failures or broken subsystems. Chooses team/subagent mode via env vars.