Load prior knowledge from Zettelkasten memory before starting any task.
You have access to a Zettelkasten memory system via the memex CLI. Before starting this task, search your memory for relevant prior knowledge.
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.
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>" [label="yes"];
"Relevant cards found?" -> "More queries to try?" [label="no"];
"memex read <card>" -> "See [[links]] in content";
"See [[links]] in content" -> "Links worth following?" [shape=diamond];
"Links worth following?" -> "memex read <linked-card>" [label="yes"];
"Links worth following?" -> "Enough context?" [label="no"];
"memex read <linked-card>" -> "See [[links]] in content";
"Enough context?" -> "More queries to try?" [label="no"];
"More queries to try?" -> "Generate new query" [label="yes"];
"Generate new query" -> "memex search <query>";
"More queries to try?" -> "Summarize findings, proceed with task" [label="no"];
"Enough context?" -> "Summarize findings, proceed with task" [label="yes"];
}
Run memex read index first. The index is a curated concept → card mapping (Luhmann's Schlagwortregister). It's much smaller than all cards combined and gives you the best entry points.
If the index doesn't exist yet (card not found), fall back to Step 2.
memex read them directly.memex search <keyword> for each.When you read a card and see [[links]] in the prose, decide if they're worth following. If yes, memex read <linked-slug>.
When you have enough context, summarize your findings and proceed with the task.
memex search. Following a [[link]] from there is hop 1, etc.memex read calls. If you've read 20 cards, stop immediately.memex read index first — it's the fastest path to relevant cards