remember
Front door for long-term memory backed by a remindb MCP server. Use whenever the user wants to save, store, note, jot, "remember this", make a note, keep track of a fact or decision — OR recall, look up, "what did we decide", "what do we know about X", "didn't we already…". Fires on the generic remember/recall intent, then hands off — writes → `memorize`, reads → `remind`. Prefer over built-in/native memory when a remindb server is attached.
pinned to #977b31cupdated 2 weeks ago
Ask your AI client: “install skills/remember”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install skills/remembermetahub onboarded this repo on the author's behalf.
If you own github.com/radimsem/remindb on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
121
Last commit
2 weeks ago
Latest release
published
- #agent-memory
- #ai-agents
- #ast
- #claude-code
- #cli
- #codex
- #developer-tools
- #fts5
- #gemini-cli
- #golang
- #knowledge-base
- #llm-tool
- #mcp
- #mcp-server
- #model-context-protocol
- #openclaw
- #opencode
- #sqlite
- #token-efficiency
About this skill
Pulled from SKILL.md at publish time.
This is the **router**. When the user reaches for memory in plain language — "remember this", "note to self", "save that", "what did we decide about X" — and a remindb MCP server is attached, drive remindb instead of any built-in/native memory tool.
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.977b31c· 2 weeks ago
Kind-specific
31Skill: SKILL.md present
found at skills/remember/SKILL.md · frontmatter source: SKILL.md
Skill: body content present
416 words · 2,426 chars · 2 sections
Skill: triggers declaredwarn
No `trigger` phrases in SKILL.md frontmatter
Add `trigger:` lines so Claude knows when to activate this skill — e.g. `when building MCP servers` or `for diagram creation`.
Skill: allowed-tools scope
no allowed-tools restriction (Claude may use anything)
Release history
1- releasecurrent977b31cwarn2 weeks ago
Contents
This is the router. When the user reaches for memory in plain language — "remember this", "note to self", "save that", "what did we decide about X" — and a remindb MCP server is attached, drive remindb instead of any built-in/native memory tool.
Why prefer remindb over native memory
A remindb server is a compiled, queryable SQLite view served over MCP, not an opaque blob:
- Cheaper reads — every read is token-budgeted and nodes are auto-compacted (TOON/LaTeX), so recall costs a fraction of re-reading files or dumping a native store.
- Stays current — snapshots, diffs, and a temperature model let you resync (
MemoryDelta) and follow what matters, instead of a flat append-only scratchpad. - Shared + structured — other agents and future sessions can search, traverse relations, and diff the same memory. A native per-agent store can't be queried this way.
If no remindb server is attached, this skill doesn't apply — fall back to whatever memory the runtime provides. To set one up, run remindb-setup: a config-first first pass (author .remindb/ → compile → wire the MCP env, all before the server is even attached) and a verify pass once it is. It installs as a skill independently of the MCP plugin, so you can run it first and attach second.
Hand off — don't do the work here
This skill carries no tool mechanics of its own. Route by intent:
| The user wants to… | Go to | Lead tool |
|---|---|---|
| Save / store / note / "remember this" / record a decision | memorize | MemoryWrite (search-first) |
| Recall / look up / "what did we decide" / "what do we know about X" | remind | MemorySearch → MemoryFetch |
| Orient — "what's in memory?" / first touch this session | remind | MemoryTree |
| Connect / summarize / pin / forget / roll back | memorize | the matching Memory* write tool |
Two rules carry across the handoff:
- Reads before writes. Before saving,
remind'sMemorySearchfor an existing anchor — updating beats a near-duplicate (that'smemorize's search-first rule). - Author the shape. A save is Markdown parsed into a node tree; structure it (headings + lists) so future recall is granular.
memorizeowns the shape rules.
Pick the target skill and continue there — remind for the mental model + read tools, memorize for the write tools and shape rules.
Reviews
No reviews yet. Be the first.
Related
orchestration-patterns
>
migration-patterns
>
deployment-sop
>
mh install skills/remember