Files
nexus/wiki/concepts/Parallel-Work.md
2026-04-21 04:02:47 +08:00

47 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
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]]:多智能体团队