بنقرة واحدة
integrate-recent-notes
Find notes created in the last 14 days and discover their connections to the knowledge base
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Find notes created in the last 14 days and discover their connections to the knowledge base
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Autonomous AI crystallization - synthesizes converged thinking topics into ai-inferred notes in a dedicated folder. Never touches the human-curated permanent knowledge base and never changes a topic's status, so manual crystallization stays available to the user.
Analyze knowledge base structure and update the knowledge-base-analysis.md report
Discover non-obvious cross-domain connections through random sampling and pattern analysis
Run a full coherence sweep across the Brain Dependency Graph - computes staleness, lifecycle transitions, structural health, and generates a report
Compute lifecycle scores for all insight and framework notes - detect which notes are crystallizing or becoming generative
Create long-form articles from knowledge base insights. Use when writing articles, blog posts, Substack content, or synthesizing knowledge into publishable content. Includes tone of voice, structure templates, and knowledge base integration.
| 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/