By bw2
Recall and summarize recent Claude Code sessions for the current working directory. Parses JSONL session logs to bring previous conversation context into the current session.
A Claude Code plugin that loads and summarizes recent session history for the current working directory, bringing previous conversation context into your current session.
/plugin install bw2/claude-session-recall
Invoke with /claude-session-recall:session-recall or just ask Claude "what did we do last time", "recall previous session", or "what was I working on".
You can also run the script directly:
# Default: last 2 days or last 2 sessions, 40k token budget
python3 scripts/recall_cli.py --cwd "$(pwd)"
# Look back further
python3 scripts/recall_cli.py --cwd "$(pwd)" --days 7
# More sessions
python3 scripts/recall_cli.py --cwd "$(pwd)" --min-sessions 5
# Larger token budget
python3 scripts/recall_cli.py --cwd "$(pwd)" --max-tokens 80000
# JSON output
python3 scripts/recall_cli.py --cwd "$(pwd)" --json
# Include current session
python3 scripts/recall_cli.py --cwd "$(pwd)" --include-current
tiktoken (pip3 install tiktoken)Based on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimAnalyze Claude Code session logs to find recurring fail-then-fix patterns and wheel-spinning loops, then propose CLAUDE.md rules to prevent them.
Curated Claude Code skills and commands for prompt engineering, MCP servers, subagents, hooks, and productivity workflows
npx claudepluginhub bw2/claude-session-recallPersistent local memory for Claude Code. Every tool call, every file edit, every thinking block from every session — stored verbatim on your machine. Semantic recall in ~126ms with zero API calls.
Search across Claude Code and OpenClaw session history. Find past conversations, decisions, and code snippets instantly.
Durable, fully-local project memory for Claude Code. Logs every session to .recall/history.md and condenses it into .recall/context.md with a local Python summarizer (TF-IDF + TextRank) — no API key, no external model, nothing leaves your machine. New sessions resume from the saved context.
qrec session recall engine
Find and resume Claude Code conversations using semantic search. Returns session IDs and project paths for easy resumption via 'claude --resume'.
Use ctx to search local coding-agent history and retrieve cited session context before working.