.claude/skills/quick-search/SKILL.md
Fast knowledge base retrieval - single FAISS search + graph connections, no subagents or LLM orchestration
npx skillsauth add abilityai/cornelius quick-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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)
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_search.sh "$ARGUMENTS" --limit 5 --json
# 2. Graph connections for likely top hit (0.3s - nearly free)
/Users/eugene/Dropbox/Agents/Cornelius/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-connectionsdevelopment
Rebuild the Cornelius voice agent system prompt from knowledge base sources
data-ai
Update dashboard.yaml with current knowledge base metrics from analysis report
documentation
Update Knowledge Graph Changelog
testing
Comprehensive testing playbook for Local Brain Search memory improvements (Phases 1, 3, 4)