一键导入
lumetra-engram
Persistent, explainable memory for your OpenClaw agent — store facts and recall them later via the hosted Engram MCP server (by Lumetra).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Persistent, explainable memory for your OpenClaw agent — store facts and recall them later via the hosted Engram MCP server (by Lumetra).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | lumetra-engram |
| description | Persistent, explainable memory for your OpenClaw agent — store facts and recall them later via the hosted Engram MCP server (by Lumetra). |
| user-invocable | true |
| metadata | {"openclaw":{"emoji":"🧠","version":"0.1.1","homepage":"https://lumetra.io","repository":"https://github.com/lumetra-io/engram-openclaw-skill","license":"MIT","author":"Lumetra <hi@lumetra.io>","keywords":["memory","mcp","engram","lumetra","context"],"requires":{"bins":["mcporter"],"env":["ENGRAM_API_KEY"]},"install":[{"id":"node","kind":"node","package":"mcporter","bins":["mcporter"],"label":"Install mcporter (node)"}]}} |
You have access to Engram, a hosted memory service for AI agents. Engram lets you remember facts, decisions, and context across conversations using a hybrid retrieval engine (BM25 + vector + knowledge graph) and returns an explanation trace with every recall.
The Engram tools are surfaced through mcporter from the MCP server registered as engram-lumetra (or whatever name the operator chose during setup — see the one-time setup below). When in doubt, call mcporter list to see the available servers and tool selectors.
Before this skill can do anything, the operator must register the Engram MCP server with mcporter. Single command:
mcporter config add engram-lumetra https://mcp.lumetra.io/mcp/sse \
--transport sse \
--header "Authorization=Bearer $ENGRAM_API_KEY"
After that, mcporter list should show engram-lumetra with 6 tools and mcporter call engram-lumetra.list_buckets should return a JSON bucket list. If mcporter is missing, OpenClaw will offer to install it from the requirement declaration above.
The server is named
engram-lumetrarather than justengramto avoid colliding with staleengramentries thatmcportermay auto-import from~/.cursor/mcp.json,~/.codeium/windsurf/mcp_config.json, or similar editor configs.
engram-lumetra.query_memory first and ground your answer in the results.engram-lumetra.store_memory to capture it.engram-lumetra.store_memory.mcporter call)| Tool | Description |
|---|---|
engram-lumetra.store_memory(content, bucket?) | Save a fact. bucket defaults to "default". |
engram-lumetra.query_memory(question, bucket?) | Hybrid retrieval + synthesized answer with citations. |
engram-lumetra.list_memories(bucket, limit?) | List memories in a bucket, newest first (limit 1–100, default 20). |
engram-lumetra.list_buckets() | Show all buckets in the tenant. |
engram-lumetra.delete_memory(memory_id, bucket) | Delete one memory by ID. |
engram-lumetra.clear_memories(bucket) | Delete every memory in a bucket (destructive!). |
If the operator registered the server under a different name, substitute it for engram-lumetra. in every selector.
"User prefers dark mode." Bad: "The user mentioned they like dark mode, also they live in Seattle, also...""work", "personal", "project-alpha". If no bucket fits, omit it and the default bucket is used.Engram is bring-your-own-key end-to-end — inference (embeddings, synthesis, graph extraction) runs through the user's OpenAI / Anthropic / Groq / Together / Fireworks / DeepSeek key configured at https://lumetra.io/models. Without a provider key, every store_memory and query_memory returns HTTP 412. If you see that error, tell the user to visit the models page.