一键导入
exploring-graph
Analyze the knowledge graph for insights. Use when asked to "analyze connections", "graph report", "show hubs", "find orphans", or "knowledge map".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Analyze the knowledge graph for insights. Use when asked to "analyze connections", "graph report", "show hubs", "find orphans", or "knowledge map".
用 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 | exploring-graph |
| description | Analyze the knowledge graph for insights. Use when asked to "analyze connections", "graph report", "show hubs", "find orphans", or "knowledge map". |
| allowed-tools | Read, Glob, Grep |
This skill analyzes the structure of connections in the knowledge base to surface insights.
Parse all wiki-links from every content file:
# Extract all wiki-links
grep -oh '\[\[[^]]*\]\]' src/content/notes/notes/*.md
# Get links per file
for f in src/content/notes/notes/*.md; do
echo "=== $f ==="
grep -o '\[\[[^]]*\]\]' "$f"
done
Build an adjacency list:
note-a → links to: [note-b, note-c]note-b → links to: [note-a]For each note, determine:
| Metric | Description |
|---|---|
| Outgoing links | Wiki-links in this note |
| Incoming links | Other notes linking to this one |
| Total connections | Outgoing + Incoming |
Notes with the highest total connections - these are central to the knowledge base.
Groups of notes that link heavily to each other but less to the rest. Identify by:
type: map note form visual clustersMap notes (type: map) act as cluster centers on the graph:
To find existing maps:
grep -l "type: map" src/content/notes/notes/*.md
Wiki-links pointing to non-existent notes.
## Knowledge Graph Analysis
### Overview
- Total notes: 15
- Total connections: 42
- Average connections per note: 2.8
### Hub Notes (Top 5 Most Connected)
| Note | Outgoing | Incoming | Total |
| ------------------- | -------- | -------- | ----- |
| [[central-concept]] | 5 | 8 | 13 |
| [[key-framework]] | 4 | 6 | 10 |
| ... | | | |
### Orphan Notes (Need Attention)
**Full Orphans** (isolated):
- `lonely-note.md` - no connections at all
**Dead Ends** (no incoming links):
- `new-note.md` - links out but not referenced
**Sources** (no outgoing links):
- `reference-only.md` - referenced but doesn't link
### Potential Clusters
**Vue Ecosystem** (5 notes, 12 internal links):
- [[vue-composables]]
- [[vue-testing]]
- [[nuxt-patterns]]
- ...
**AI/Agents** (3 notes, 6 internal links):
- [[12-factor-agents]]
- [[context-efficient-backpressure]]
- ...
### Connection Opportunities
Based on shared tags and titles, these notes might benefit from links:
- [[note-a]] and [[note-b]] share 3 tags but aren't linked
| Indicator | Healthy | Warning |
|---|---|---|
| Orphan rate | <10% | >20% |
| Avg connections | >2 | <1 |
| Broken links | 0 | Any |
When analyzing: