dotfiles/claude-code/skills/transcript-search/SKILL.md
Search saved session transcripts for past decisions, actions, errors, and context that has left the current conversation window.
npx skillsauth add jimweller/dotfiles transcript-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
STARTER_CHARACTER = 🗃️
Search the global session memory database for past conversations using hybrid FTS5 + vector retrieval.
~/.claude/session_memory.db (global, all projects)
TR=~/.config/dotfiles/dotfiles/claude-code/tools/total-recall
$TR/.venv/bin/python $TR/retrieve.py "QUERY" --db ~/.claude/session_memory.db
Default output is --format context which produces XML-tagged conversation
excerpts ready to read directly.
| Flag | Purpose |
| ------------------------ | ---------------------------------------------------- |
| --project NAME | Restrict to a specific project |
| --top-k N | Number of seed matches before expansion (default: 5) |
| --window N | Context window +/- N around each match (default: 2) |
| --budget N | Max chunks in final output (default: 20) |
| --tokens N | Max tokens in final output (default: 6000) |
| --session ID | Restrict to a specific session_id |
| --no-tools | Exclude tool_use/tool_result chunks |
| --no-vectors | FTS5 keyword search only (skip embeddings) |
| --format json | JSON array output for programmatic use |
| --roles user,assistant | Filter by role |
--project or --session--top-k or --budget--no-vectors to restrict to FTS5--no-tools when searching for decisions or discussion (skips noisy
tool output)--format json when you need to process results programmaticallytesting
Search saved session transcripts for past decisions, actions, errors, and context that has left the current conversation window.
data-ai
Review a PRD for defects via Claude opus subagent.
development
Markdown authoring guidelines for formatting, code blocks, and structure. Use when writing or editing markdown files.
development
--- name: md-style description: README style guide for concise, direct documentation. Use when writing or editing README files. ß--- <!-- markdownlint-disable-file MD041 --> # README Style Guide Write concise, direct README files for experienced engineers. ## Principles - **No fluff** - Skip tables of contents, verbose explanations, development history - **No roadmaps** - Document current state only, not plans or decisions. Readme is an engineering specification. Not a project plan or chan