用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abilityai/cornelius --skill search-vault命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | search-vault |
| description | Quick search across Obsidian vault using keywords or semantic similarity |
| argument-hint | <search query> |
| allowed-tools | Read, Grep, Bash |
Search the Obsidian vault using both semantic and keyword-based search.
Use Local Brain Search for all semantic search operations. Supports two modes:
Note: Usage-based learning is active - searches are tracked and rankings improve over time.
$ARGUMENTS
Semantic Search - Use Local Brain Search:
# For quick lookups, use static mode
resources/local-brain-search/run_search.sh "$ARGUMENTS" --limit 5 --json
# For finding connections, use spreading mode
resources/local-brain-search/run_search.sh "$ARGUMENTS" --mode spreading --limit 5 --json
Keyword Search - Use Grep:
Brain/Retrieve Content - For the top result from semantic search:
Read tool to get full content# Search Results: "$ARGUMENTS"
## Semantic Matches
[Top 5 notes with similarity/activation scores]
## Keyword Matches
[Top 5 notes with context snippets from Grep]
## Top Result Content
[Full content of the most relevant note]
Keep results concise and actionable. Highlight the most relevant findings.
| Source | Location | Read | Write | Description |
|---|---|---|---|---|
| Brain notes | Brain/**/*.md | X | All vault notes for search | |
| Local Brain Search index | resources/local-brain-search/ | X | Vector index for semantic search | |
| Memory config | resources/local-brain-search/memory_config.py | X | Tunable memory parameters |