Files
nexus/wiki/concepts/Multi-Agent-Workflow.md
2026-04-21 04:02:47 +08:00

29 lines
987 B
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: "Multi-Agent Workflow"
type: concept
tags: [multi-agent, workflow, coordination]
last_updated: 2026-04-21
---
## Definition
Multi-Agent Workflow 是一种多智能体协作架构,多个专业 Agent 通过分阶段并行工作实现复杂任务交付。每个 Agent 有独立角色、人格、优化的模型,通过共享内存+私有上下文实现协同。
## Key Components
- **独立角色**:每个 Agent 承担特定专业职责
- **并行工作**:独立任务同时执行
- **顺序交接**:依赖任务按序传递
- **共享上下文**:通过共享内存保持信息一致性
## Pattern Types
- Parallel Kickoff多个工作流同时启动
- Merge Point多输入汇合触发下一阶段
- Feedback Loop审查后迭代修改
- Quality Gates设置检查点确保质量
## Connections
- [[Multi-Agent Team]]:相关概念
- [[Parallel Kickoff]]:并行启动模式
- [[Merge Point]]:合并依赖点
- [[Feedback Loop]]:反馈迭代机制