ByteRover Memory Plugin for OpenClaw: Native Integration with Semantic Hierarchy

The ByteRover Memory Plugin is now available for OpenClaw, offering native integration for structured, long-term memory management through ClawHub. This plugin moves beyond vector databases to implement a semantic hierarchy approach.
Key Features
- Three-Layer Memory Architecture: Context Tree (structured knowledge base), Workspace Memory (core rules/preferences/guidelines), and Daily Memory (session notes)
- Git-like Stateful Memory: Organizes memory into a semantic hierarchy of human-readable, diffable, and git-friendly Markdown files
- Local-first but Fully Portable: Local-by-default, fully portable for multi-agent teams
- High Accuracy: Achieves 92.2% retrieval accuracy on both LoCoMo and LongMemEval benchmarks, maintaining 90% accuracy even with cheap & lightweight models
Technical Integration
The plugin builds on OpenClaw's recent changes. On March 21, 2026, OpenClaw merged PR #50848, which adds an optional prompt parameter to ContextEngine.assemble(), allowing retrieval-oriented engines to use the current user query when assembling context.
Setup Requirements
- OpenClaw v2026.3.22+ is required
- If upgrading from earlier versions: remove the
plugins.allowfield from youropenclaw.jsonand restart the gateway
Installation
Complete automation loop installs via a single interactive script:
curl -fsSL https://byterover.dev/openclaw-setup.sh | shOr install the plugin only:
openclaw plugins install /byteroverThe plugin is available on NPM at @byterover/byterover and has been submitted to ClawHub, where it's currently undergoing security review.
📖 Read the full source: r/clawdbot
👀 See Also

Krasis LLM Runtime Shows 8.9x Prefill and 4.7x Decode Speed Improvements Over Llama.cpp
Krasis LLM runtime now runs both prefill and decode entirely on GPU with different optimization strategies, achieving 8.9x faster prefill and 4.7x faster decode than llama.cpp on Qwen3.5-122B with a single 5090 GPU.

FUTO Swipe: Open-Source Swipe Typing Models Match Big Tech Accuracy
FUTO releases open-source swipe typing models and a 1M swipe dataset. Encoder (635K params) + ContextLM (1.5M) + decoder (304K) achieve ~4% top-4 fail rate. Fully offline in FUTO Keyboard.

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.

OpenClaw Agent Memory Plugin: Persistent Context Across Sessions
A developer built a memory layer plugin for OpenClaw that injects relevant context from past conversations before each turn and stores new facts and events after each turn, solving the problem of agents forgetting everything between sessions.