From superbrain
Searches a user's SuperBrain notes vault to recall past work, prior decisions, and project history. Activated when the user references anything that may already be recorded.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superbrain:superbrain-recallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When the user's question may already be answered by their accumulated notes, call the
When the user's question may already be answered by their accumulated notes, call the
superbrain_search MCP tool (server superbrain) with a focused query (and optional
k, default 8).
[[wikilink]].Recalled memory can lag reality: a session may have crashed before its last checkpoint distilled, or the machine slept mid-conversation. Before answering questions about recent work, check for staleness signals:
When you suspect a gap:
sessions/ in the vault, filtered to this project's slug, newest
first (the filename embeds a unix timestamp: {project}-{ts}.md).## Digest
line summarizes the session as of its last checkpoint; the ## Turn log
carries the raw prompt/reply trail beyond it.~/.claude/projects/<cwd with "/" and "." replaced by "-">/, newest .jsonl by mtime. Read its tail rather
than the whole file. Where resuming would genuinely help, offer
claude --resume <session-id> to the user; never resume on your own.npx claudepluginhub m3talux/superbrain --plugin superbrainSearches an Obsidian vault for past decisions, troubleshooting history, and project knowledge when the user asks about previous work or how something was done. Supports keyword, type-aware, and catalog search.
Retrieves relevant memories from past sessions using memsearch for historical context, decisions, debugging notes, and project knowledge. Activates on relevance or '[memsearch] Memory available' hints.
Retrieves project memory for user queries via three-step fallback: ROOT.md topics triage, frontmatter manifest LLM selection from weekly/monthly notes, qmd search. Use when past knowledge may apply.