dispatch-multiple-agents

Installation
SKILL.md

Dispatch Multiple Agents

When you have multiple independent tasks, don't do them sequentially. Dispatch agents to work in parallel.

When to Use

Use when:

  • 3+ independent tasks need attention
  • Tasks don't share state or resources
  • No dependencies between tasks
  • Speed matters

Don't use when:

  • Tasks are related (fixing one might fix others)
  • Tasks share files/resources (would conflict)
  • You need full system context for all tasks
  • Tasks must happen in specific order

The Pattern

Installs
3
Repository
openclaw/skills
GitHub Stars
4.5K
First Seen
Feb 3, 2026
dispatch-multiple-agents — openclaw/skills