.claude/skills/advise/SKILL.md
Solve problems using knowledge base insights - extracts search terms, runs parallel KB queries, synthesizes advice grounded in your own frameworks
npx skillsauth add abilityai/cornelius adviseInstall 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.
Help solve problems by grounding advice in your accumulated knowledge and frameworks.
Turn natural language problems into KB-grounded advice. Fast path: no subagents, no changelogs, no multi-layer expansion.
$ARGUMENTS
From the problem description, identify 3-4 keyword clusters that would match relevant KB content:
Example:
decision making tradeoffs, explore exploit, focus prioritization, opportunity costRun 3-4 searches in parallel (single message, multiple Bash calls):
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_search.sh "search term 1" --limit 3 --json
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_search.sh "search term 2" --limit 3 --json
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_search.sh "search term 3" --limit 3 --json
From the search results, read 2-3 of the most relevant note files in parallel:
# Use Read tool on the top-scoring, most relevant files
Combine the retrieved insights to address the original problem:
## [Problem summary - one line]
**Relevant frameworks from your KB:**
- [[Note 1]] - [how it applies]
- [[Note 2]] - [how it applies]
- [[Note 3]] - [how it applies]
**My take (grounded in your insights):**
[2-4 paragraphs synthesizing advice, citing notes, applying frameworks to the specific problem]
**Key tradeoffs to consider:**
- [Tradeoff 1]
- [Tradeoff 2]
**Bottom line:** [One clear recommendation or framing]
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)