Agent skill · Design & Presentation

wiki-vitepress

Transform generated wiki Markdown files into a polished VitePress static site with dark theme and interactive Mermaid diagrams. Use when user asks to \"build a site\" or \"package as VitePress\", user runs the /deep-wiki, or user wants a browsable HTML output from generated wiki pages.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill wiki-vitepress --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/wiki-vitepress/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Wiki VitePress Packager Transform generated wiki Markdown files into a polished VitePress static site with dark theme and interactive Mermaid diagrams. ## When to Use - User asks to "build a site" or "package as VitePress" - User runs the `/deep-wiki:build` command - User wants a browsable HTML output from generated wiki pages ## VitePress Scaffolding Generate the following structure in a `wiki-site/` directory: ``` wiki-site/ ├── .vitepress/ │ ├── config.mts │ └── theme/ │ ├── index.ts │ └── custom.css ├── public/ ├── [generated .md pages] ├── package.json └── index.md ``` ## Config Requirements (`config.mts`) - Use `withMermaid` wrapper from `vitepress-plugin-mermaid` - Set `appearance: 'dark'` for dark-only theme - Configure `themeConfig.nav` and `themeConfig.sidebar` from the catalogue structure - Mermaid config must set dark theme variables: ```typescript mermaid: { theme: 'dark', themeVariables: { primaryColor: '#1e3a5f', primaryTextColor: '#e0e0e0', primaryBorderColor: '#4a9eed', lineColor: '#4a9eed', secondaryColor: '#2d4a3e', tertiaryColor: '#2d2d3d', background: '#1a1a2e', mainBkg: '#1e3a5f', nodeBorder: '#4a9eed', clusterBkg: '#16213e', titleColor: '#e0e0e0', edgeLabel

What's inside
Steps it walks through
  1. When to Use
  2. VitePress Scaffolding
  3. Config Requirements (config.mts)
  4. Dark-Mode Mermaid: Three-Layer Fix
  5. Layer 1: Theme Variables (in config.mts)
  6. Layer 2: CSS Overrides (custom.css)
  7. Layer 3: Inline Style Replacement (theme/index.ts)
  8. Click-to-Zoom for Mermaid Diagrams
  9. Post-Processing Rules
  10. Build
  11. Known Gotchas
  12. Limitations
Commands it runs
cd wiki-site && npm install && npm run docs:build
More from agentic-awesome-skills
All skills →
About this skill
What does the wiki-vitepress skill do?

Transform generated wiki Markdown files into a polished VitePress static site with dark theme and interactive Mermaid diagrams. Use when user asks to \"build a site\" or \"package as VitePress\", user runs the /deep-wiki, or user wants a browsable HTML output from generated wiki pages.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill wiki-vitepress --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going