OpenClaw CoreBrain Plugin: Persistent Memory for AI Coding Agents

OpenClaw Memory Plugin Solves Persistent Context Problems
The OpenClaw CoreBrain plugin addresses fundamental memory issues in OpenClaw where the AI agent writes to memory but then acts like it never happened, requiring users to re-explain everything in new sessions.
Core Problems Identified
- Memory is optional - the model decides whether to invoke memory tools and frequently skips this step
- The memory.md file lives in the context window and gets wiped during compaction
- No project separation exists, and searches often return noise with no way to trace where answers originated
CoreBrain Solution
The plugin stores memory outside the context window in a knowledge graph and auto-injects it before every query. This eliminates tool calls and the "choosing to remember" problem.
Installation and Compatibility
Install with: openclaw plugins install /openclaw-corebrain
The plugin is open-source and works with other AI agents including Claude Code, Cursor, and Codex. It can be self-hosted from the repository at RedplanetHQ/core.
📖 Read the full source: r/openclaw
👀 See Also

Nanocode: Training Claude-like coding agents with JAX on TPUs
Nanocode is a JAX library for training Claude-like coding agents end-to-end, using Constitutional AI and TPU optimization. The 1.3B parameter model can be trained in ~9 hours for $200 on TPU v6e-8.

Tatu: Open-source security layer for Claude Code blocks secrets and destructive commands
Tatu is an open-source hook system that intercepts Claude Code actions in real time to block leaked secrets, flag PII, and deny destructive commands before execution. Installation is via pip/pipx with 'tatu-hook init' to enable audit mode.

MCP Context Bloat: Real Costs and a Practical Fix for Claude Code Users
Running 9 MCP servers in Claude Code leads to 38k token cold starts, ~$700/month in tool definition overhead, and degraded model performance. A gateway pattern with BM25 ranking cuts context to 4k.

OpenClaw Nerve WebUI adds voice control and team management dashboard
Nerve is a WebUI for OpenClaw that provides an all-in-one dashboard for monitoring and managing AI agents, with voice control via double-tap shift for Whisper and sub-agent team building capabilities.