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

Local Trello-Style Project Manager for OpenClaw Agents
A developer built a local Trello-like project management tool that runs on the same machine as their OpenClaw agent, storing cards as markdown files with YAML frontmatter. The system uses Node.js/Express for the API, React for the UI, and allows the AI agent to read/write files directly on the filesystem.

Bifrost LLM Gateway: 11 Microsecond Overhead, Single Binary in Go
Bifrost is an open-source LLM proxy written in Go that routes requests to OpenAI, Anthropic, Azure, and Bedrock with 11 microsecond overhead per request, handling 5,000 RPS on a $20/month VPS.

FOMOE Enables 397B Qwen3.5 Model Inference on $2,100 Desktop Hardware
FOMOE (Fast Opportunistic Mixture of Experts) allows running Qwen3.5's 397 billion parameter flagship model at 5-9 tokens/second on consumer hardware using two $500 GPUs, 32GB RAM, and an NVMe drive with Q4_K_M quantization.

Reddit user measures MCP token overhead: 67K tokens consumed before any question
A developer measured their MCP server token overhead at 67,000 tokens consumed before typing a single question, with Playwright MCP using 13,600 tokens and GitHub MCP using 18,000 tokens idle. They replaced MCP with skills and CLI tools for lower context costs.