Auto-sync: 2026-04-21 04:02
This commit is contained in:
46
wiki/concepts/Parallel-Work.md
Normal file
46
wiki/concepts/Parallel-Work.md
Normal file
@@ -0,0 +1,46 @@
|
||||
---
|
||||
title: "Parallel Work"
|
||||
type: concept
|
||||
tags: [multi-agent, workflow, concurrency]
|
||||
last_updated: 2026-04-21
|
||||
---
|
||||
|
||||
## Definition
|
||||
并行工作(Parallel Work)是一种多智能体协作模式,其中多个智能体同时执行任务,通过独立工作减少总体完成时间。
|
||||
|
||||
## Core Principle
|
||||
相互独立的任务可以同时由不同智能体处理,无需等待彼此完成。
|
||||
|
||||
## Workflow Pattern
|
||||
```
|
||||
Agent A ─┬─→ [独立任务 A]
|
||||
│
|
||||
Agent B ─┴─→ [独立任务 B]
|
||||
```
|
||||
|
||||
## Example
|
||||
在 Multi-Agent Workflow: Startup MVP 中:
|
||||
- Week 1:Sprint Prioritizer 和 UX Researcher **并行运行**
|
||||
- Week 2:Frontend Developer 和 Rapid Prototyper **并行构建**
|
||||
- Week 3:Frontend Developer 继续 + Growth Hacker **启动策略规划**
|
||||
|
||||
## Key Requirements
|
||||
- 任务必须相互独立,无依赖关系
|
||||
- 需要明确的输入和输出定义
|
||||
- 输出最终需要合并或由协调者整合
|
||||
|
||||
## Advantages
|
||||
- 减少总体执行时间
|
||||
- 充分利用并行处理能力
|
||||
- 加快 MVP 交付速度
|
||||
|
||||
## Disadvantages
|
||||
- 增加了协调复杂度
|
||||
- 需要清晰的边界定义
|
||||
- 合并输出可能产生冲突
|
||||
|
||||
## Related Concepts
|
||||
- [[Sequential Handoffs]]:顺序交接模式
|
||||
- [[Quality Gates]]:质量门控
|
||||
- [[Context Passing]]:上下文传递
|
||||
- [[Multi-Agent Team]]:多智能体团队
|
||||
Reference in New Issue
Block a user