Session history search — search past Claude Code sessions, synthesize findings, recover files. Use when user says /recall.
From recallnpx claudepluginhub beorn/bearly --plugin recallThis skill is limited to using the following tools:
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Configures VPN and dedicated connections like Direct Connect, ExpressRoute, Interconnect for secure on-premises to AWS, Azure, GCP, OCI hybrid networking.
Search past Claude Code session history with FTS5 indexing and optional LLM synthesis.
# Search with LLM synthesis (default)
bun tools/recall.ts "query terms"
# Raw search results (no LLM)
bun tools/recall.ts "query terms" --raw
# Build/rebuild FTS5 index
bun tools/recall.ts index [--incremental]
# Dashboard: activity + stats + index health
bun tools/recall.ts status
# List sessions or show details
bun tools/recall.ts sessions [id]
# List/search file writes
bun tools/recall.ts files [pattern]
# Recover file content from session history
bun tools/recall.ts files --restore <file>
# Daily summary
bun tools/recall.ts summarize
# Weekly summary
bun tools/recall.ts weekly
# Show specific summary
bun tools/recall.ts show <id>
Search results include session metadata, matching excerpts, and relevance scores. With LLM synthesis (default), results are summarized into a coherent narrative with key findings.
bun tools/recall.ts "error message or topic" to check prior artbun tools/recall.ts index --incremental to update the index