dispatching-parallel-agents
Installation
SKILL.md
Dispatching Parallel Agents
Overview
当你遇到多个互不相关的失败(不同测试文件、不同子系统、不同 bug)时,串行排查会浪费大量时间。这些调查通常彼此独立,完全可以并行。
核心原则: 每个独立问题域派发一个 agent,让它们并行工作。
When to Use
digraph when_to_use {
"有多个失败?" [shape=diamond];
"它们彼此独立吗?" [shape=diamond];
"单 agent 统一排查" [shape=box];
"每个问题域一个 agent" [shape=box];
"能并行工作吗?" [shape=diamond];
"改为串行派发" [shape=box];
"并行派发" [shape=box];