dispatching-parallel-agents

仓库创建 2026年4月15日最近提交 20 天前SkillHot 收录 20 天前
▸ 精选理由

节省人工文件冲突检查,便于大规模并行分工。

这个 Skill 做什么

自动分析文件互斥性并并行下发子任务,避免手动冲突检查。

自动判断各子任务操作的文件是否互斥,然后并行下发多名代理去做,省掉手动冲突检查和串行等待。当计划包含多个对不同文件集的独立实现或测试步骤、并想并行化时用。特别之处在于会计算依赖、验证无文件冲突并生成并行交接文档,确保并发安全。

▸ 展开 SKILL.md 英文原文

Automatically dispatch multiple agent subtasks in parallel based on file-lock disjointness. Compute task dependencies, validate no file conflicts, emit parallel delegation handoffs. Use this when the Conductor or Orchestrator has multiple independent Coder/Tester tasks to farm out simultaneously.

自动化集成任务调度并行文件冲突Claude Code
0
Stars
0
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/Codebrew-company/CodebrewRouter/master/.claude/skills/dispatching-parallel-agents/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/Codebrew-company/CodebrewRouter/master/.claude/skills/dispatching-parallel-agents/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Dispatching Parallel Agents — automate task assignment

Manages the mechanics of launching multiple agents in parallel without manual file-conflict checking.

## When to use

- The plan lists multiple implementation steps with **non-overlapping file sets**.
- The Conductor or Orchestrator wants to **parallelize** those steps.
- You need to **validate** that parallel execution won't cause merge conflicts.

## Workflow

### Input

A plan with steps like:

```
## Step 1: Add GeminiProvider class
Files: Blaze.LlmGateway.Infrastructure/Providers/GeminiProvider.cs (create)

## Step 2: Add GeminiProvider tests
Files: Blaze.LlmGateway.Tests/Providers/GeminiProviderTests.cs (create)

## Step 3: W
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有