Files
nexus/wiki/concepts/共享内存模式.md
weishen 5789476c23 Batch ingest: Multi-Agent Team / DevOps Maturity / 一语点醒梦中人 / NodeWarden
Sources:
- Agent-usecases-multi-Agent-Team.md
- DevOps-Maturity-Model-From-Traditional-IT-to-Advanced-DevOps.md
- AI-一语点醒梦中人.md
- Home-Office-NodeWarden-把-Bitwarden-搬上-Cloudflare-Workers彻底告别服务器.md

Entities: Trebuh, Cloudflare
Concepts: DevOps成熟度模型, 共享内存模式, 空性智慧, 绝处逢生
2026-04-15 18:05:17 +08:00

32 lines
1.1 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: "共享内存模式"
type: concept
tags: [multi-agent, memory, collaboration, shared-context]
sources: [Agent-usecases-multi-Agent-Team]
last_updated: 2026-04-15
---
## Definition
多 Agent 系统中共享内存Shared Memory机制让多个 Agent 访问共同的上下文文件,同时每个 Agent 保留私有记忆空间,实现"共同上下文 + 专业积累"的组合。
## 架构
```
team/
├── GOALS.md # 当前 OKR 和优先级(所有 Agent 读取)
├── DECISIONS.md # 关键决策日志(追加写入)
├── PROJECT_STATUS.md # 项目状态(所有 Agent 更新)
└── agents/
├── milo/ # Milo 私有上下文和笔记
├── josh/ # Josh 私有上下文
├── marketing/ # 营销 Agent 研究笔记
└── dev/ # 开发 Agent 技术笔记
```
## 核心原则
- 共享文件:所有 Agent 可读写,存储共同目标、决策、项目状态
- 私有文件:单个 Agent 独占,积累领域专业知识和上下文
## Connections
- [[Multi-Agent Hierarchy]] ← 团队架构
- [[Workspace]] ← 类似分区思想