Using Cortex — When to Consult the Vault
The cortex vault is the user's own knowledge base: distilled Notes,
Projects, and Raw session records. This skill decides when
consulting it is warranted, and hands the actual search to the
cortex-query skill.
Retrieval is worth doing when there is a concrete signal that prior context
exists. It is not worth doing on speculation — an unprompted search costs
the user tokens and latency, and surfacing unrelated notes pollutes the
answer.
Search the vault when any of these is true
- Explicit request. The user asks for it: "check cortex", "查一下
cortex", "有沒有記錄過", "do I have notes on this".
- Reference to prior work. The user points at something earlier:
"之前那個", "上次的", "我記得有", "我們討論過", "that ticket", "the
project we set up", "continue where we left off".
- Listed topic. The request names a topic that the SessionStart hook
actually listed for this vault. The list is authoritative — match
against what it showed, not against a guess about what might exist.
- Resuming a session. The user asks to pick up, continue, or hand off
work from a previous session.
In each case, invoke the cortex-query skill rather than searching the
vault directly — that skill knows the retrieval infrastructure, including
cortex-vec and its fallbacks.
Do not search the vault when
- The user has not given any of the four signals above. A question being
difficult, technical, or open-ended is not a signal.
- The user picked option 4 ("直接開始工作") from the SessionStart menu,
or skipped the menu. That choice means "do not go to the vault"; honour
it for the rest of the session unless the user later asks.
- The user says "don't check cortex", "just answer directly", or similar.
- The task is self-contained: editing code in the current repo, answering
from the current turn, or anything the conversation already supplies.
When in doubt, answer directly. If the answer would have been better
with vault context, the user can ask — and signal 1 then applies.
How to apply
- Check the four signals against the user's actual message. If none
matches, proceed without the vault and do not mention it.
- If one matches, invoke
cortex-query.
- If results are relevant, ground the answer in them and cite the source
page. If nothing relevant comes back, say so briefly and continue.
Anti-patterns
- ❌ Searching on every message, or at conversation start, "just in case".
- ❌ Treating a hard question as implicit permission to search.
- ❌ Overriding the user's option 4 / "skip the vault" choice.
- ❌ Grepping the vault directly instead of going through
cortex-query.
- ❌ Announcing "let me check cortex" when no signal applies.
Why This Skill Exists
The individual cortex skills fire on their own explicit phrases. This skill
adds the small set of cases where the user has clearly gestured at prior
work without naming a command — so the vault gets consulted when it will
actually help, and stays out of the way otherwise.
1---2name: using-cortex3description: Use when the user asks to check the cortex vault, refers to earlier work ("last time", "that project", "we discussed", "之前那個", "上次的"), asks to resume something from a previous session, or names a topic the SessionStart hook listed for this vault. Routes the request to the cortex-query skill so the answer is grounded in the user's own notes instead of re-derived. Do not use for general questions, for fresh work with no prior-context signal, or when the user has asked to skip the vault.4---56# Using Cortex — When to Consult the Vault78The cortex vault is the user's own knowledge base: distilled Notes,9Projects, and Raw session records. This skill decides **when**10consulting it is warranted, and hands the actual search to the11`cortex-query` skill.1213Retrieval is worth doing when there is a concrete signal that prior context14exists. It is not worth doing on speculation — an unprompted search costs15the user tokens and latency, and surfacing unrelated notes pollutes the16answer.1718## Search the vault when any of these is true19201. **Explicit request.** The user asks for it: "check cortex", "查一下21 cortex", "有沒有記錄過", "do I have notes on this".222. **Reference to prior work.** The user points at something earlier:23 "之前那個", "上次的", "我記得有", "我們討論過", "that ticket", "the24 project we set up", "continue where we left off".253. **Listed topic.** The request names a topic that the SessionStart hook26 actually listed for this vault. The list is authoritative — match27 against what it showed, not against a guess about what might exist.284. **Resuming a session.** The user asks to pick up, continue, or hand off29 work from a previous session.3031In each case, invoke the `cortex-query` skill rather than searching the32vault directly — that skill knows the retrieval infrastructure, including33`cortex-vec` and its fallbacks.3435## Do not search the vault when3637- The user has not given any of the four signals above. A question being38 difficult, technical, or open-ended is **not** a signal.39- The user picked **option 4 ("直接開始工作")** from the SessionStart menu,40 or skipped the menu. That choice means "do not go to the vault"; honour41 it for the rest of the session unless the user later asks.42- The user says "don't check cortex", "just answer directly", or similar.43- The task is self-contained: editing code in the current repo, answering44 from the current turn, or anything the conversation already supplies.4546When in doubt, **answer directly**. If the answer would have been better47with vault context, the user can ask — and signal 1 then applies.4849## How to apply50511. Check the four signals against the user's actual message. If none52 matches, proceed without the vault and do not mention it.532. If one matches, invoke `cortex-query`.543. If results are relevant, ground the answer in them and cite the source55 page. If nothing relevant comes back, say so briefly and continue.5657## Anti-patterns5859- ❌ Searching on every message, or at conversation start, "just in case".60- ❌ Treating a hard question as implicit permission to search.61- ❌ Overriding the user's option 4 / "skip the vault" choice.62- ❌ Grepping the vault directly instead of going through `cortex-query`.63- ❌ Announcing "let me check cortex" when no signal applies.6465## Why This Skill Exists6667The individual cortex skills fire on their own explicit phrases. This skill68adds the small set of cases where the user has clearly gestured at prior69work without naming a command — so the vault gets consulted when it will70actually help, and stays out of the way otherwise.