From llm-wiki
Compiles, lints, and queries a wiki's typed graph layer. Supports extraction from markdown, linting for consistency, and graph queries (neighbors, edges, paths, facts).
How this command is triggered — by the user, by Claude, or both
Slash command
/llm-wiki:graph extract | lint | neighbors --node <id> | edges --subject <id> | path --from <id> --to <id> | facts --about <id>wiki/The summary Claude sees in its command listing — used to decide when to auto-load this command
Run a graph-layer operation against the wiki using the `llm-wiki` skill's graph workflow.
Arguments: $ARGUMENTS
1. Confirm `wiki/graph/ontology.yaml` exists. If not, the wiki is pre-graph — offer to seed `wiki/graph/` (copy the templates from `skills/llm-wiki/assets/`) before doing anything else. Do not fabricate ontology entries.
2. Dispatch on the first argument:
- `extract` → `uv run --script "${CLAUDE_PLUGIN_ROOT}/skills/llm-wiki/scripts/wiki_graph_extract.py" "${PWD}/wiki"`
- `lint` → `uv run --script "${CLAUDE_PLUGIN_ROOT}/skills/llm-wiki/scripts/wiki_graph_lint.py" "${PWD}/wi...Run a graph-layer operation against the wiki using the llm-wiki skill's graph workflow.
Arguments: $ARGUMENTS
wiki/graph/ontology.yaml exists. If not, the wiki is pre-graph — offer to seed wiki/graph/ (copy the templates from skills/llm-wiki/assets/) before doing anything else. Do not fabricate ontology entries.extract → uv run --script "${CLAUDE_PLUGIN_ROOT}/skills/llm-wiki/scripts/wiki_graph_extract.py" "${PWD}/wiki"lint → uv run --script "${CLAUDE_PLUGIN_ROOT}/skills/llm-wiki/scripts/wiki_graph_lint.py" "${PWD}/wiki"neighbors --node <id> → python "${CLAUDE_PLUGIN_ROOT}/skills/llm-wiki/scripts/wiki_graph_query.py" "${PWD}/wiki" neighbors --node <id>edges --subject <id> [--predicate <p>] → python "${CLAUDE_PLUGIN_ROOT}/skills/llm-wiki/scripts/wiki_graph_query.py" "${PWD}/wiki" edges --subject <id> [--predicate <p>]path --from <id> --to <id> [--max-depth N] → python "${CLAUDE_PLUGIN_ROOT}/skills/llm-wiki/scripts/wiki_graph_query.py" "${PWD}/wiki" path --from <id> --to <id>facts --about <id> → python "${CLAUDE_PLUGIN_ROOT}/skills/llm-wiki/scripts/wiki_graph_query.py" "${PWD}/wiki" facts --about <id>[[wikilinks]] to wiki pages, not graph rows. The graph accelerates navigation; the wiki page and its raw source remain the evidence.lint, present findings as proposed edits — do not silently rewrite typed graph.relationships. After approved fixes, suggest re-running extract so the compiled artifacts stay in sync with the markdown.graph.sqlite is older than the most recent ingest line in log.md, suggest running extract first.Full reference: skills/llm-wiki/references/graph-workflow.md.
npx claudepluginhub praneybehl/llm-wiki-plugin --plugin llm-wiki/graphGenerates a wikilink dependency graph from Markdown wiki pages, outputting JSON, Mermaid, or DOT format. Also identifies orphan and hub pages.
/pith-graphGenerates an interactive force-directed graph from wiki markdown files, scanning for [[wikilinks]] and opening the result in the browser.
/querySearches and synthesizes wiki content, finds concept paths between topics, promotes archived answers to wiki pages, or reviews bulk archives.
/wikiManages LLM Wiki knowledge bases: init new wiki, ingest paths/URLs, compile index, query questions, lint, or remove. Uses subcommands via arguments.
/graphifyBuilds, queries, and inspects a project knowledge graph stored in .planning/graphs/. Supports build, query, status, and diff subcommands.