用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abilityai/cornelius --skill integrate-recent-notes命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Run a full coherence sweep across the Brain Dependency Graph - computes staleness, lifecycle transitions, structural health, and generates a report
Autonomous perception layer - scans KB for new notes matching domain watch configs, checks gap resonance with the Thinking Registry, probes external signals via web search, and auto-activates HIGH/MEDIUM signals into the Thinking Registry for the incubation loop.
Autonomous iterative thinking loop - processes active topics using rotating analytical moves (ACH, Bayesian updating, steelmanning, cross-domain bridging, implication checks) and persists reasoning state across scheduled runs
基于 SOC 职业分类
正在显示 SKILL.md
| name | integrate-recent-notes |
| description | Find notes created in the last 14 days and discover their connections to the knowledge base |
| automation | autonomous |
| schedule | 0 19 1,15 * * |
| allowed-tools | Read, Write, Bash, Glob, Grep |
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 | |
| Book scopes | Brain/Books/ | ✓ | Recent notes source (per-book scopes) | |
| 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 Brain/02-Permanent -name "*.md" -mtime -14 -type f
find Brain/AI\ Extracted\ Notes -name "*.md" -mtime -14 -type f
find Brain/Document\ Insights -name "*.md" -mtime -14 -type f
find Brain/Books -name "*.md" -mtime -14 -type f
Compile list of recent notes.
date '+%Y-%m-%d'
For each recent note:
BRAIN_READ_SCOPE=core,Books,document-insights,meta,inbox,output resources/local-brain-search/run_connections.sh "Note Title" --json
resources/brain-graph/run_brain_graph.sh inspect "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/