From xpowers
Searches long-term memory from previous Claude Code sessions using memsearch, retrieving relevant context to resume work or recall past decisions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/xpowers:recallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search persistent memories from previous Claude Code sessions.
Search persistent memories from previous Claude Code sessions.
Run memsearch search via the Bash tool with the user's query:
memsearch search "<user's query>" --top-k 10
If the user didn't provide a specific query, search for recent work on the current project:
memsearch search "recent work on $(basename "$(git rev-parse --show-toplevel 2>/dev/null || pwd)")" --top-k 10
If a result looks relevant and the user wants more detail, expand it:
memsearch expand <chunk_hash>
If memsearch command is not found, tell the user:
memsearch is not installed. Install it with:
pip install memsearch[onnx]
memsearch config init
npx claudepluginhub dpolishuk/xpowersSearches and recalls relevant memories from past sessions via memsearch. Useful when historical context, past decisions, debugging notes, or project knowledge could help answer the user's question.
Recall facts from past Claude Code sessions using memoir. Helps remember user preferences, decisions, and conventions to maintain consistency across conversations.