From claude-warehouse
Search across all past Claude Code sessions. Use when you need to recall previous work, find solutions to problems you've solved before, or retrieve context from past conversations. Powered by DuckDB keyword search and semantic vector search over session history.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-warehouse:recallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search across all past Claude Code sessions stored in the local DuckDB warehouse.
Search across all past Claude Code sessions stored in the local DuckDB warehouse.
Always run BOTH searches — they complement each other.
${CLAUDE_PLUGIN_ROOT}/scripts/query.py search "$ARGUMENTS"
${CLAUDE_PLUGIN_ROOT}/scripts/vsearch.py "$ARGUMENTS"
Finds results even when exact words don't match. Supports filters: --project X, --days N, --type message|session|research, --limit N.
Keyword returns exact substring matches — high precision, low recall. Semantic returns conceptually similar content — lower precision, high recall. Score > 0.7 = strong match, 0.5-0.7 = related.
Combine both to get a complete picture. Use session IDs to dig deeper with /claude-warehouse:query.
/claude-warehouse:query for complex lookups (e.g., "all sessions in project X that used tool Y")npx claudepluginhub sderosiaux/claude-plugins --plugin claude-warehouseSearches and recalls previous Claude Code conversation sessions by querying a local SQLite FTS5 index or JSONL log files.
Searches prior Claude-Code/Codex-CLI sessions for code patterns, decisions, or work via aichat CLI, jq parsing, and session file reads (max 3). For non-subagent CLI agents.