dispatching-parallel-agents

Dispatch independent agents to investigate and resolve multiple unrelated failures concurrently.

8|Updated Jan 13, 2026
One-click install
npx skills add https://github.com/hxk622/TokenDance --skill dispatching-parallel-agents-hxk622
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dispatching-parallel-agents
Source: https://github.com/hxk622/TokenDance/tree/main/backend/app/skills/builtin/superpowers/dispatching-parallel-agents
Command: npx skills add https://github.com/hxk622/TokenDance --skill dispatching-parallel-agents-hxk622

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill addresses the inefficiency of sequentially investigating multiple, independent failures or tasks by enabling agents to work on them concurrently.

Core Features & Use Cases

  • Parallel Task Dispatching: Assigns separate agents to distinct problem domains that can be solved independently.
  • Reduced Investigation Time: Significantly speeds up debugging and problem-solving by leveraging concurrency.
  • Use Case: When multiple, unrelated test files fail after a code change, this Skill dispatches individual agents to diagnose and fix each failing file simultaneously, rather than one by one.

Quick Start

Use the dispatching-parallel-agents skill to fix the failures in agent-tool-abort.test.ts, batch-completion-behavior.test.ts, and tool-approval-race-conditions.test.ts concurrently.

Frequently Asked Questions about dispatching-parallel-agents

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I debug multiple unrelated test failures concurrently?

Debugging multiple unrelated test failures concurrently requires dispatching individual agents to diagnose and fix each failing file simultaneously, significantly reducing overall investigation time.

Can I use parallel agents for tasks that share state or have sequential dependencies?

Parallel agents are not suited for tasks that share state or have sequential dependencies. This approach applies strictly to scenarios with distinct problem domains that can be solved completely independently.

What is the best way to speed up multi-task problem-solving for independent failures?

The best way to speed up multi-task problem-solving is concurrent execution, dispatching one agent per independent problem domain to investigate and resolve failures in parallel rather than sequentially.

When do I need to dispatch parallel agents for debugging?

Dispatching parallel agents for debugging is needed when multiple unrelated test files fail after a code change, allowing separate agents to fix each failing file concurrently without waiting.

How do I dispatch agents to fix failures in separate test files simultaneously?

To dispatch agents to fix failures in separate test files simultaneously, assign one agent per independent problem domain or failing file to enable parallel investigation and concurrent resolution.