Agent skill

exploring-graph

Analyze the knowledge graph for insights. Use when asked to "analyze connections", "graph report", "show hubs", "find orphans", or "knowledge map".

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: ReadGlobGrep
Path: skills/analysis/exploring-graph-alexanderop-second-brain-nuxt/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Workflow
  2. 1. Build the Connection Map
  3. 2. Calculate Metrics
  4. 3. Identify Patterns
  5. 4. Generate Insights Report
  6. Graph Health Indicators
  7. Quality Checklist
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going