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

Unofficial Ultrahuman Ring MCP Server for AI Agent Integration
A community-developed MCP server wraps the Ultrahuman Partner API, allowing AI coding agents to directly access ring and CGM metrics like sleep, HRV, glucose, and recovery scores via structured data calls.

Deblank: Tool to Strip Code Formatting for LLM Token Reduction
Deblank is an open-source tool that strips code formatting (indentation, whitespace, line breaks) before sending to LLMs, reducing tokens by ~30% for Java/C++ and ~9% for Python with ~76ms latency. It supports Python, Java, C/C++, C#, JS/TS, and Go.

SLOP Plugin Adds Real-Time App State Awareness to OpenClaw Agents
A new OpenClaw plugin integrates with SLOP (State Layer for Observable Programs), giving AI agents structured access to application state and contextual actions. The plugin auto-discovers SLOP-enabled apps via ~/.slop/providers/ and a Chrome extension bridge.

Mouser: Open-source alternative to Logitech Options+ for MX Master 3S
Mouser is a lightweight, open-source tool that remaps buttons on the Logitech MX Master 3S mouse without requiring Logitech's proprietary software. It runs fully locally with no telemetry, supports per-application profiles, and includes DPI control and battery monitoring.