Files
nexus/wiki/concepts/Handoff-Boundary.md
2026-05-03 05:42:12 +08:00

45 lines
1.8 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: "Handoff Boundary"
type: concept
tags: [multi-agent, coordination, failure-point, nexus]
sources: [executive-brief]
last_updated: 2026-05-01
aliases:
- Agent Boundary
- Coordination Interface
-交接边界
---
## Definition
交接边界Handoff Boundary—— 多 Agent 工作流中从一个 Agent 的交付物传递到下一个 Agent 的接口点,也是协调失败最频繁发生的位置。
## The 73% Failure Rate Problem
**关键数据**:多 Agent 项目在缺乏结构化协调协议时,交接边界处的失败率达 **73%**
这使得交接边界成为多 Agent 协调中**最高杠杆的干预点**——改善交接协议带来的收益远大于优化单个 Agent 能力。
## Failure Modes at Handoff Boundaries
1. **上下文截断**:关键决策和中间产物在交接时丢失
2. **重复劳动**:下一 Agent 重新执行上一 Agent 已完成的工作
3. **缺陷传递**:上游 Agent 的问题未被检测,直接传递给下游
4. **质量断崖**:上游 Agent 的质量标准与下游不一致
5. **时间浪费**:交接等待导致流程阻塞
## Highest-Leverage Interventions
根据 Executive Brief 的战略发现,以下是针对交接边界的最高杠杆干预:
1. **标准化交接模板**(见 Handoff Templates强制包含交付物清单 + 上下文摘要 + 下一步指令 + 质量证据
2. **上下文连续性协议**确保决策历史和中间产物在交接时完整传递MCP Memory
3. **质量证据传递**:上游 Agent 必须提供可验证的质量证据,而非口头声明
## Related Concepts
- [[Agent Handoff]]:在交接边界执行的标准化上下文传递协议
- [[Evidence Over Claims]]:交接边界处的质量标准,防止缺陷传递
- [[Quality Gate]]:交接边界处的强制质量检查点
- [[Dev↔QA Loop]]:交接边界内的持续质量验证机制