iai-mcp: A local daemon for persistent OpenClaw memory across sessions

The recurring pain of starting a fresh OpenClaw session with zero context prompted one developer to build iai-mcp — a local daemon that persists conversation memory across sessions. Five months of daily use later, it's been open-sourced under MIT license.
How it works
- Three memory tiers: organizes captured conversations by recency and relevance, consolidating in the background when the machine is idle.
- Local neural embeddings: all processing happens on-device; no data sent externally.
- AES-256 encryption: data at rest is encrypted.
- Automatic context injection: on new session start, the relevant memory is fed as context — no need to manually ask OpenClaw to remember anything.
Performance numbers
- Verbatim recall above 99%
- Retrieval latency under 100ms
- Session-start token cost under 3,000 tokens
Real usage
The author has been running iai-mcp since January and reports that the system has learned coding style, project structures, and preferences without explicit instructions. The repository includes a benchmark harness to verify the numbers yourself.
Repository: https://github.com/CodeAbra/iai-mcp
📖 Read the full source: r/clawdbot
👀 See Also

Claude Code v2.1.90 adds mouse support with CLAUDE_CODE_NO_FLICKER flag
Anthropic released Claude Code v2.1.90 with a new feature that enables mouse support in the chat interface. Users can activate it by setting the CLAUDE_CODE_NO_FLICKER=1 environment variable before running claude.

Claude Code Mastery: Open-source config system adds persistent memory and curated skills to Claude Code CLI
Claude Code Mastery is an open-source configuration system that adds persistent memory across sessions, smart lifecycle hooks, and 26+ curated skills to Claude Code CLI. It includes a 6-file Memory Bank per project, zero-config launcher, and cross-platform support.

DeepSeek Reasonix: Native Coding Agent with High Caching and Low Cost
Reasonix is a DeepSeek-native AI coding agent for the terminal, focusing on high caching efficiency and low inference cost.

Lemonade by AMD: Open Source Local LLM Server for GPU and NPU
Lemonade is an open source local AI server that runs text, image, and speech models on GPUs and NPUs. It's OpenAI API compatible, supports multiple models simultaneously, and has a 2MB native C++ backend.