Auto-sync: 2026-04-26 00:02

This commit is contained in:
2026-04-26 00:02:55 +08:00
parent 8cceccf489
commit f1de106298
42 changed files with 1482 additions and 30 deletions

View File

@@ -0,0 +1,27 @@
---
title: "Sequential Handoff"
type: concept
sources: [workflow-startup-mvp]
last_updated: 2026-04-25
---
## Definition
Sequential Handoff顺序交接是 [[workflow-startup-mvp]] 中定义的多 Agent 协作核心模式:每个 Agent 的完整输出作为下一个 Agent 的输入,形成流水线。
## Details
- **原则**:不摘要、不压缩,完整粘贴上一 Agent 的输出
- **原因**Agent 之间无共享记忆,必须显式传递完整上下文
- **与 [[Context Passing]] 的关系**Context Passing 是实现 Sequential Handoff 的具体技术手段
## Aliases
- Sequential Handoff
- 顺序交接
- Sequential Hand-off
## Related Patterns
- [[Context Passing]]
- [[Quality Gate]]
- [[Parallel Agent Work]]
## Sources
- [[workflow-startup-mvp]]