From llm-wiki
Start the wiki web server — browsable Wikipedia-style UI with live research, split-pane editor, AI assist, and themes. Manual trigger only: /wiki-serve, 'start wiki server', 'browse the wiki'.
npx claudepluginhub oshayr/llm-wiki --plugin llm-wikiThis skill uses the workspace's default tool permissions.
Launch a local web server that presents the wiki as a browsable, Wikipedia-style website with live background research, integrated chat, and a split-pane editor with AI assist.
references/architecture.mdscripts/__init__.pyscripts/chat_manager.pyscripts/markdown_renderer.pyscripts/rag_handler.pyscripts/research_queue.pyscripts/research_worker.pyscripts/server.pyscripts/wiki_store.pystatic/chat.jsstatic/editor.jsstatic/style.cssstatic/wiki.jstemplates/base.htmltemplates/canvas.htmltemplates/create.htmltemplates/edit.htmltemplates/error.htmltemplates/gaps.htmltemplates/graph.htmlCreate and maintain personal wikis using Commune Wiki template: setup from git repo, add atomic notes with frontmatter and WikiLinks, personalize config, publish via git commit+push for auto-deploy, convert research, pull updates.
Queries personal wiki built with wiki-init/wiki-ingest: reads index/pages, synthesizes cited answers for facts/comparisons/how-tos, flags gaps, offers to save as new pages.
Share bugs, ideas, or general feedback.
Launch a local web server that presents the wiki as a browsable, Wikipedia-style website with live background research, integrated chat, and a split-pane editor with AI assist.
Resolve .wiki/ from plugin install scope. Auto-create if missing.
/wiki-serve — start the server (default port 8420)/wiki-serve stop — stop the running serverThe FastAPI web server only runs when explicitly requested. There are two ways to start it:
/wiki-serve skill from Claude Code (recommended):
/wiki-serve
Dependencies are installed automatically by the plugin's SessionStart hook. To start the server manually from the command line:
python path/to/skills/serve/scripts/server.py --wiki-dir .wiki/ --port 8420
Replace path/to with the full path to your LLM-Wiki installation (typically .claude/plugins/llm-wiki).
If dependencies are missing, install manually: pip install -r requirements.txt
.wiki/templates/Kill the server process on port 8420. Either:
/wiki-serve stop