find-claude
Installation
SKILL.md
Find Claude — Conversation History Search
Search and navigate Claude Code conversation histories across all projects. Two-phase: index for fast lookup, grep as fallback for deep content search.
Step 0: Ensure search is ready
Check if the keyword index exists:
test -f ~/.claude/session-index/index.json && echo "INDEX EXISTS" || echo "NO INDEX"
If NO INDEX (first time): run the full setup script. This builds the keyword index and optionally installs semantic search (episodic-memory). Tell the user what's happening — first-time setup takes a few minutes.
bash ~/.claude/skills/find-claude/scripts/setup.sh
If INDEX EXISTS: run an incremental update (<1s):