.claude/skills/recall/SKILL.md
Retrieve relevant knowledge from Obsidian vault using 3-layer semantic search based on conversation context
npx skillsauth add abilityai/cornelius recallInstall 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.
You are tasked with retrieving relevant knowledge from the Obsidian vault using multi-layer semantic search.
Use Local Brain Search for all semantic search operations. Spreading activation mode recommended for synthesis queries.
Scripts:
# Static search (fast, exact matches)
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_search.sh "query" --limit 10 --json
# Spreading activation search (follows graph connections)
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_search.sh "query" --mode spreading --limit 10 --json
# Find connections
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_connections.sh "Note Name" --json
# Find hubs
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_connections.sh --hubs --json
$ARGUMENTS
First Layer - Initial Search:
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_search.sh "$ARGUMENTS" --mode spreading --limit 5 --json
Read tool to read the full content of the top 2 resultsSecond Layer - Direct Associations:
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_connections.sh "Top Result Note" --json
Read tool to read the full content of the top 2 connected notesThird Layer - Extended Network:
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_connections.sh --hubs --json
Present the findings in this structured format:
# Knowledge Recall: [Query Topic]
## Layer 1: Direct Matches
[List notes found with similarity/activation scores and key excerpts]
## Layer 2: First-Degree Associations
[List connected notes with their relationships and excerpts]
## Layer 3: Extended Network
[Show hub notes and bridge connections]
## Key Insights
[Synthesize the main themes and connections discovered]
## Relevant Content
[Include the most pertinent excerpts from the retrieved notes]
--mode spreading for synthesis and connection-finding queries| Source | Location | Read | Write | Description |
|--------|----------|------|-------|-------------|
| Brain notes | Brain/**/*.md | X | | Search permanent notes, sources, MOCs |
| 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 |
development
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)