Engram v1.0.0: Persistent Memory for Local LLMs via Knowledge Graph

What Engram Does
Engram solves the problem of LLMs forgetting everything between sessions by providing persistent memory via a knowledge graph. Unlike vector databases that only find similar text, Engram understands relationships and can reason over them.
Core Features
- Knowledge graph with typed entities, relationships, and properties
- Hybrid search combining BM25 + vector similarity using Ollama/OpenAI embeddings or local ONNX
- Confidence lifecycle where facts strengthen with confirmation, weaken with time, and correct on contradiction
- Inference engine with forward/backward chaining that derives new facts from rules
- Built-in MCP server that works with Claude Code, Cursor, and Windsurf out of the box
- HTTP REST API with 25+ endpoints on port 3030
- Built-in web UI for graph exploration, search, and natural language queries
- Peer-to-peer mesh sync between instances with ed25519 authentication
- CORS enabled for any frontend integration
Technical Details
The entire system runs as an 8.3 MB binary with zero external dependencies. All data lives in a single .brain file that can be copied to back up or moved to migrate. No cloud, Docker, Python, or external database is required.
MCP Integration
MCP configuration is simple:
{
"mcpServers": {
"engram": {
"command": "engram",
"args": ["mcp", "/path/to/knowledge.brain"]
}
}
}The MCP server exposes these tools: engram_store, engram_relate, engram_query, engram_search, engram_prove, and engram_explain.
Quick Start Commands
engram create my.brain
engram store "PostgreSQL" my.brain
engram serve my.brainAfter running engram serve, the web UI is available at http://localhost:3030.
Availability
Engram is free for personal, research, and education use, with a commercial license available. The source and releases are on GitHub.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Claudebin: Export and Share Your Claude Code Sessions
Claudebin allows you to export entire Claude Code sessions, making them shareable and resumable through a single URL.

Collection of 177 OpenClaw SOUL.md Templates Organized into 24 Categories
A developer has compiled 177 ready-to-use SOUL.md templates for OpenClaw agents across 24 categories including Marketing, Development, Business, DevOps, Finance, Creative, Data, Security, Healthcare, Legal, HR, and Education. All templates are MIT licensed and available on GitHub.

Fullerenes: Open-source persistent memory layer for coding agents cuts tokens by 64% on SWE-bench
Fullerenes uses a local SQLite knowledge graph built via Tree-sitter to give coding agents like Claude Code persistent memory, reducing token usage by 64% on SWE-bench and up to 96.6% on internal benchmarks.

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.