Engram: Hybrid Memory Plugin for OpenClaw Agents — Vector + Semantic Search with Decay

Engram is a memory plugin for OpenClaw agents that adds persistent, hybrid recall between sessions. Originally built as a hybrid memory system combining vector and semantic search with a memory decay architecture, it was broken by a recent OpenClaw update. Now fixed and released on GitHub under the name Engram (the biometric trace that enables memory).
How It Works
Engram backs agent memory with two stores:
- SQLite + FTS5 for exact, structured recall and full-text search over fact text.
- LanceDB for fuzzy semantic search over embeddings.
The two are queried together in a hybrid recall that returns both structured key/value facts and semantically similar vectors.
Features
- Hybrid recall: structured key/value facts + semantic vector search, queried together.
- FTS5 full-text search over fact text.
- Categories:
preference,fact,decision,entity,other. - Decay classes:
permanent,stable,active,session,checkpointwith confidence decay. - Auto-capture / auto-recall hooks (configurable).
- Local-first: memory stays on your machine.
- Embeddings via OpenAI (
text-embedding-3-smallortext-embedding-3-large).
Who It's For
Developers running OpenClaw agents who need persistent, intelligent memory that survives restarts and can distinguish between session and permanent knowledge.
Get It
Star the repo on GitHub at nanoflow-io/engram.
📖 Read the full source: r/clawdbot
👀 See Also

Prompt-Mini: Claude Code Plugin Intercepts Vague Prompts to Reduce Credit Waste
Prompt-mini is a Claude Code plugin that intercepts vague prompts before execution, asks clarifying questions, and builds structured prompts with stack detection and specific rules for 40+ frameworks. The tool addresses 35 credit-killing patterns like missing scope, stop conditions, and file paths.

Tendr Skill: Deterministic CLI Operations for Agent Memory Management
Tendr Skill is an Agent Skill that separates reasoning from execution for structured long-term memory, allowing agents to decide what needs changing while a CLI tool handles structural operations deterministically. It supports [[wikilinks]] and explicit semantic hierarchies across files.

hipEngine: Fast Native Qwen 3.6 Inference for RDNA3 (Strix Halo, 7900 XTX)
hipEngine is a new open-source (AGPLv3) ROCm-native inference engine for Qwen 3.6 MoE on RDNA3 GPUs. Benchmarks show prefill up to 2718 tok/s on 7900 XTX, competitive with llama.cpp, and INT8 KV cache enabling full 256K context in under 24GB.

Marmy: A Self-Hosted Framework for Managing AI Coding Agents Remotely
Marmy is an open-source, MIT-licensed framework built with Claude Code that lets developers manage AI coding agents and tmux sessions from a mobile app. It includes a Rust agent for development machines and a React Native app for remote control.