用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abilityai/cornelius --skill recall命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | recall |
| description | Retrieve relevant knowledge from Obsidian vault using 3-layer semantic search based on conversation context |
| argument-hint | <search query or topic> |
| allowed-tools | Read, Bash, Grep |
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)
resources/local-brain-search/run_search.sh "query" --limit 10 --json
# Spreading activation search (follows graph connections)
resources/local-brain-search/run_search.sh "query" --mode spreading --limit 10 --json
# Find connections
resources/local-brain-search/run_connections.sh "Note Name" --json
# Find hubs
resources/local-brain-search/run_connections.sh --hubs --json
$ARGUMENTS
First Layer - Initial Search:
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:
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:
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 |