← ClaudeAtlas

memex-recalllisted

MUST invoke BEFORE responding to the user's first task message. Your memory is NOT loaded until you run this — the index in system-reminder was removed, you must actively retrieve it.
Surviv-ior/memex · ★ 0 · AI & Automation · score 72
Install: claude install-skill Surviv-ior/memex
# Memory Recall You have access to a Zettelkasten memory system via the `memex` CLI. Before starting this task, search your memory for relevant prior knowledge. ## Tools Available Two equivalent interfaces exist — use whichever your environment supports: | CLI (Claude Code with memex in PATH) | MCP tool (VSCode / Cursor / any MCP client) | |---------------------------------------|----------------------------------------------| | `memex read index` | `memex_read` with slug `index` | | `memex search <query>` | `memex_search` with query arg | | `memex read <slug>` | `memex_read` with slug arg | | `memex search` (no args) | `memex_search` with no args | The rest of this skill uses CLI syntax for brevity. Substitute MCP tool calls if CLI is unavailable. ## Process ```dot digraph recall { "Task received" -> "memex read index"; "memex read index" -> "Index exists?" [shape=diamond]; "Index exists?" -> "Scan index for relevant concepts/slugs" [label="yes"]; "Index exists?" -> "Fallback: generate 2-3 search queries" [label="no"]; "Scan index for relevant concepts/slugs" -> "memex read <card>" ; "Fallback: generate 2-3 search queries" -> "memex search <query>"; "memex search <query>" -> "Review summaries"; "Review summaries" -> "Relevant cards found?" [shape=diamond]; "Relevant cards found?" -> "memex read <card>" [labe