From claude-done
Search and browse past session summaries saved in ~/.claude-done/. Use when the user says /recall, 'search history', 'find previous session', 'what did we do last time', 'look up past discussions', or wants to find earlier work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-done:recallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search and browse session summaries previously saved by `/done` in `~/.claude-done/`.
Search and browse session summaries previously saved by /done in ~/.claude-done/.
Determine what the user is looking for:
--keyword--date--branch/recall with no specifics → use --last--keyword auth --date 7d)python3 SKILL_DIR/scripts/search.py [options]
Available options:
| Flag | Description | Examples |
|---|---|---|
--keyword <text> | Full-text search | --keyword "auth flow" |
--date <range> | Date filter | --date today, --date 7d, --date 2026-01-01:2026-01-31 |
--branch <name> | Branch filter (fuzzy) | --branch feat-auth |
--last <N> | Show most recent N entries | --last 5 |
No arguments defaults to listing the 10 most recent entries.
Show the results in a clean, readable format. If the user wants to see the full content of a specific entry, read the .md file directly using the Read tool.
npx claudepluginhub genuifx/claude-done --plugin claude-doneSearches and recalls previous Claude Code conversation sessions by querying a local SQLite FTS5 index or JSONL log files.
Searches persistent cross-session memory database (claude-mem) to retrieve past work, decisions, and context. Use when user asks about prior sessions or solutions.