用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abilityai/cornelius --skill quick-search命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | quick-search |
| description | Fast knowledge base retrieval - single FAISS search + graph connections, no subagents or LLM orchestration |
| argument-hint | <search query> |
| allowed-tools | ["Bash","Read"] |
| user-invocable | true |
Fastest possible knowledge base retrieval. No subagents, no multi-layer orchestration, no changelogs.
Return relevant notes and their graph neighborhood in minimal tool calls. Designed for speed over thoroughness.
$ARGUMENTS
Execute these two commands in parallel (single message, two Bash calls):
# 1. Semantic search (6-14s - the unavoidable cost)
resources/local-brain-search/run_search.sh "$ARGUMENTS" --limit 5 --json
# 2. Graph connections for likely top hit (0.3s - nearly free)
resources/local-brain-search/run_connections.sh "$ARGUMENTS" --json
Then read the top result file using Read tool.
That's it. Three tool calls. Present results and stop.
Keep it brief:
## [Query]
**Top matches:**
1. [[Note Title]] (0.XX) - [one-line summary from content]
2. [[Note Title]] (0.XX) - [one-line summary]
3. [[Note Title]] (0.XX) - [one-line summary]
**Graph neighborhood** (for top hit):
- Outgoing: [[Note]], [[Note]], ...
- Incoming: [[Note]], [[Note]], ...
**Top result content:**
[First ~30 lines of the highest-scoring note]
/recall or /find-connections