一键导入
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 职业分类
Must read guide on creating/editing mermaid charts with validation tools and syntax reference for all diagram types
Generate interactive HTML walkthroughs with clickable Mermaid diagrams (flowcharts and ER diagrams) that explain codebase features, flows, architecture, and database schemas. Use when asked to "walkthrough", "explain this flow", "how does X work", "trace the code path", "annotated diagram", "code walkthrough", "explain the architecture of", "walk me through", "database schema", "explain the tables", "data model".
Create a note from any resource: URL, book, podcast, article, video, GitHub repo, Reddit thread, PDF, quote, or raw idea. Trigger on "add", "save", "capture", "note this", "take notes on", or any request to record content in the knowledge base.
Add tweets to the Second Brain. Use when the user provides a Twitter/X URL and pasted tweet content, asking to "add a tweet", "save this tweet", or "capture this tweet".
Query your Second Brain with keyword search. Use when asked to "ask my notes", "what do I know about", "query my knowledge", "/ask", or when the user has a question that their notes might answer.
Create Obsidian templates for the Second Brain vault. Use when asked to "create a template", "make a template for", "add an Obsidian template", or "template for X".
| 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 content/*.md
Extract from the target note:
By Title Mentions:
# Search for the note's title in other files
grep -l "note title" content/*.md
By Tag Overlap:
# Find notes sharing the same tags
grep -l "tags:.*tag-name" content/*.md
By Key Terms:
# Search for key concepts
grep -l "specific concept" content/*.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" content/*.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: