.claude/skills/integrate-recent-notes/SKILL.md
Find notes created in the last 14 days and discover their connections to the knowledge base
npx skillsauth add abilityai/cornelius integrate-recent-notesInstall 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.
Find recently created notes and map their connections to the existing knowledge base.
New notes often sit unconnected. This playbook identifies notes from the last 14 days and discovers how they integrate with existing knowledge.
| Source | Location | Read | Write | Description |
|--------|----------|------|-------|-------------|
| Permanent Notes | Brain/02-Permanent/ | ✓ | | Recent notes source |
| AI Extracted Notes | Brain/AI Extracted Notes/ | ✓ | | Recent notes source |
| Document Insights | Brain/Document Insights/ | ✓ | | Recent notes source |
| Local Brain Search | resources/local-brain-search/ | ✓ | | Connection discovery |
| Session Changelogs | Brain/05-Meta/Changelogs/ | | ✓ | Integration report |
/refresh-index)Find notes modified in the last 14 days:
find /Users/eugene/Dropbox/Agents/Cornelius/Brain/02-Permanent -name "*.md" -mtime -14 -type f
find /Users/eugene/Dropbox/Agents/Cornelius/Brain/AI\ Extracted\ Notes -name "*.md" -mtime -14 -type f
find /Users/eugene/Dropbox/Agents/Cornelius/Brain/Document\ Insights -name "*.md" -mtime -14 -type f
Compile list of recent notes.
date '+%Y-%m-%d'
For each recent note:
/Users/eugene/Dropbox/Agents/Cornelius/resources/local-brain-search/run_connections.sh "Note Title" --json
For each note, categorize:
Write to Brain/05-Meta/Changelogs/CHANGELOG - Note Integration YYYY-MM-DD.md:
## Note Integration Report: YYYY-MM-DD
### Recent Notes Analyzed
Total: [N] notes from last 14 days
### Integration Status
**Well-Connected** ([N]):
- [[Note A]] - 5 connections
**Partially Connected** ([N]):
- [[Note B]] - 2 connections
- Suggested: Link to [[X]], [[Y]]
**Isolated - Priority** ([N]):
- [[Note C]] - 0 connections
- Top semantic matches: [[X]] (0.65), [[Y]] (0.62)
- Integration suggestion: [brief recommendation]
### Suggested Actions
1. [specific linking recommendations]
2. [synthesis opportunities]
Brain/05-Meta/Changelogs/| Error | Recovery |
|-------|----------|
| No recent notes | Log "no notes in period" and exit |
| Connection search fails | Note error, continue with next note |
| Index outdated | Run /refresh-index first |
Brain/05-Meta/Changelogs/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)