<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Multi-Agent Memory on RockB</title><link>https://baeseokjae.github.io/tags/multi-agent-memory/</link><description>Recent content in Multi-Agent Memory on RockB</description><image><title>RockB</title><url>https://baeseokjae.github.io/images/og-default.png</url><link>https://baeseokjae.github.io/images/og-default.png</link></image><generator>Hugo</generator><language>en-us</language><lastBuildDate>Fri, 31 Jul 2026 16:04:14 +0000</lastBuildDate><atom:link href="https://baeseokjae.github.io/tags/multi-agent-memory/index.xml" rel="self" type="application/rss+xml"/><item><title>Agent Claim Network Review 2026: Terminal AI Assistant for Agent Knowledge Sharing</title><link>https://baeseokjae.github.io/posts/agent-claim-network-2026/</link><pubDate>Fri, 31 Jul 2026 16:04:14 +0000</pubDate><guid>https://baeseokjae.github.io/posts/agent-claim-network-2026/</guid><description>Agent Claim Network (ACN) is a terminal-native AI assistant that lets agents share verified knowledge via claims — a novel approach to multi-agent memory and collaboration.</description><content:encoded><![CDATA[<h2 id="what-is-agent-claim-network-acn">What is Agent Claim Network (ACN)?</h2>
<p>Agent Claim Network (ACN) is a terminal AI assistant and agent knowledge sharing platform launched on July 31, 2026 by Non-convex ft.tech (非凸科技). Unlike traditional memory tools that store raw data, ACN introduces a <strong>claim-based knowledge sharing system</strong> where agents publish structured judgments — each with an explicit holder, scope, confidence level, and evidence summary — that other agents can query, verify, and even dispute. Built in Rust and licensed under Apache-2.0/MIT, ACN runs on Apple Silicon Mac, Intel Mac, and x86_64 Ubuntu 22.04, supporting both Anthropic and OpenAI-compatible LLM providers. At version 0.2.1, it is a fresh entrant in the rapidly growing agent knowledge sharing market.</p>
<h2 id="key-features--terminal-ai-assistant">Key Features — Terminal AI Assistant</h2>
<p>ACN is first and foremost a terminal AI assistant. Before it is a knowledge sharing network, it is a full-featured CLI agent that can execute commands, manage sessions, and interact with LLM providers. This distinguishes it from pure memory-layer tools that only store and retrieve data.</p>
<h3 id="subagent-parallelism-and-background-execution">Subagent Parallelism and Background Execution</h3>
<p>ACN supports running multiple subagents in parallel, each with its own context and session state. A background finalize supervisor manages these subagents, ensuring that long-running tasks complete without blocking the main session. This architecture is particularly useful for complex workflows where an agent needs to research, write, and verify simultaneously.</p>
<h3 id="mcp-integration">MCP Integration</h3>
<p>ACN implements the Model Context Protocol (MCP) with both stdio and Streamable HTTP transports. MCP connections are shared in-process, meaning multiple agents can access the same tool ecosystem without duplicating connections. This is a significant efficiency gain over tools that require separate MCP connections per agent instance.</p>
<h3 id="multi-provider-llm-support">Multi-Provider LLM Support</h3>
<p>The assistant works with Anthropic (Claude) and any OpenAI-compatible provider, giving users flexibility in choosing their underlying language model. This provider-agnostic design means ACN can adapt as new models emerge without requiring architectural changes.</p>
<h2 id="the-claim-system--how-knowledge-sharing-works">The Claim System — How Knowledge Sharing Works</h2>
<p>The claim system is ACN&rsquo;s most innovative feature. Instead of storing raw memory blobs, agents publish <strong>claims</strong> — structured knowledge units with four mandatory fields:</p>
<table>
  <thead>
      <tr>
          <th>Field</th>
          <th>Description</th>
          <th>Example</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td><strong>Holder</strong></td>
          <td>The agent or entity making the claim</td>
          <td><code>writer-agent@blog-pipeline</code></td>
      </tr>
      <tr>
          <td><strong>Scope</strong></td>
          <td>The domain or context the claim applies to</td>
          <td><code>agent-claim-network-2026</code></td>
      </tr>
      <tr>
          <td><strong>Confidence</strong></td>
          <td>A numerical or categorical confidence rating</td>
          <td><code>0.92</code> or <code>high</code></td>
      </tr>
      <tr>
          <td><strong>Evidence Summary</strong></td>
          <td>A concise justification or source reference</td>
          <td><code>Verified against GitHub README v0.2.1</code></td>
      </tr>
  </tbody>
</table>
<h3 id="well-supported-judgments">Well-Supported Judgments</h3>
<p>Claims are not just free-form text. ACN enforces a &ldquo;well-supported judgment&rdquo; format, meaning every claim must include enough context for other agents to evaluate its reliability. This prevents the garbage-in-garbage-out problem that plagues simpler memory systems.</p>
<h3 id="dispute-system">Dispute System</h3>
<p>One of the most philosophically interesting aspects of ACN is its dispute system. When two agents hold conflicting claims about the same topic, both claims can coexist. There is no forced consensus. Instead, the system surfaces both claims with their respective confidence levels and evidence, allowing downstream agents or human operators to make their own judgment. This is a deliberate design choice that acknowledges the reality of multi-agent systems: different agents with different training data, contexts, and perspectives will legitimately disagree.</p>
<h3 id="privacy-first-design">Privacy-First Design</h3>
<p>A critical architectural decision: <strong>memory never leaves the agent</strong>. Only claims — with the holder&rsquo;s identity attached — are shared across the network. This means an agent&rsquo;s raw conversation history, internal reasoning, and private context remain local. What gets shared is a distilled, structured knowledge unit that the agent chooses to publish. This privacy boundary is essential for enterprise deployments where agents may handle sensitive data.</p>
<h2 id="team-mode--router-and-maintainer-architecture">Team Mode — Router and Maintainer Architecture</h2>
<p>ACN&rsquo;s team mode separates knowledge retrieval from governance into two deployable binaries:</p>
<h3 id="router-retrieval">Router (Retrieval)</h3>
<p>The Router handles all knowledge queries. When an agent needs information, it sends a query to the Router, which searches the claim network and returns the most relevant results. The Router is optimized for low-latency retrieval and can be deployed as a standalone service.</p>
<h3 id="maintainer-governance">Maintainer (Governance)</h3>
<p>The Maintainer handles claim lifecycle management: publishing new claims, resolving disputes, pruning stale knowledge, and enforcing trust policies. This separation of concerns means retrieval performance is not impacted by governance operations, and governance policies can be updated without touching the query path.</p>
<p>This architecture is reminiscent of the CQRS (Command Query Responsibility Segregation) pattern, applied to agent knowledge management. It allows teams to scale retrieval and governance independently based on their workload patterns.</p>
<h2 id="memory-system--memorymd-and-usermd">Memory System — MEMORY.md and USER.md</h2>
<p>ACN&rsquo;s memory design is explicitly inspired by Hermes Agent&rsquo;s dual-file approach. Each agent maintains two files:</p>
<ul>
<li><strong>MEMORY.md</strong>: Agent-specific notes, learned facts, and operational knowledge</li>
<li><strong>USER.md</strong>: User preferences, identity, and personal context</li>
</ul>
<p>This separation mirrors the distinction between what an agent knows about its work and what it knows about its user. By keeping these files separate, ACN enables more granular sharing — an agent can share its MEMORY.md claims with other agents while keeping USER.md private.</p>
<h2 id="installation-and-quick-start">Installation and Quick Start</h2>
<p>ACN supports three platforms at launch:</p>
<ul>
<li><strong>Apple Silicon Mac</strong> (M1/M2/M3/M4)</li>
<li><strong>Intel Mac</strong></li>
<li><strong>x86_64 Ubuntu 22.04</strong></li>
</ul>
<p>Installation is straightforward via the GitHub releases page. After installing, users configure their LLM provider (Anthropic or OpenAI-compatible) and can immediately start using the terminal assistant. MCP tools can be configured via the standard MCP configuration format.</p>
<p>The quick start flow:</p>
<ol>
<li>Download the appropriate binary for your platform</li>
<li>Configure your LLM API key</li>
<li>(Optional) Configure MCP servers</li>
<li>Start the ACN terminal assistant</li>
<li>Begin publishing and querying claims</li>
</ol>
<h2 id="comparison-with-competitors">Comparison with Competitors</h2>
<p>The agent knowledge sharing market is nascent — most tools have fewer than 50 GitHub stars. Here is how ACN stacks up against the leading alternatives:</p>
<table>
  <thead>
      <tr>
          <th>Feature</th>
          <th>ACN</th>
          <th>Caura Memclaw</th>
          <th>Kage</th>
          <th>Lore</th>
          <th>Hivemind</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td><strong>GitHub Stars</strong></td>
          <td>12 (launch day)</td>
          <td>396</td>
          <td>31</td>
          <td>7</td>
          <td>1</td>
      </tr>
      <tr>
          <td><strong>Type</strong></td>
          <td>Terminal AI Assistant + Knowledge Network</td>
          <td>Governed Shared Memory</td>
          <td>Verified Coding Memory</td>
          <td>Cross-Agent Memory SDK</td>
          <td>Metaskill for Skill Sharing</td>
      </tr>
      <tr>
          <td><strong>Knowledge Format</strong></td>
          <td>Structured Claims</td>
          <td>Knowledge Graph</td>
          <td>Verified Facts</td>
          <td>Lessons</td>
          <td>Skills/Experiences</td>
      </tr>
      <tr>
          <td><strong>Dispute Support</strong></td>
          <td>Yes — conflicting claims coexist</td>
          <td>No</td>
          <td>No</td>
          <td>No</td>
          <td>Voting-based</td>
      </tr>
      <tr>
          <td><strong>Privacy Model</strong></td>
          <td>Memory stays local, claims shared</td>
          <td>Tenant-isolated</td>
          <td>Codebase-scoped</td>
          <td>Redaction support</td>
          <td>Trust scores</td>
      </tr>
      <tr>
          <td><strong>MCP Support</strong></td>
          <td>Yes (stdio + Streamable HTTP)</td>
          <td>Yes (MCP-native)</td>
          <td>No</td>
          <td>No</td>
          <td>No</td>
      </tr>
      <tr>
          <td><strong>Deployment</strong></td>
          <td>Standalone binary</td>
          <td>Server-based</td>
          <td>CLI plugin</td>
          <td>SDK</td>
          <td>Metaskill</td>
      </tr>
      <tr>
          <td><strong>Language</strong></td>
          <td>Rust</td>
          <td>Not specified</td>
          <td>Not specified</td>
          <td>Not specified</td>
          <td>Not specified</td>
      </tr>
      <tr>
          <td><strong>License</strong></td>
          <td>Apache-2.0/MIT</td>
          <td>Not specified</td>
          <td>Not specified</td>
          <td>Not specified</td>
          <td>Not specified</td>
      </tr>
  </tbody>
</table>
<h3 id="caura-memclaw-396">Caura Memclaw (396★)</h3>
<p>Caura Memclaw is the clear market leader by GitHub stars. It offers governed shared memory for AI agent fleets with trust tiers, keystone policies, audit trails, and a knowledge graph. It is MCP-native and designed for enterprise multi-agent, multi-tenant deployments. ACN&rsquo;s claim system offers a different philosophical approach — structured, disputable knowledge units vs. a governed knowledge graph.</p>
<h3 id="kage-31">Kage (31★)</h3>
<p>Kage focuses on persistent, verified memory specifically for coding agents. Every memory is checked against the current codebase to prevent stale knowledge. This codebase-aware verification is Kage&rsquo;s unique strength, but its scope is limited to coding agents, whereas ACN is a general-purpose terminal assistant.</p>
<h3 id="lore-7">Lore (7★)</h3>
<p>Lore is a lightweight cross-agent memory SDK where agents publish lessons and query shared knowledge. It includes built-in redaction support. Lore is simpler than ACN but lacks the structured claim format, dispute system, and terminal assistant capabilities.</p>
<h3 id="hivemind-1">Hivemind (1★)</h3>
<p>Hivemind is a metaskill for skill and experience sharing between agents, designed for Claude Code, Codex, and Opencode. It uses trust scores and voting to evaluate shared knowledge. Hivemind&rsquo;s voting mechanism is an alternative to ACN&rsquo;s dispute system — instead of letting conflicting claims coexist, Hivemind lets agents vote on the best answer.</p>
<h2 id="use-cases-and-target-audience">Use Cases and Target Audience</h2>
<h3 id="ai-agent-developers">AI Agent Developers</h3>
<p>Developers building multi-agent systems need a way for their agents to share knowledge without sharing raw memory. ACN&rsquo;s claim system provides a structured, auditable knowledge layer that fits naturally into agent workflows.</p>
<h3 id="enterprise-ai-teams">Enterprise AI Teams</h3>
<p>For organizations running fleets of AI agents, ACN&rsquo;s privacy-first design (memory stays local, claims are shared) addresses compliance concerns. The Router/Maintainer architecture also supports the scale and governance requirements of enterprise deployments.</p>
<h3 id="terminal-power-users">Terminal Power Users</h3>
<p>Users who prefer CLI-based AI assistants over GUI tools will appreciate ACN&rsquo;s terminal-native design. It integrates naturally with existing terminal workflows, MCP tools, and development pipelines.</p>
<h3 id="open-source-contributors">Open Source Contributors</h3>
<p>At version 0.2.1 with Apache-2.0/MIT licensing, ACN is an open project with room for community contribution. The Rust codebase and well-documented architecture make it accessible for developers interested in agent infrastructure.</p>
<h2 id="limitations-and-considerations">Limitations and Considerations</h2>
<h3 id="very-early-stage">Very Early Stage</h3>
<p>ACN launched on July 31, 2026 — the same day as this review. With 12 GitHub stars and version 0.2.1, it is extremely early. Users should expect bugs, missing features, and rapid API changes.</p>
<h3 id="limited-community-and-ecosystem">Limited Community and Ecosystem</h3>
<p>Compared to Caura Memclaw&rsquo;s 396 stars, ACN&rsquo;s community is tiny. This means fewer third-party integrations, less community documentation, and a higher burden on the core team for support.</p>
<h3 id="platform-limitations">Platform Limitations</h3>
<p>Currently supports only macOS (Apple Silicon and Intel) and Ubuntu 22.04 x86_64. Windows users and users on other Linux distributions will need to wait for broader platform support.</p>
<h3 id="claim-quality-depends-on-agent-quality">Claim Quality Depends on Agent Quality</h3>
<p>The claim system is only as good as the agents publishing claims. If agents publish low-confidence, poorly evidenced, or incorrect claims, the network&rsquo;s value degrades. The dispute system helps, but it requires active participation from multiple agents.</p>
<h3 id="no-built-in-human-review-workflow">No Built-in Human Review Workflow</h3>
<p>While ACN has a dispute system for agent-to-agent disagreement, there is no built-in workflow for human review of claims. In regulated industries, this may be a gap that needs to be addressed with external tooling.</p>
<h2 id="verdict--is-acn-worth-trying-in-2026">Verdict — Is ACN Worth Trying in 2026?</h2>
<p><strong>Yes, if you are building multi-agent systems and value structured knowledge sharing over raw memory storage.</strong> ACN&rsquo;s claim-based approach is a genuinely novel contribution to the agent knowledge sharing space. The separation of memory (private) from claims (shared) is architecturally sound and addresses real privacy concerns in multi-agent deployments.</p>
<p><strong>Wait, if you need a mature, battle-tested solution.</strong> At version 0.2.1 with 12 stars, ACN is not yet production-ready for mission-critical deployments. Caura Memclaw, with its larger community and more mature codebase, is the safer choice for enterprise teams today.</p>
<p><strong>Skip, if you only need a simple memory layer.</strong> If your use case is straightforward memory persistence for a single agent, tools like Lore or even a simple file-based approach will serve you better without the complexity of a claim system.</p>
<p>ACN represents an interesting design direction for the agent knowledge sharing market. Its claim-based architecture, dispute system, and privacy-first design are ideas that will likely influence the next generation of agent collaboration tools, even if ACN itself remains a niche player. For developers and teams exploring the cutting edge of multi-agent systems, it is absolutely worth a weekend experiment.</p>
<h2 id="faq">FAQ</h2>
<h3 id="what-is-an-agent-claim-network">What is an agent claim network?</h3>
<p>An agent claim network is a system where AI agents share structured knowledge units called &ldquo;claims&rdquo; — each with a holder, scope, confidence level, and evidence summary — instead of sharing raw memory or data. Agent Claim Network (ACN) is a specific implementation of this concept, launched in July 2026.</p>
<h3 id="how-is-acn-different-from-caura-memclaw">How is ACN different from Caura Memclaw?</h3>
<p>ACN is a terminal AI assistant with a claim-based knowledge sharing system, while Caura Memclaw is a governed shared memory layer with a knowledge graph. ACN uses structured, disputable claims that can coexist even when conflicting, whereas Memclaw uses trust tiers and keystone policies for governance. ACN also functions as a full terminal AI assistant, not just a memory layer.</p>
<h3 id="does-acn-support-mcp-model-context-protocol">Does ACN support MCP (Model Context Protocol)?</h3>
<p>Yes, ACN supports MCP with both stdio and Streamable HTTP transports. MCP connections are shared in-process, meaning multiple agents can access the same tool ecosystem without duplicating connections.</p>
<h3 id="is-acn-free-and-open-source">Is ACN free and open source?</h3>
<p>Yes, ACN is open source under dual Apache-2.0/MIT licensing. The source code is available on GitHub, and the binary releases are free to download and use.</p>
<h3 id="what-platforms-does-acn-run-on">What platforms does ACN run on?</h3>
<p>ACN currently supports Apple Silicon Mac (M1/M2/M3/M4), Intel Mac, and x86_64 Ubuntu 22.04. Windows and other Linux distributions are not yet supported.</p>
]]></content:encoded></item></channel></rss>