search-conversations
Search past Claude Code conversations. Use when user says "search conversations", "find that chat", "what did we discuss", "where did we talk about", "look up past session", "find conversation about X", "search history", "what did I ask about", "remember when we", "that discussion about". Also triggers on past-tense questions referencing prior work or possessives without context.
npx skills add majiayu000/claude-skill-registry --skill search-conversations --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# search-conversations ## Extraction ```bash python3 ~/.claude/skills/search-conversations/scripts/extract_conversations.py --days 3 ``` | Option | Effect | |--------|--------| | `--days N` | Days from last activity (not today) | | `--from-today` | Days from today instead | | `--all-projects` | Cross-project (implies --from-today) | | `--project /path` | Filter to specific project | | `--compact` | No metadata, more conversation | | `--min-exchanges N` | Skip sessions with < N exchanges | | `--ids abc,def` | Fetch specific conversations | | `--paths /path.jsonl` | Direct file paths | **Output**: Default shows files, tools, errors + conversation. `--compact` omits metadata. **Time modes**: `--days N` counts from last activity (useful when returning to old projects). `--all-projects` or `--from-today` counts from today (calendar-based). ## Workflow 1. **Identify the lens** from user intent (see Routing table below) 2. **Extract recent context** using the script with lens-appropriate parameters: ```bash python3 ~/.claude/skills/search-conversations/scripts/extract_conversations.py --days N [flags] ``` Use the Parameters table to select `--days`, flags, and any supplementary data to ga
- Extraction
- Workflow
- Lenses
- Routing
- Parameters
- Core Questions
- Supplementary Search Patterns
- Synthesis
- Principles
- Structure
- Length
python3 ~/.claude/skills/search-conversations/scripts/extract_conversations.py --days 3 python3 ~/.claude/skills/search-conversations/scripts/extract_conversations.py --days N [flags] qmd search "keyword from context" -c conversations -n 15 --files
What does the search-conversations skill do?
Search past Claude Code conversations. Use when user says "search conversations", "find that chat", "what did we discuss", "where did we talk about", "look up past session", "find conversation about X", "search history", "what did I ask about", "remember when we", "that discussion about". Also triggers on past-tense questions referencing prior work or possessives without context.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill search-conversations --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
