memex-organizelisted
Install: claude install-skill Surviv-ior/memex
# Memory Organize
You are maintaining a Zettelkasten memory system. Your job is to keep the card network healthy.
## 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 search [query]` | `memex_search` with optional query arg |
| `memex read <slug>` | `memex_read` with slug arg |
| `memex write <slug>` | `memex_write` with slug arg and body |
| `memex links` | `memex_links` with no args |
| `memex links <slug>` | `memex_links` with slug arg |
| `memex archive <slug>` | `memex_archive` with slug arg |
The rest of this skill uses CLI syntax for brevity. Substitute MCP tool calls if CLI is unavailable.
## Process
```dot
digraph organize {
"Organize report" -> "Detect orphans (in=0)";
"Detect orphans (in=0)" -> "For each orphan: memex read + search related";
"For each orphan: memex read + search related" -> "LLM decides: append links / mark stale / leave alone";
"Organize report" -> "Detect hubs (in >= 10)";
"Detect hubs (in >= 10)" -> "LLM decides: split into smaller cards or leave alone";
"Organize report" -> "Recently modified pairs";
"Rece