From pi
Searches archived sessions, progressions, and documents across all projects via /recall. Highlights matches, key decisions, dead ends, and snippets for recalling past work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pi:recallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search your archived sessions, progression documents, and indexed files across all projects.
Search your archived sessions, progression documents, and indexed files across all projects.
The user invokes /recall <search terms> to find relevant past work.
When the user invokes /recall, run both searches and present combined results:
${CLAUDE_PLUGIN_ROOT:-~/.claude/project-intelligence}/bin/pi-query "$ARGUMENTS"
${CLAUDE_PLUGIN_ROOT:-~/.claude/project-intelligence}/bin/pi-progression-search "$ARGUMENTS"
If no arguments are provided, show recent sessions:
${CLAUDE_PLUGIN_ROOT:-~/.claude/project-intelligence}/bin/pi-query --recent 5
Present the results in a clean format. For sessions, highlight:
For progressions, highlight:
If the user wants more detail about a specific session, the raw JSONL archive can be found at ${CLAUDE_PLUGIN_ROOT:-~/.claude/project-intelligence}/archives/<project>/<session-id>.jsonl.
To search only documents: --docs-only
To search only progressions, use /progress search instead.
/recall API optimization - Find sessions and progressions about API optimization/recall cost savings - Find cost-related work across all projects/recall --project myapp containers - Search within myapp sessions only/recall --recent 10 - Show last 10 sessionsnpx claudepluginhub theaichimera/claude-code-project-intelligenceSearches 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.
Searches claude-mem's persistent cross-session memory database to retrieve work from previous sessions. Follows a search-filter-fetch workflow to minimize token usage.
Searches past coding sessions, plans, and memory across all projects using cman tools. Supports recaps and keyword search for finding specific past work.