Engram: A Learning Plugin for OpenClaw That Actually Makes Knowledge Stick

Engram is a learning plugin for OpenClaw that applies spaced repetition and retrieval practice to help developers actually retain knowledge. Built by someone who found that AI agents made him 10x faster at building but didn't improve his own learning speed, Engram focuses on the human side of the equation.
How It Works
- Topic breakdown: Run
/learn kalman filters(or any topic) and an agent builds a dependency map — what must be understood before what — rather than following chapter order. - Pre-test tutoring: You answer before the agent explains. Guessing wrong before being taught improves retention. Being made to retrieve beats rereading by a wide margin, per old findings that few tools implement.
- Blind grading: A second agent grades your answers without seeing the lesson — only the rubric and your exact words. This prevents the grader from grading the lesson instead of your recall. Every grade is written to disk as a receipt; nothing counts as learned without one.
- Spaced repetition: The scheduler uses FSRS-4.5 (the same algorithm behind modern Anki) to book each concept's next review just before you'd forget it. A
/reviewsession takes two to four minutes. - Local only: All data is plain JSON on your machine. No account, no cloud, no network code in the engine.
OpenClaw Integration
Engram runs in OpenClaw chat, so /review can happen on your phone — where the schedule often sends reviews when you're away from a desk. Install with three commands:
openclaw plugins install engram --marketplace nagisanzenin/engram
openclaw config set hooks.internal.enabled true
openclaw gateway restartNote: OpenClaw ignores plugin hooks until internal hooks are enabled. Without it, the due-review reminder sits listed as ready but never fires. The author notes that OpenClaw support shipped today and while skills, grading, and scheduling are verified on a live install, the reminder landing in every chat channel has only been tested locally.
📖 Read the full source: r/openclaw
👀 See Also

Codebase Memory MCP: Graph-based code exploration for Claude Code
A developer built an MCP server that indexes codebases into a persistent knowledge graph using Tree-sitter and SQLite, reducing token usage by 20x on average for structural queries like call tracing and dead code detection.

blend-ai: New Blender MCP Service for Claude Code
blend-ai is a new Blender MCP service that allows Claude Code to generate 3D scenes. A user reported it worked faster and better than blender-mcp, creating a shuttle launch scene from reference images in 5 minutes.

WebClaw: Open-Source MCP Server for Web Extraction with Claude
WebClaw is an open-source MCP server built with Claude Code that provides web extraction tools for Claude Desktop and Claude Code, solving Claude's built-in web_fetch limitations with TLS fingerprinting and content optimization.

SpecLock: MCP Server for Enforcing AI Coding Constraints
SpecLock is an open-source MCP server that remembers project constraints across sessions and blocks AI coding agents from violating them. Claude independently tested it with 100 adversarial tests, scoring 100/100 with zero false positives and 15.7ms per check.