cortex-broadcast
llm-wiki style broadcast ingest — conversational update of related existing pages when a Raw has been distilled. Use when the user says "broadcast", "跑…
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
$ npx -y skills add XBlueSky/cortexes --skill using-cortex --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/using-cortexContext preview
The summary Claude sees to decide when to auto-load this skill.
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
name: using-cortex
description: >
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.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.
1. **Explicit request.** The user asks for it: "check cortex", "查一下 cortex", "有沒有記錄過", "do I have notes on this". 2. **Reference to prior work.** The user points at something earlier: "之前那個", "上次的", "我記得有", "我們討論過", "that ticket", "the project we set up", "continue where we left off". 3. **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. 4. **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.
difficult, technical, or open-ended is **not** a signal.
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.
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.
1. Check the four signals against the user's actual message. If none matches, proceed without the vault and do not mention it. 2. If one matches, invoke `cortex-query`. 3. If results are relevant, ground the answer in them and cite the source page. If nothing relevant comes back, say so briefly and continue.
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.
Personal knowledge vault plugin for Claude Code — session recording, memory distillation, and hybrid semantic + BM25 retrieval.
Repo: XBlueSky/cortexes
llm-wiki style broadcast ingest — conversational update of related existing pages when a Raw has been distilled. Use when the user says "broadcast", "跑…
Distill raw session records into refined Notes and Projects. Use when the user says "提煉", "整理 raw", "distill", or "distill raw records".
Save knowledge to the cortex vault. Use when the user says "存到 cortex", "記一下", "save to cortex", "記到筆記", "cortex evolve", or when the session-suggest hook…
Search and retrieve content from the cortexes vault — the user's external memory. Use when the user explicitly asks to search or recall the vault ("查 cortex",…
Create or resume a session takeoff baton — a curated, ephemeral, git-ignored hand-off note that lets the next Claude session continue a long-running task. A…