Files
nexus/wiki/concepts/多代理并行.md

33 lines
966 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: "多代理并行"
type: concept
tags: [ai, multi-agent, cursor, concurrency]
last_updated: 2026-04-15
---
## 定义
AI 编程工具中多个 AI 代理同时运行不同任务、互不干扰的工作模式。
## 核心价值
- **效率提升**:同一时间并行生成多个模块
- **上下文隔离**:每个代理独立上下文,避免相互干扰
- **场景区分**:一个代理执行主任务,另一个代理同时构建配套页面/测试
## 实践方式Cursor 2.0
1. 主代理:执行游戏开发等主要任务
2. 副代理:新建代理创建 Landing Page 等独立模块
3. 两种代理并行运行,互不阻塞
## 使用规范
- 分散任务时创建新代理,避免在已有代理内继续先前任务
- 同一代理内继续先前任务效果更佳
## 关联
- [[Cursor]] 的多代理并行能力
- [[Multi-Agent System Reliability]] 的理论与实践对照
## Aliases
- Multi-Agent concurrency
- 多 Agent 并行