OpenClaw Shared Memory Plugin: SQLite-Based Multi-Agent Coordination

A developer has created a shared memory plugin for OpenClaw multi-agent environments to address the isolation problem where agents operate without knowledge of each other's decisions and context. The plugin uses SQLite and Markdown as the source of truth, requiring no external services, Docker, or internet connection—it works offline with a local embedding model by default.
Key Features
- Memory Sharing: Agents can explicitly share memories using a
memory_sharetool, or operate in implicit mode where a cheap model automatically extracts and shares context after each turn. - Access Control: Not all memories are shared with every agent; there's basic access control to manage what information is distributed.
- Entity and Relationship Tracking: The system tracks entities and relationships across agents, so information like "Alice manages the auth team" becomes known to all agents, not just the one that learned it.
- Contradiction Detection: The plugin flags when two agents have contradicting information, helping maintain consistency.
- CLI Tools: Includes a command-line interface to inspect shared memory, find contradictions, and rebuild the index.
The plugin was developed in response to workarounds like using Google Sheets for shared context, which the author found inadequate. It's designed to be consistent with how OpenClaw operates, focusing on simplicity and local functionality. The current implementation is available on GitHub, though it still lacks features like memory pruning and per-agent granular access control lists (ACLs).
📖 Read the full source: r/openclaw
👀 See Also

Codeset improves coding agents with repo-specific context from git history
Codeset generates static files from git history that provide context like past bugs, root causes, and co-change relationships. Testing showed 5.3pp improvement on codeset-gym-python and 2pp on SWE-Bench Pro with OpenAI Codex.

NEXUS: An Open Source Agent Coordination Layer for OpenClaw
NEXUS is a coordination layer built on OpenClaw that enables AI agents to discover each other, delegate tasks, and handle micro-payments. It includes an agent registry, capability-based discovery, trust scores, and uses Google's A2A protocol and Anthropic's MCP.

Vibeyard adds P2P session sharing for Claude Code
Vibeyard, an open-source IDE for Claude Code, now supports peer-to-peer session sharing. Users can share live terminal sessions with teammates over encrypted WebRTC connections with read-only or read-write access modes.

Open Source Browser Tool for Testing MCP Servers Without Installation
An open source web tool called MCP Playground lets developers test MCP servers directly in their browser using WebContainers, a WASM Node.js runtime. It can run npm-based MCP servers locally without backend installation and connect to remote servers via URL.