skills/search/SKILL.md
Search over stored LLM sessions using semantic search. Use when you need to find relevant conversations, recall previous session context, or search through historical LLM interactions stored in the tapes system.
npx skillsauth add papercomputeco/tapes tapes-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.
Search over stored LLM sessions using semantic search via the tapes search CLI command.
Use this skill when you need to:
The tapes search command requires:
Start the API with Ollama embeddings:
ollama pull embeddinggemma
ollama serve
tapes serve
Or start the API with OpenAI embeddings:
tapes auth openai
tapes config set embedding.provider openai
tapes serve
Then search through the API:
tapes search "<your query>"
tapes search <query> [flags]
| Flag | Description | Example |
|------|-------------|---------|
| --api-target | Tapes API server URL | http://localhost:8081 |
| Flag | Description | Default |
|------|-------------|---------|
| --top, -k | Number of results to return | 5 |
| --debug | Enable debug logging | false |
tapes search "how to configure logging" \
--api-target http://localhost:8081
tapes search "error handling patterns" \
--top 10 \
--api-target http://localhost:8081
tapes search "authentication flow" \
--debug \
--api-target http://localhost:8081
The search results display:
Example output:
Search Results for: "how to configure logging"
============================================================
[1] Score: 0.8542
Hash: abc123
Role: assistant
Preview: To configure logging in your application ...
Session (3 turns):
|-- [user] How do I set up logging?
|-- [assistant] You can configure logging by ...
`-> [user] What about debug mode?
-k if you need more results to find what you're looking fordata-ai
Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some waiting on outside answers, and others rolling into a later summary.
data-ai
Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some waiting on outside answers, and others rolling into a later summary.
data-ai
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.
data-ai
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.