← 首页|学术|MELD: A Protocol for Merging Knowledge Across Distributed Agentic Memories
cs.DC, cs.AI, cs.MA · 2608.16357 · 2026/08/17

MELD: A Protocol for Merging Knowledge Across Distributed Agentic Memories

Lovén, Lauri, Sauvola, Jaakko, Riekki, Jukka, Tarkoma, Sasu
TL;DR:MELD:联邦 agent 记忆的自管理一致性协议——每条新进 claim 经五结果程序(insert/merge/relate/conflict/reject),由三信号(scoped claim-key 身份、embedding 相似度、NLI 判定)+上下文/新鲜度门控裁决,只经一个可审计 Patch 变更状态;绑定 pub/sub 传输 + per-claim 状态 CRDT 保持主权。

🎯 问题

agent 能共享传输、能互相调用工具,却无法共享「知道的」:没有协议让两个 agent 的记忆就一个事实的两种表述达成一致、把分开的相关事实关联、或在不静默丢弃的前提下调和矛盾知识。

🔬 方法

运行时模型就是知识图谱本身;每个 brain 对新 claim 走五结果接纳程序,三信号裁决(claim-key 身份 / embedding 相似度 / NLI 判定),上下文与新鲜度门控;唯一改变状态的对象是可审计的 Patch;绑定标准 pub/sub + per-claim CRDT 保持各 brain 主权与最终一致。
章节结构(全文标题提取):
1. Introduction
2. Background
3. The MELD protocol
4. Merge semantics
5. Consistency and trust
6. Implementation
7. Evaluation
8. Related work
9. Discussion and limitations
10. Conclusion

📊 结果

联邦记忆合并协议:insert/merge/relate/conflict/reject 五结果覆盖知识一致性全谱;可审计、可追踪、主权保留。

💡 与研究方向关联

多 agent 长期记忆的一致性基建——agent 之间共享知识的「协议层」。对用户的多 agent + 记忆方向是前瞻性的基础设施,与 duplex 多设备/多会话状态同步问题同源。

📝 原文摘要

▶ 原文摘要 Abstract
Autonomous agents share a transport and can call each other's tools, but they cannot share what they know: no protocol lets two agents' memories reconcile a fact phrased two ways, link related facts held apart, or reconcile contradictory knowledge without silently discarding either claim. We present MELD, a self-managing coherence mechanism for a federation of agent memories whose run-time model is the knowledge graph itself. Each brain admits every incoming claim through a five-outcome procedure (insert, merge, relate, conflict, or reject), decided from three signals (scoped claim-key identity, embedding similarity, and a natural-language-inference verdict) under context and freshness gates, and acting through exactly one auditable, authenticated Patch, the only object that mutates state. A binding onto standard publish/subscribe transport with a per-claim status CRDT keeps sovereign brains coherent in claim status without a coordinator: self-healing after partitions and under lossy routing, and self-protecting against silent rewrite by a peer, under a benign-fault model. MELD does not adjudicate truth; a detected contradiction is preserved for later adjudication, never silently resolved. On HotpotQA distractor, distributed merge is recall-non-inferior to a centralized store under a pre-specified equivalence test and recall-superior to naive union at about 11% less live storage; the merge classifier separates at AUC 0.968 with a 0.013 false-merge rate on adjudicated candidate pairs; the status CRDT reconverges in 30/30 real partition-heal trials where last-writer-wins manages 11/30; and semantic routing delivers about 3x fewer messages at matched recall. We evaluate on a real computing continuum spanning an operator-grade 5G edge, national HPC, and a local tier, with empirically calibrated thresholds.
Deep Read · 2026-08-19高松灯 / Agent 日报 · 会话与记忆
分布式记忆知识合并CRDT联邦