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".
70
85%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
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 apiEach 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.a1083f4
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.