maintainer
Meta-skill that loads all llmwiki governance docs and exposes the three maintainer slash commands.
Generate a knowledge graph of the wiki — nodes are pages, edges are `[[wikilinks]]`.
> /plugin marketplace add Pratiyush/llm-wiki > /plugin install llmwiki@llmwiki
How it fires
How this command gets triggered: by you, by Claude, or both.
/wiki-graphContext preview
What this command does when you run it.
Generate a knowledge graph of the wiki — nodes are pages, edges are `[[wikilinks]]`.
Generate a knowledge graph of the wiki — nodes are pages, edges are `[[wikilinks]]`.
Usage: /wiki-graph [format]
`$ARGUMENTS` is one of: `json`, `html`, or `both` (default: `both`).
The graph tool walks every file under `wiki/` looking for `[[wikilink]]` references, builds a node-and-edge list, and writes:
1. Ensure the Python graph builder exists at `llmwiki/graph.py`. If it doesn't, create it (see "Fallback" below for a pure-agent version).
2. Run:
python3 -m llmwiki graph $ARGUMENTS
3. Read `graph/graph.json` after it runs and report to the user:
4. If the user asked for `html` or `both`, offer to open `graph/graph.html` locally with `python3 -m llmwiki serve --dir graph --port 8766`.
5. Append to `wiki/log.md`:
## [YYYY-MM-DD] graph | <N> nodes, <M> edges
If `llmwiki/graph.py` doesn't exist yet, build the graph manually using Grep and Read:
1. `grep -roh '\[\[[^]]*\]\]' wiki/ | sort -u` → unique wikilink targets 2. For each wiki page, list the wikilinks found in it (out-edges) 3. Compute the reverse index to find in-edges 4. Write `graph/graph.json` with the format:
{
"nodes": [{"id": "slug", "label": "Display Name", "type": "source|entity|concept", "in_degree": N, "out_degree": M}],
"edges": [{"source": "from-slug", "target": "to-slug"}]
}5. Write `graph/graph.html` — a single HTML file with an inline vis.js embed that reads `graph.json` via `fetch()`.
Report the same statistics as above.
LLM-powered knowledge base from your Claude Code, Codex CLI, Cursor, Gemini CLI, and Obsidian sessions. Built on Andrej Karpathy's LLM Wiki pattern.
Repo: Pratiyush/llm-wiki
Meta-skill that loads all llmwiki governance docs and exposes the three maintainer slash commands.
Run the canonical llmwiki code review against a pull request and post findings.
Apply labels + milestone + priority to a new issue using the llmwiki triage rules.
Run the full llmwiki pipeline end-to-end: build → graph → export all → lint.