# Dispatching Parallel Agents

> Use when: multiple independent coding, debugging, or research tasks can be investigated in parallel.

- Skill: `kimtth/dispatching-parallel-agents` (Agent Skill)
- Install (CLI): `npx skillmds@latest add kimtth/dispatching-parallel-agents`
- Raw SKILL.md: https://api.skillmd.com/api/skills/kimtth/dispatching-parallel-agents/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: kimtth (https://skillmd.com/u/kimtth)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/kimtth/dispatching-parallel-agents

---


Goal: split independent work into isolated agent investigations without losing coordination.

Use for:
- unrelated failing tests across subsystems
- several candidate root causes that do not share state
- broad codebase research where results can be merged later
- independent issue slices after a plan is approved

Do not use for:
- one bug with shared root cause
- tasks that edit the same files concurrently
- work requiring a single global design decision

Workflow:
1. Group tasks by independent problem domain.
2. Write each subtask with exact scope, files, commands, and output format.
3. Give each agent only the context it needs.
4. Ask for evidence, not just conclusions.
5. Merge results, resolve conflicts, and choose next action.

Output:
- task split: domain | reason independent | assigned prompt
- returned findings: evidence | recommendation | risk
- integration decision

Rules:
- one agent per independent domain
- never let agents edit the same file in parallel
- keep main session responsible for final integration

