dispatching-parallel-agents

Installation
SKILL.md

調度並行代理

概述

當您遇到多個不相關的故障(不同的測試檔案、不同的子系統、不同的錯誤)時,按順序調查它們會浪費時間。每項調查都是獨立的,可以並行進行。

核心原則: 每個獨立問題域調度一名代理。讓他們同時工作。

何時使用

digraph when_to_use {
    "Multiple failures?" [shape=diamond];
    "Are they independent?" [shape=diamond];
    "Single agent investigates all" [shape=box];
    "One agent per problem domain" [shape=box];
    "Can they work in parallel?" [shape=diamond];
    "Sequential agents" [shape=box];
    "Parallel dispatch" [shape=box];
Related skills
Installs
5
First Seen
Feb 25, 2026