Agent skill · AI & Agents

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill search-conversations --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/analysis/search-conversations/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Extraction
  2. Workflow
  3. Lenses
  4. Routing
  5. Parameters
  6. Core Questions
  7. Supplementary Search Patterns
  8. Synthesis
  9. Principles
  10. Structure
  11. Length
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going