dispatching-parallel-agents

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

大幅减少人工文件冲突检查,加速并发实现流程。

▸ 风险提示

会自动触发 Agent 操作并修改代码库,需权限与回滚策略。

这个 Skill 做什么

自动判断任务间文件互斥并并行分派多 Agent 执行与合并结果。

自动判断多个子任务修改的文件集合是否互斥;在确认不冲突后并行把子任务派给不同 agent 执行,并负责合并结果。适合 Plan 列出多个修改不重叠文件的实现步骤,想并行加速交付的场景。它会计算依赖、校验无文件冲突并发出并行交接,避免人工检查冲突,提高并发安全性。

▸ 展开 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.

自动化集成并行调度文件冲突检测任务依赖通用
0
Stars
0
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/Codebrew-company/CodebrewRouter/master/.agents/skills/dispatching-parallel-agents/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/Codebrew-company/CodebrewRouter/master/.agents/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 公开信息 · 原文版权归作者所有