dispatching-parallel-agents

Dispatch independent tasks to parallel agents with isolated context and focused scopes.

Updated Sep 19, 2026
One-click install
npx skills add https://github.com/Ab0umar/selrs.cc.BU --skill dispatching-parallel-agents-ab0umar
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: dispatching-parallel-agents
Source: https://github.com/Ab0umar/selrs.cc.BU/tree/main/.codex/plugins/cache/openai-curated/superpowers/dc902811/skills/dispatching-parallel-agents
Command: npx skills add https://github.com/Ab0umar/selrs.cc.BU --skill dispatching-parallel-agents-ab0umar

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Investigating multiple unrelated failures sequentially wastes time and bloats your working context. This Skill provides a structured pattern for splitting independent problems across concurrent agents, each with precisely crafted instructions and no inherited session history. ## Core Features & Use Cases - Independence Decision Framework: A decision flowchart and criteria to determine whether failures are independent enough for parallel dispatch or require sequential investigation. - Agent Prompt Structure: A proven template for writing focused, self-contained agent tasks with specific scope, constraints, and expected output format. - Common Mistakes Guide: Concrete examples contrasting vague prompts ("fix all the tests") with effective ones (specific file, error messages, constraints). - Use Case: After a major refactoring leaves 6 test failures across 3 files, dispatch one agent per test file concurrently, then review summaries, check for conflicts, and run the full suite to integrate all fixes. ## Quick Start Ask the AI to dispatch one parallel agent per failing test file, giving each agent the specific test names, error messages, and a constraint to not modify unrelated code.

Frequently Asked Questions about dispatching-parallel-agents

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run multiple AI agents in parallel on different tasks?▼

Identify independent problem domains, write a focused self-contained prompt for each agent with specific scope and constraints, then dispatch all agents concurrently. Review each returned summary and verify the fixes do not conflict before integrating.

When should I use parallel agents instead of sequential debugging?▼

Use parallel agents when failures are independent, such as 3 or more test files failing with different root causes, and no shared state exists between investigations. Avoid parallel dispatch when failures are related or understanding requires full system context.

What makes a good prompt for a delegated agent task?▼

A good agent prompt is focused on one problem domain, self-contained with all needed context such as error messages and test names, explicit about constraints like not changing production code, and specific about the expected output summary.

Should parallel agents inherit my session context and history?▼

No. Agents should never inherit your session context. You construct exactly the instructions and context each agent needs, which keeps them focused on their task and preserves your own context for coordination work.

What are the risks of dispatching parallel agents?▼

Agents can interfere when they edit the same files or share state, and they can make systematic errors. After dispatch, review each summary, check for conflicting edits, run the full test suite, and spot check the changes.