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

Semble: A Local MCP Server for Claude Code with 98% Token Reduction
Semble is an open-source MCP server for Claude Code that replaces grep+read workflows, using embeddings, BM25, and reranking to reduce token usage by ~98% while indexing repos in ~250ms.

Bodega Inference Engine: Optimizing LLM Inference for Apple Silicon's Unified Memory
Bodega is an inference engine built specifically for Apple Silicon's unified memory architecture, addressing throughput limitations by redesigning continuous batching and KV cache management for MLX. The developer reports working on it for 2.5 years with optimizations close to the Metal layer.

PRECC Tool Cuts Claude Code API Costs with Pre-Tool-Call Compression
A developer built PRECC, an open source tool that intercepts Claude Code tool calls and compresses payloads using RTK (Redundancy-aware Token Kompression), reducing input tokens by 40-66% with no perceptible latency impact.

MemAware Benchmark Tests AI Memory Beyond Keyword Search
MemAware is a benchmark with 900 questions across 3 difficulty levels that tests whether AI assistants with memory can surface relevant context when queries don't hint at it. Results show BM25 search scored 2.8% vs 0.8% with no memory, while vector search drops to 0.7% on cross-domain connections.