dispatching-parallel-agents

Dispatch specialized agents to debug independent failures in parallel.

1|Updated Sep 26, 2025
One-click install
npx skills add https://github.com/pascallammers/mylo-travel-concierge-v2 --skill dispatching-parallel-agents-pascallammers
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dispatching-parallel-agents
Source: https://github.com/pascallammers/mylo-travel-concierge-v2/tree/main/.factory/skills/dispatching-parallel-agents
Command: npx skills add https://github.com/pascallammers/mylo-travel-concierge-v2 --skill dispatching-parallel-agents-pascallammers

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill addresses the inefficiency of sequentially debugging multiple, unrelated failures by enabling concurrent investigation and resolution through parallel agent dispatch.

Core Features & Use Cases

  • Parallel Investigation: Dispatches multiple agents to tackle distinct failure domains simultaneously.
  • Focused Scoping: Each agent is assigned a specific, independent problem area for efficient debugging.
  • Use Case: When 5 test files fail due to different root causes after a code refactor, this Skill can assign one agent to each distinct failure group, allowing them to run in parallel and significantly reducing overall debugging time.

Quick Start

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

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 independent test failures concurrently?

Debug multiple independent test failures concurrently by dispatching specialized agents to distinct problem domains. Each agent receives a specific, independent failure group, allowing them to run in parallel and significantly reduce debugging time.

What is parallel agent dispatch for debugging workflows?

Parallel agent dispatch is a debugging workflow technique that enables concurrent investigation and resolution of unrelated issues. It optimizes debugging by allowing parallel investigation across different test files or subsystems rather than handling them sequentially.

How do I assign agents to fix independent failures in different test files?

Assign agents to fix independent failures by giving each agent a specific, independent problem area. When 5 test files fail due to different root causes after a refactor, assign one agent to each distinct failure group to run in parallel.

When should I use parallel agents for debugging instead of sequential investigation?

Use parallel agents for debugging when you face multiple independent failures across different test files or subsystems. It satisfies requirements for focused agent tasks, clear goals, and parallel execution to accelerate issue resolution when root causes are unrelated.

What are the limitations of using parallel agents to fix independent failures?

The limitation of using parallel agents is that failures must be independent and have different root causes. If failures are related or share the same underlying problem domain, focused scoping becomes difficult and parallel execution may not accelerate resolution.