Installation
npx skills add b-open-io/prompts --skill remind 10
Installs
Remind
Recall and search previous Claude Code conversation sessions to find past discussions, decisions, solutions, and context.
How It Works
This skill searches conversation history using two backends:
- Scribe DB (preferred) — SQLite FTS5 full-text index at
~/.scribe/scribe.dbwith 141K+ indexed messages across all AI coding tool sessions. BM25-ranked results, grouped by session. - JSONL fallback — Direct search through
~/.claude/projects/JSONL conversation files when Scribe isn't available.
The search script at scripts/search.py handles both backends automatically.
When to Use
- User asks about something from a previous conversation
- User wants to continue or reference prior work
- User asks "when did we..." or "remember when..."
- User needs to find a specific past decision, approach, or code snippet
- User wants to see what they worked on for a project/timeframe
Workflow
Step 1: Search
Run the search script with the user's query:
python3 "SKILL_DIR/scripts/search.py" "<query>" [options]Options:
| Flag | Purpose |
|---|---|
--project <path> |
Filter by project path (substring) |
--recent <days> |
Only search last N days |
--limit <n> |
Max results (default: 10) |
--full |
Force JSONL search (skip Scribe DB) |
--json |
Machine-readable output |
--session <id> |
Read a specific session's messages |
--recency-weight <f> |
Recency weight factor (default: 0.2) |
--half-life <days> |
Recency half-life in days (default: 30) |
--no-recency |
Disable recency weighting |
Results are ranked by a blend of BM25 relevance and recency. Recent conversations get a boost that decays exponentially (30-day half-life). Use --no-recency to disable.
Crafting good queries:
- Use 2-3 specific keywords, not full sentences
- Technical terms work best:
"stripe webhook","bap identity","deploy railway" - If too many results, add
--projector--recentfilters - If too few results, try broader terms or
--fullfor deeper search
Step 2: Present Results
Summarize what you found in a clear format:
- Which sessions matched and when they occurred
- What project each session was in
- Key snippets showing the relevant context
- Offer to dive deeper into specific sessions
Step 3: Deep Dive (if needed)
If the user wants more detail from a specific session:
python3 "SKILL_DIR/scripts/search.py" --session <session-id> --jsonThis returns the full conversation transcript. Summarize the relevant portions — don't dump the whole thing.
Step 4: Read Raw JSONL (last resort)
If neither search backend returns results, you can read the JSONL files directly:
# List all project directories
ls ~/.claude/projects/
# List sessions in a specific project
ls ~/.claude/projects/-Users-satchmo-code-myapp/*.jsonl
# The JSONL format has one JSON object per line with these types:
# user — message.content is the user's input
# assistant — message.content is Claude's response (array of text/tool_use blocks)
# progress — tool execution progress
# system — system messagesSession index files (where available) provide quick metadata:
# Check for pre-built session index
cat ~/.claude/projects/<project-dir>/sessions-index.json
# Contains: sessionId, firstPrompt, summary, created, modified, gitBranch, messageCountTips
- Scribe reindex: If Scribe DB exists but results seem stale, the user can rescan with
cd ~/code/scribe && bun run packages/cli/src/index.ts scan chat --provider claude - Cross-project: Searches span all projects by default. Use
--projectto narrow. - Session IDs: These are UUIDs like
69ad65a8-7499-4fd1-9bae-a3f0fcbb11ed. When presenting results, include session IDs so the user can ask for deep dives. - Privacy: Conversation data stays local. Never output sensitive content (keys, tokens) from search results.
Installs
Security Audit
View Source
b-open-io/prompts
More from this source
Power your AI Agents with
the best open-source models.
Drop-in OpenAI-compatible API. No data leaves Europe.
Explore Inference APIGLM
GLM 5
$1.00 / $3.20
per M tokens
Kimi
Kimi K2.5
$0.60 / $2.80
per M tokens
MiniMax
MiniMax M2.5
$0.30 / $1.20
per M tokens
Qwen
Qwen3.5 122B
$0.40 / $3.00
per M tokens
How to use this skill
Install remind by running npx skills add b-open-io/prompts --skill remind in your project directory. Run the install command above in your project directory. The skill file will be downloaded from GitHub and placed in your project.
No configuration needed. Your AI agent (Claude Code, Cursor, Windsurf, etc.) automatically detects installed skills and uses them as context when generating code.
The skill enhances your agent's understanding of remind, helping it follow established patterns, avoid common mistakes, and produce production-ready output.
What you get
Skills are plain-text instruction files — not executable code. They encode expert knowledge about frameworks, languages, or tools that your AI agent reads to improve its output. This means zero runtime overhead, no dependency conflicts, and full transparency: you can read and review every instruction before installing.
Compatibility
This skill works with any AI coding agent that supports the skills.sh format, including Claude Code (Anthropic), Cursor, Windsurf, Cline, Aider, and other tools that read project-level context files. Skills are framework-agnostic at the transport level — the content inside determines which language or framework it applies to.
Chat with 100+ AI Models in one App.
Use Claude, ChatGPT, Gemini alongside with EU-Hosted Models like Deepseek, GLM-5, Kimi K2.5 and many more.