Install
openclaw skills install @elonaug7/mnemosyneCognitive memory engine for AI agents: gives OpenClaw/Hermes human-like long-term memory using 140 years of cognitive psychology (compound-cue theory), not embeddings. Zero LLM API, zero vector DB, pure Markdown storage. Use when the agent needs cross-session recall of user facts, preferences, decisions, or conversation history; when setting up persistent memory that survives restarts; when the user asks 'do you remember X' or complains the agent forgets; when memory must stay 100% local with no API cost. Beats embedding-based systems on Memory-Native benchmarks (nDCG 0.238, 5.2x) with ~7ms keyword search.
openclaw skills install @elonaug7/mnemosyneGive the agent a real long-term memory: four layers (raw → working → medium → long-term), scored by cognitive-psychology formulas instead of neural embeddings.
familiarity = 0.35·imp + 0.25·recency + 0.25·keyword + 0.10·hitFreq + 0.05·layerW
Every weight traces to a named psychology paper (Raaijmakers & Shiffrin 1981, Ebbinghaus 1885, Zeigarnik 1927). No hyperparameter sweep, no neural network.
git clone https://github.com/ElonAug7/Mnemosyne-agentmemory-engine-openclaw-hermes
cd Mnemosyne-agentmemory-engine-openclaw-hermes/Mnemosyne-v6.4
bash install.sh
Installer auto-injects the memory protocol into SOUL.md / AGENTS.md and serves a Web UI at http://127.0.0.1:8765.
memory/short/working/last-recall.json; if it holds flashbacks, inject them as context.node tools/memory-engine/engine.js recall --query "<keywords>".node tools/memory-engine/engine.js search --query "..." --mode keyword — search (~7ms)node tools/memory-engine/engine.js recall --query "..." — structured recallnode tools/memory-engine/engine.js profile — user profile (tech stack, style, decisions)node tools/memory-engine/engine.js todos — todo listnode tools/memory-engine/engine.js sync --quick — session maintenancereferences/ — full architecture, benchmark methodology, Hermes adapter docs.