<< All versions
Skill v1.0.0
currentAutomated scan100/100oshayr/llm-wiki/view
──Details
PublishedApril 27, 2026 at 10:25 PM
Content Hashsha256:a8e6bcbb3fb9af61...
Git SHAc18b3a826a17
──Files
Files (1 file, 2.3 KB)
SKILL.md2.3 KBactive
SKILL.md · 54 lines · 2.3 KB
version: "1.0.0" name: wiki-view description: "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'."
Wiki View
Dashboard, graph visualization, stats, and export for the wiki.
Resolve .wiki/ from plugin install scope. If not found, say "No wiki found."
Arguments
- `/wiki-view` — dashboard summary (page count, recent activity, top topics)
- `/wiki-view pages` — list all pages grouped by type
- `/wiki-view stats` — detailed statistics (page count, links, confidence distribution, stale %)
- `/wiki-view graph` — knowledge graph visualization (Mermaid diagram)
- `/wiki-view graph <slug>` — graph centered on a specific page (2-hop neighborhood)
- `/wiki-view export html` — export entire wiki as single HTML file
- `/wiki-view export md` — export as single markdown bundle
- `/wiki-view export json` — export as JSON knowledge graph (nodes + edges)
- `/wiki-view artifacts <type>` — generate study guide, timeline, glossary, or comparison table
Dashboard
Read .wiki/index.md, .wiki/log.md, .wiki/overview.md:
- Page count and breakdown by type
- Last 5 activity log entries
- Current open questions from overview.md
- Confidence distribution (high/medium/low)
Graph
Read all pages, extract [[wiki-links]] and related: fields:
- Generate Mermaid flowchart showing page connections
- Color by type (concept=blue, entity=green, source=gray, idea=yellow)
- Highlight orphans (no incoming links) in red
- For
--slug: show only 2-hop neighborhood of that page
Export
- HTML: Render all pages through markdown → styled single HTML document
- Markdown: Concatenate all pages with
---separators - JSON:
{"nodes": [...], "edges": [...]}knowledge graph format
Artifacts
Generate derivative documents from wiki content:
- `/wiki-view artifacts study-guide <topic>` — structured study guide from topic cluster
- `/wiki-view artifacts timeline <topic>` — chronological timeline of events/developments
- `/wiki-view artifacts glossary` — terms and definitions from all pages
- `/wiki-view artifacts compare <slug1> <slug2>` — side-by-side comparison table