wiki-graphlisted
Install: claude install-skill leiverkus/research-superpowers
# Wiki Graph
Make the implicit wiki graph explicit, then answer structure questions from it. This is the **structure-analysis** sibling of two other wiki skills:
- `wiki-lint` — *is the wiki well-formed?* (frontmatter, broken links, orphans)
- `semantic-wiki-review` — *are the claims sound and consistent?* (LLM content audit)
- **`wiki-graph` — *what shape does the knowledge have?*** (hubs, bridges, clusters, confidence)
The graph is computed deterministically by `scripts/wiki-to-graph.py`; this skill runs it and **interprets** the result. It never invents edges — every claim about the graph traces back to `graph.json`.
**Announce at start:** "Using wiki-graph to build and analyse the knowledge graph."
## When to use
- "Build / show me a knowledge graph", "map the wiki", "graph view of my research"
- "Which entity bridges / connects my sources?" → bridges
- "What are the main themes / sub-topics / clusters in my literature?" → communities
- "What are the most central / connected pages?" → god nodes
- "Find surprising connections" / "where are the weak links or gaps?"
- "How many relations are inferred vs grounded?" → inference-rate
- "Export the wiki to Gephi / yEd" → hand over `graph.graphml`
- After a bulk ingest or a `wiki-lint` pass, to see how the structure changed
**NOT for:** frontmatter/wikilink validation (use `wiki-lint`), contradiction/claim audit (use `semantic-wiki-review`), or drafting prose (use `drafting-manuscript`).
## Checklist
1. **Locate the scri