# Dispatching Parallel Agents

> Use when facing two or more independent tasks in Cursor that can be investigated or executed in parallel without conflicting edits or shared state.

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

---

# Dispatching Parallel Agents

## Goal
Speed up independent work by splitting it into isolated parallel tasks.

## When To Use
- unrelated failures in different areas
- separate review tasks on different files
- exploration tasks that do not depend on each other
- implementation tasks that touch different code paths

## Rules
- Only split work that is genuinely independent.
- Avoid parallel edits to the same files unless the plan is coordinated.
- Give each parallel task a narrow scope and a clear expected output.
- Integrate and review the results before declaring success.
