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

Open Source AI Context Packs for Legal, Compliance, and Finance Questions
A developer used Claude to research and build 32 free, open source context packs that provide specific answers to legal, compliance, and finance questions instead of generic 'consult a lawyer' responses. The packs cover GDPR, contracts, SaaS billing, EU AI Act, and more.

Local Terminal CRM with Built-in MCP Server for Claude Integration
A developer built a personal CRM that runs in the terminal with local SQLite storage and includes a built-in MCP server, giving Claude access to 18 tools for managing contacts, deals, and follow-ups.

Orchino: Local Multi-Agent Orchestration System for Windows with Parallel Browser and UI Automation
Orchino is a local multi-agent orchestration system for Windows that runs parallel browser and Windows tasks without hijacking the UI. A demo shows 4 agents completing 'Search Sony earbuds on Flipkart and Amazon, email the results, save to Notepad' in 29.5 seconds using true parallel execution.

Local AI Agent Workflow Using OpenCode, FastMCP, and DeepSeek-r1
A developer shares their local AI agent setup using OpenCode with AGENTS.md files for deterministic system prompts, FastMCP for exposing local functions, and DeepSeek-r1 via Ollama for specific subagents like testing.