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,25 @@
---
title: "Context Passing"
type: concept
sources: [workflow-startup-mvp]
last_updated: 2026-04-25
---
## Definition
Context Passing上下文传递是多 Agent 协作中的记忆共享机制Agent 之间不存在共享记忆,下一个 Agent 必须显式接收上一个 Agent 的完整输出作为输入上下文。
## Details
- **实现方式**:手动 copy-paste 或由 Orchestrator Agent 自动传递
- **关键原则**:不要摘要,要使用完整输出
- **与 [[Sequential Handoff]] 的关系**Context Passing 是 Sequential Handoff 的技术基础
## Aliases
- Context Passing
- 上下文传递
## Related Patterns
- [[Sequential Handoff]]
- [[Orchestrator Agent]](未来可自动化此过程)
## Sources
- [[workflow-startup-mvp]]