dispatching-parallel-agents

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

适合需要并行处理且无共享状态的工作场景,提升吞吐量。

这个 Skill 做什么

把多个独立任务分发给专门代理并并行执行以提速。

把互不相关的任务拆成多个小代理并行跑,每个代理只给必要的上下文、不带会话历史。适合同时有两个以上可并行的工作(比如调研、写不同模块、跑多组测试)想要提速时用。要点是把指令和输入写清楚,主会话留着做汇总与协调。

▸ 展开 SKILL.md 英文原文

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies

自动化集成并行代理任务分发多代理协作通用
1
Stars
0
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/MaximoCorrea1/ultra-powers/main/flows/ultra-powers/skills/dispatching-parallel-agents/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/MaximoCorrea1/ultra-powers/main/flows/ultra-powers/skills/dispatching-parallel-agents/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Dispatching Parallel Agents

## Overview

You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history — you construct exactly what they need. This also preserves your own context for coordination work.

When you have multiple unrelated failures (different test files, different subsystems, different bugs), investigating them sequentially wastes time. Each investigation is independent and can happen in parallel.

**Core principle:** Dispatch one agent per independent problem domain. Let them work concurrently.

## When t
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有