Back to skills
SkillHub ClubShip Full StackFull Stack

Remembering Conversations

Searches archived Claude conversations using semantic or exact text matching. Helps developers find past discussions, decisions, and solutions instead of re-solving problems. Works via CLI or within Claude Code sessions with subagents to save context.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
4
Hot score
81
Updated
March 20, 2026
Overall rating
A8.0
Composite score
5.0
Best-practice grade
F36.0

Install command

npx @skill-hub/cli install cameronsjo-claude-marketplace-remembering-conversations
conversation-searchcontext-retrievalsemantic-searchdeveloper-tools

Repository

cameronsjo/claude-marketplace

Skill path: plugins/research/skills/remembering-conversations

Searches archived Claude conversations using semantic or exact text matching. Helps developers find past discussions, decisions, and solutions instead of re-solving problems. Works via CLI or within Claude Code sessions with subagents to save context.

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: Developers and teams using Claude Code who frequently reference past technical discussions and decisions.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: cameronsjo.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install Remembering Conversations into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/cameronsjo/claude-marketplace before adding Remembering Conversations to shared team environments
  • Use Remembering Conversations for productivity workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: Remembering Conversations
description: Search previous Claude Code conversations for facts, patterns, decisions, and context using semantic or text search
when_to_use: when partner mentions past discussions, debugging familiar issues, or seeking historical context about decisions and patterns
version: 1.1.0
---

# Remembering Conversations

Search archived conversations using semantic similarity or exact text matching.

**Core principle:** Search before reinventing.

**Announce:** "I'm searching previous conversations for [topic]."

**Setup:** See INDEXING.md

## When to Use

**Search when:**
- Your human partner mentions "we discussed this before"
- Debugging similar issues
- Looking for architectural decisions or patterns
- Before implementing something familiar

**Don't search when:**
- Info in current conversation
- Question about current codebase (use Grep/Read)

## In-Session Use

**Always use subagents** (50-100x context savings). See skills/using-skills for workflow.

**Manual/CLI use:** Direct search (below) for humans outside Claude Code sessions.

## Direct Search (Manual/CLI)

**Tool:** `${SUPERPOWERS_SKILLS_ROOT}/skills/collaboration/remembering-conversations/tool/search-conversations`

**Modes:**
```bash
search-conversations "query"              # Vector similarity (default)
search-conversations --text "exact"       # Exact string match
search-conversations --both "query"       # Both modes
```

**Flags:**
```bash
--after YYYY-MM-DD    # Filter by date
--before YYYY-MM-DD   # Filter by date
--limit N             # Max results (default: 10)
--help                # Full usage
```

**Examples:**
```bash
# Semantic search
search-conversations "React Router authentication errors"

# Find git SHA
search-conversations --text "a1b2c3d4"

# Time range
search-conversations --after 2025-09-01 "refactoring"
```

Returns: project, date, conversation summary, matched exchange, similarity %, file path.

**For details:** Run `search-conversations --help`
Remembering Conversations | SkillHub