From loom-engineering
Dispatch multiple independent tasks to parallel subagents when no shared file conflicts exist. Use when: a confirmed plan has independent tasks that can run concurrently without touching shared files.
How this skill is triggered — by the user, by Claude, or both
Slash command
/loom-engineering:loom-dispatching-parallel-agentsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
当多个任务之间没有依赖关系时,可以并行执行以提高效率。
当多个任务之间没有依赖关系时,可以并行执行以提高效率。
限制条件: 仅当多个 task 之间无依赖、无共享文件修改时才可并行。若 task 间有文件冲突,必须退回到 loom-subagent-driven-development 的串行模式。
模型选择: 并行任务通常使用便宜模型(cheap model),因为它们大多是机械实现任务。
specs/<date+feature>/plan.md 中的 Task 概览,读取 specs/<date+feature>/tasks/ 目录下的各 task 文件## 依赖关系分析
| Task | 依赖 | 可并行组 | 复杂度 |
| -------------------- | --------- | -------- | ------ |
| Task 1 (Module A) | 无 | 组 1 | 简单 |
| Task 2 (Module B) | 无 | 组 1 | 简单 |
| Task 3 (Module C) | Task 1 | 组 2 | 中等 |
| Task 4 (Module D) | Task 2 | 组 2 | 中等 |
| Task 5 (Integration) | Task 3, 4 | 组 3 | 复杂 |
将可并行的任务分组:
组 1: [Task 1, Task 2] → 并行执行(使用 cheap model)
组 2: [Task 3, Task 4] → 等组 1 完成后并行执行(使用 standard model)
组 3: [Task 5] → 等组 2 完成后执行(使用 capable model)
对同一组的任务,同时派发 subagent:
派发 Task 1 subagent (cheap) ──→ ┐
├→ 全部完成后进入组 2
派发 Task 2 subagent (cheap) ──→ ┘
模型选择:并行任务通常使用便宜模型(机械实现),集成/复杂任务使用标准/强模型。
并行派发以下独立任务(使用 cheap model):
## Task N: <任务名>
<完整 task 内容>
## Task M: <任务名>
<完整 task 内容>
## 约束
- 每个 subagent 独立工作,互不干扰
- 如发现与其他任务有冲突,立即报告
- 完成后输出创建/修改的文件列表
- 使用 cheap model(除非任务复杂)
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub xiqin/loom --plugin loom