dispatch-multiple-agents

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies. Dispatch subagents to work concurrently.

7 stars

Best use case

dispatch-multiple-agents is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies. Dispatch subagents to work concurrently.

Teams using dispatch-multiple-agents should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/dispatch-multiple-agents/SKILL.md --create-dirs "https://raw.githubusercontent.com/Demerzels-lab/elsamultiskillagent/main/public/skills/arisylafeta/clawlist/dispatch-multiple-agents/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/dispatch-multiple-agents/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How dispatch-multiple-agents Compares

Feature / Agentdispatch-multiple-agentsStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies. Dispatch subagents to work concurrently.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 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

### 1. Identify Independent Domains

Group work by what's needed:
- Task A: Research competitor A
- Task B: Research competitor B  
- Task C: Research competitor C

Each is independent.

### 2. Create Focused Tasks

Each subagent gets:
- **Specific scope:** One clear task
- **All context needed:** Don't make them hunt
- **Clear output:** What should they return?
- **Constraints:** What NOT to touch

### 3. Dispatch in Parallel

Using sessions_spawn for concurrent execution.

### 4. Review and Integrate

When agents return:
- Read each result
- Verify no conflicts
- Integrate findings
- Report summary

## Integration with Other Skills

Use dispatch-multiple-agents WITHIN the workflow:

```
brainstorming → write-plan → dispatch-multiple-agents → verify-task
                                   ↓
                            doing-tasks (per subagent)
```

## Example

**Problem:** Research 5 competitors

**Dispatch:**
- Agent 1 → Competitor A
- Agent 2 → Competitor B
- Agent 3 → Competitor C
- Agent 4 → Competitor D
- Agent 5 → Competitor E

**Result:** Full analysis in minutes, not hours.

Related Skills

ooze-agents

7
from Demerzels-lab/elsamultiskillagent

Visual identity that evolves with reputation - create and nurture your agent's digital creature with XP and evolution stages

agentspend

7
from Demerzels-lab/elsamultiskillagent

Use this skill when you need to: search the web, generate images or pictures, create videos, scrape or read.

agentscale

7
from Demerzels-lab/elsamultiskillagent

Deploy web apps and APIs to a public URL with a single command.

demo-agents-sdk

7
from Demerzels-lab/elsamultiskillagent

Complete Polygon agent toolkit.

building-agents

7
from Demerzels-lab/elsamultiskillagent

Core XMTP Agent SDK setup and patterns. Use when creating new agents, handling messages, setting up middleware, or configuring environment variables. Triggers on agent setup, XMTP configuration, message handling, or middleware implementation.

xmtp-agents

7
from Demerzels-lab/elsamultiskillagent

Building and extending XMTP agents with the Agent SDK. Use when: (1) creating or configuring an XMTP agent, (2) implementing agent features (commands, attachments, reactions, groups, transactions, inline actions, or domain resolution).

perry-coding-agents

7
from Demerzels-lab/elsamultiskillagent

Dispatch coding tasks to OpenCode or Claude Code on Perry workspaces. Use for development work, PR reviews, or any coding task requiring an isolated environment.

Vincent - A wallet for agents

7
from Demerzels-lab/elsamultiskillagent

Use this skill to safely create a wallet the agent can use for transfers, swaps, and any EVM chain transaction. Also supports raw signing and polymarket betting.

SafeSkills - Secure Secret Management for AI Agents

7
from Demerzels-lab/elsamultiskillagent

SafeSkills is a secure secret management service. It stores secrets (like wallet private keys) and executes actions using them so that **you (the agent) never see the raw secret values**. The first supported skill is an EVM wallet -- you can create wallets, transfer tokens, send transactions, check balances, and more.

voice-ai-agents

7
from Demerzels-lab/elsamultiskillagent

Create, manage, and deploy Voice.ai conversational AI agents. Use when the user wants to work with voice agents, list their agents, create new ones, or manage agent configurations.

voice.ai-voice-agents

7
from Demerzels-lab/elsamultiskillagent

Create, manage, and deploy Voice.ai conversational AI agents. Use when the user wants to work with voice agents, list their agents, create new ones, or manage agent configurations.

n8n_dispatch Agent Skill

7
from Demerzels-lab/elsamultiskillagent

This skill bridges OpenClaw with your existing n8n‑dispatch service via mcporter. It exposes a single command `dispatch` that forwards the user’s request type and prompt to the registered MCP service.