exploring-graph
Analyze the knowledge graph for insights. Use when asked to "analyze connections", "graph report", "show hubs", "find orphans", or "knowledge map".
npx skills add majiayu000/claude-skill-registry --skill exploring-graph-alexanderop-second-brain-nuxt --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Exploring the Knowledge Graph This skill analyzes the structure of connections in the knowledge base to surface insights. ## Workflow ### 1. Build the Connection Map Parse all wiki-links from every content file: ```bash # Extract all wiki-links grep -oh '\[\[[^]]*\]\]' content/*.md # Get links per file for f in content/*.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]` - etc. ### 2. Calculate Metrics **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 | ### 3. Identify Patterns #### Hub Notes (Most Connected) Notes with the highest total connections - these are central to the knowledge base. #### Orphan Notes - **Full orphans**: 0 incoming AND 0 outgoing links - **Dead ends**: Has outgoing but 0 incoming - **Sources**: Has incoming but 0 outgoing #### Clusters Groups of notes that link heavily to each other but less to the rest. Identify by: - Shared tags - Mutual links - **Map membership** - notes lin
- Workflow
- 1. Build the Connection Map
- 2. Calculate Metrics
- 3. Identify Patterns
- 4. Generate Insights Report
- Graph Health Indicators
- Quality Checklist
Extract all wiki-links grep -oh '\[\[[^]]*\]\]' content/*.md Get links per file for f in content/*.md; do echo "=== $f ===" grep -o '\[\[[^]]*\]\]' "$f" done grep -l "type: map" content/*.md
What does the exploring-graph skill do?
Analyze the knowledge graph for insights. Use when asked to "analyze connections", "graph report", "show hubs", "find orphans", or "knowledge map".
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill exploring-graph-alexanderop-second-brain-nuxt --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
