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.

6bnbn ac5d498 783 B Updated

File contents

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.

6bnbn/flowpilot/tree/main/兼容codex@cursor一键安装技能/cursor一键安装技能/skills/dispatching-parallel-agents commit ac5d4988e5

Frequently asked questions

npx skillmds@latest add 6bnbn/dispatching-parallel-agents