/serve
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 -y skills add Oshayr/LLM-Wiki --skill serve --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/serve
Context preview
The summary Claude sees to decide when to auto-load this skill.
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'.
SKILL.md
serve.SKILL.mdname: wiki-serve
description: "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'."
Wiki Serve
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.
Arguments
- **`/wiki-serve`** — start the server (default port 8420)
- **`/wiki-serve stop`** — stop the running server
Startup
The FastAPI web server **only runs when explicitly requested**. There are two ways to start it:
Skill-Based Launch
1. Run the `/wiki-serve` skill from Claude Code (recommended):
/wiki-serve
2. The server automatically:
- Installs dependencies if needed
- Handles page indexing, research workers, and file watching
- Opens your browser to localhost:8420
Manual Launch
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`
Features
- **Page rendering** — markdown → HTML with wiki-link transformation, red-link detection
- **Live research** — click any red link to trigger background research (stub-first: summary in 30s, full upgrade async)
- **Search** — full-text search with autocomplete
- **Split-pane editor** — markdown + live preview, markdown toolbar, AI assist bar
- **Page type templates** — concept, brainstorming, idea, memory, status, rules, config, skill, plus custom templates from `.wiki/templates/`
- **Chat** — wiki-aware AI assistant in bottom-right panel
- **Research queue** — manage, cancel, reorder research tasks
- **Knowledge graph** — interactive page relationship visualization
- **Three themes** — light, dark, terminal
- **Export** — HTML and markdown download
Stop
Kill the server process on port 8420. Either:
- `/wiki-serve stop`
- The server auto-stops when the session ends (daemon process)
Read more
name: wiki-serve description: "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'."
Wiki Serve
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.
Arguments
- **`/wiki-serve`** — start the server (default port 8420)
- **`/wiki-serve stop`** — stop the running server
Startup
The FastAPI web server **only runs when explicitly requested**. There are two ways to start it:
Skill-Based Launch
1. Run the `/wiki-serve` skill from Claude Code (recommended):
/wiki-serve
2. The server automatically:
- Installs dependencies if needed
- Handles page indexing, research workers, and file watching
- Opens your browser to localhost:8420
Manual Launch
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`
Features
- **Page rendering** — markdown → HTML with wiki-link transformation, red-link detection
- **Live research** — click any red link to trigger background research (stub-first: summary in 30s, full upgrade async)
- **Search** — full-text search with autocomplete
- **Split-pane editor** — markdown + live preview, markdown toolbar, AI assist bar
- **Page type templates** — concept, brainstorming, idea, memory, status, rules, config, skill, plus custom templates from `.wiki/templates/`
- **Chat** — wiki-aware AI assistant in bottom-right panel
- **Research queue** — manage, cancel, reorder research tasks
- **Knowledge graph** — interactive page relationship visualization
- **Three themes** — light, dark, terminal
- **Export** — HTML and markdown download
Stop
Kill the server process on port 8420. Either:
- `/wiki-serve stop`
- The server auto-stops when the session ends (daemon process)
An autonomous knowledge base that grows as you work. LLM Wiki is a Claude Code plugin that captures research, ideas, and decisions into an interlinked wiki with semantic search, automatic research, and a Wikipedia-style web UI.
Other skills on llm-wiki.
- /maintain
Wiki maintenance — lint broken links, merge near-duplicates, upgrade confidence, flag stale pages via freshness tiers, gap analysis, concept synthesis. Use on: 'wiki maintenance', 'wiki cleanup', 'fix wiki', 'wiki health', 'check wiki', 'consolidate wiki'.
Open skill - /read
Search and query the wiki — get cited answers, with automatic research when knowledge is missing. Three depth modes. Use when: 'check wiki', 'what do we know about', 'look up', 'find in wiki', 'search wiki', 'search for', 'find information about', 'do we have notes on', 'wiki
Open skill - /view
Wiki dashboard — browse pages, view stats, knowledge graph, export. Use on: 'wiki dashboard', 'wiki stats', 'show wiki', 'wiki pages', 'list wiki', 'wiki graph', 'export wiki', 'wiki overview'.
Open skill - /write
Add or update wiki content — autonomous ingest from URL, file, or text; autonomous update of existing pages. Auto-creates .wiki/ on first use. Use when: 'save to wiki', 'remember this', 'note this', 'store this', 'add to knowledge base', 'save findings', 'save research', 'save
Open skill

