一键导入
linking-notes
Discover and add wiki-links between notes. Use when asked to "find connections", "link this note", "what should I link to", or "connect my notes".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Discover and add wiki-links between notes. Use when asked to "find connections", "link this note", "what should I link to", or "connect my notes".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Ingest a new source into the LLM Wiki. Save the full captured resource under src/content/notes/sources/ first, then create or update the maintained wiki summary/synthesis entry, index, and log. Trigger on "add", "save", "capture", "note this", "take notes on", or any request to record content in the knowledge base.
Query the maintained wiki layer first, then fall back to sources when needed. Use when asked to "ask my notes", "what do I know about", "query my knowledge", "/ask", or when the user has a question that the wiki might answer.
Summarize the past week's daily journal entries. Use when asked to "weekly review", "review the week", "summarize this week", or "week summary".
Curate wiki maps and clustering pages for the LLM Wiki. Use when asked to "curate MOCs", "update maps", "find clusters", "what MOCs need updating", or "organize my notes".
Audit the maintained wiki for quality and maintenance issues. Use when asked to "review notes", "check content quality", "audit my knowledge base", or "find broken links".
Generate a weekly newsletter summarizing resources added last week. Use when asked to "weekly newsletter", "newsletter", "what did I add this week", "generate newsletter", or "Monday newsletter".
| name | linking-notes |
| description | Discover and add wiki-links between notes. Use when asked to "find connections", "link this note", "what should I link to", or "connect my notes". |
| allowed-tools | Read, Glob, Grep |
This skill helps find meaningful connections between notes in the knowledge base.
If a specific note is mentioned, read it first:
# List all content to find the note
ls src/content/notes/notes/*.md
Extract from the target note:
By Title Mentions:
# Search for the note's title in other files
grep -l "note title" src/content/notes/notes/*.md
By Tag Overlap:
# Find notes sharing the same tags
grep -l "tags:.*tag-name" src/content/notes/notes/*.md
By Key Terms:
# Search for key concepts
grep -l "specific concept" src/content/notes/notes/*.md
Aim for connection, not perfection. Every note benefits from 2-3 meaningful links. An orphan note is harder to discover than an over-connected one.
✅ Link when:
❌ Avoid linking when:
Every link needs context. Don't just link - explain WHY the connection exists in 1 sentence.
For each suggested link, provide:
[[slug-name]]## Suggested Wiki-Links for [Note Title]
### Strong Connections
- [[related-note-1]] - Same author, discusses related concepts
- [[related-note-2]] - Directly cited in this content
### Potential Connections (Review Needed)
- [[maybe-related]] - Shares "testing" tag, similar topic
If you find a group of 3+ notes with strong thematic connections, consider suggesting a Map Note (MOC) instead of individual links:
# Check existing maps
grep -l "type: map" src/content/notes/notes/*.md
Map notes (type: map) create visual clusters on the graph - notes linked from the map are pulled together. This is useful for:
Before suggesting links: