Remembering Conversations is a ai-agents claude skill built by Jesse Vincent. Best for: Claude Code users need to retrieve historical context, architectural decisions, and past solutions without reinventing solutions..
- What it does
- Search archived conversations using semantic similarity or exact text matching to find facts, patterns, and decisions.
- Category
- ai-agents
- Created by
- Jesse Vincent
- Last updated
Remembering Conversations
Search archived conversations using semantic similarity or exact text matching to find facts, patterns, and decisions.
Skill instructions
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:
search-conversations "query" # Vector similarity (default)
search-conversations --text "exact" # Exact string match
search-conversations --both "query" # Both modes
Flags:
--after YYYY-MM-DD # Filter by date
--before YYYY-MM-DD # Filter by date
--limit N # Max results (default: 10)
--help # Full usage
Examples:
# 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
Use this skill
Most skills are portable instruction packages. Claude Code supports SKILL.md directly. Other agents can use adapted files like AGENTS.md, .cursorrules, and GEMINI.md.
Claude Code
Save SKILL.md into your Claude Skills folder, then restart Claude Code.
mkdir -p ~/.claude/skills/remembering-conversations && curl -L "https://raw.githubusercontent.com/obra/superpowers-skills/HEAD/skills/collaboration/remembering-conversations/SKILL.md" -o ~/.claude/skills/remembering-conversations/SKILL.mdInstalls to ~/.claude/skills/remembering-conversations/SKILL.md.
Use cases
Claude Code users need to retrieve historical context, architectural decisions, and past solutions without reinventing solutions.
Reviews
No reviews yet. Be the first to review this skill.
No signup required
Stats
Creator
JJesse Vincent
@obra