skills/agentic-harness/vault-search/SKILL.md
Search persistent memory for relevant context — including architectural decisions, resolved bugs, and implementation patterns — when the user asks about past decisions, when debugging a recurring issue, when uncertain whether something was already decided, or before re-implementing something that may have been done before. Use when the user says "do you remember…", "what did we decide about…", or "have we solved this before".
npx skillsauth add pantheon-org/tekhne vault-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.
Retrieve relevant memories from the vault using hybrid BM25 + vector search.
Search before you implement, design, or debug — not after. A 2-second search that surfaces a prior constraint saves hours of work in the wrong direction. When search returns empty, say so honestly; never fabricate a memory.
vault-cli search "<query>" [--top-k <n>] [--project <id>]
Exits 1 with "No results." if nothing is found.
"auth token expiry" not "how does auth token expiry work?"--project to narrow scope when working in a known project context"postgres connection" instead of "ECONNREFUSED 5432")If the search exits with "No results.":
vault-cli search "authentication approach"
vault-cli search "database migration strategy" --project my-app
vault-cli search "recurring TypeScript error" --top-k 3
vault-cli search "postgres connection refused" --project api
Each result shows:
1. [category] summary (date)
tier: episodic | strength: 0.87 | score: 0.0312
content preview...
Search memory first; do not re-derive what was already decided. Treat retrieval as cheap and re-work as expensive. Know when not to: trivial, self-evident steps do not need a memory lookup.
vault-cli search "<topic>" first, then build on what returns.tools
A skill that produces warnings but no errors.
testing
A well-formed example skill for testing the validator.
development
A skill with code blocks and imperative instructions for testing content and contamination analysis.
tools