dispatching-parallel-agents

Dispatch concurrent subagents to fix independent failures across separate problem domains.

Updated Jul 9, 2026
One-click install
npx skills add https://github.com/ByronWilliamsCPA/plugin --skill dispatching-parallel-agents-byronwilliamscpa
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: dispatching-parallel-agents
Source: https://github.com/ByronWilliamsCPA/plugin/tree/main/plugins/wff-code/skills/dispatching-parallel-agents
Command: npx skills add https://github.com/ByronWilliamsCPA/plugin --skill dispatching-parallel-agents-byronwilliamscpa

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Investigating multiple unrelated failures sequentially wastes time, and naive parallel fan-outs cause write collisions, stale-snapshot rework, and lost findings. This Skill provides a disciplined pattern for delegating independent tasks to concurrent agents with isolated context. ## Core Features & Use Cases - Parallel Fan-Out Pattern: Dispatch one agent per independent problem domain with focused, self-contained prompts covering scope, goal, constraints, and expected output. - Collision & Concurrency Safeguards: Ground-truth reconnaissance of branches, PRs, and worktrees; write-set partitioning; shared-index commit guards; and feasibility gates before dispatch. - Read-Only Evaluation Fan-Outs: A dual output contract (per-agent detail files plus fixed-schema summaries) for audits and rubric-based assessments where findings fidelity matters more than edits. - Use Case: Three test files fail for different reasons (tool approval, batch completion, abort handling). Dispatch three agents concurrently, each fixing one file, then review and integrate their summaries. ## Quick Start Dispatch one parallel agent per failing test file to investigate and fix each independent failure concurrently, then review and integrate their results.

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?▼

Dispatch one agent per independent problem domain with a focused, self-contained prompt specifying scope, goal, constraints, and expected output. Each agent gets isolated context constructed by you, never your session history, so they work concurrently without interference.

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

Use parallel dispatch when failures are independent, such as multiple test files failing with different root causes or separate subsystems broken without shared state. Avoid it when failures are related, when fixes might overlap, or when agents would write to the same files.

How do I prevent parallel agents from conflicting on the same files?▼

Partition work by write-set, not by task list: trace each fix to its actual edit sites and assign each file to exactly one agent. Reserve shared aggregator files for the dispatcher, and commit with explicit pathspecs after re-verifying branch and index state.

What should a parallel agent prompt include?▼

Include a specific scope, clear goal, constraints on what not to change, and the expected return format. Provenance-stamp any measured facts with source paths and dates, label unverified claims, and state out-of-scope blockers as STOP-and-report conditions rather than silent route-arounds.

How do parallel agents handle read-only audits differently from code fixes?▼

Read-only evaluation fan-outs skip collision safeguards but need a dual output contract: each agent writes full detail to its own scratch file and returns a compact summary under fixed headings. This keeps findings comparable and prevents truncation or loss during synthesis.

Why do parallel agents produce inconsistent results on uniform edits?▼

Agents diverge when the prompt pins only the core edit but not its edges, such as whether to update sibling references to a renamed value. State the follow-on scope explicitly in one sentence so every agent produces coherent, uniform output.