Files
nexus/wiki/concepts/Parallel-Kickoff.md
2026-04-26 00:02:55 +08:00

39 lines
1.1 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 Kickoff"
type: concept
tags: [multi-agent, workflow-pattern, parallelization]
last_updated: 2026-04-25
---
## Definition
多个独立 Agent 任务在同一时间并行启动,彼此之间没有数据依赖,无需等待对方完成即可开始执行。
## Core Principle
只有当两个工作流**产出互相独立**时,才适合并行启动。如果一个任务的输出是另一个的输入,则必须串行。
## Usage in The Agency
- [[workflow-landing-page]]Content Creator 与 UI Designer 在上午 9:00 同时启动,两者输出(文案 + 设计稿)互不依赖
- [[workflow-startup-mvp]]Backend Architect、Frontend Developer、Growth Hacker 在 Week 2 并行启动
- [[scenario-marketing-campaign]]:文案、视觉、增长策略并行输出
## Implementation
```
Agent A ──┐
├──► [合并点]
Agent B ──┘
```
并行启动的条件:
1. 两者输出没有依赖关系
2. 两者不写入同一个共享状态(除非有锁机制)
3. 执行时间相近(避免一个等待另一个过长)
## Aliases
- Parallel Activation
- Concurrent Kickoff
- Independent Parallel Execution