Auto-sync: 2026-04-21 04:02

This commit is contained in:
2026-04-21 04:02:47 +08:00
parent cb7c11e14f
commit ac524d1ff5
81 changed files with 3115 additions and 20 deletions

View 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 1Sprint Prioritizer 和 UX Researcher **并行运行**
- Week 2Frontend Developer 和 Rapid Prototyper **并行构建**
- Week 3Frontend Developer 继续 + Growth Hacker **启动策略规划**
## Key Requirements
- 任务必须相互独立,无依赖关系
- 需要明确的输入和输出定义
- 输出最终需要合并或由协调者整合
## Advantages
- 减少总体执行时间
- 充分利用并行处理能力
- 加快 MVP 交付速度
## Disadvantages
- 增加了协调复杂度
- 需要清晰的边界定义
- 合并输出可能产生冲突
## Related Concepts
- [[Sequential Handoffs]]:顺序交接模式
- [[Quality Gates]]:质量门控
- [[Context Passing]]:上下文传递
- [[Multi-Agent Team]]:多智能体团队