Pulled ALL skills from 15 source repositories: - anthropics/skills: 16 (docs, design, MCP, testing) - obra/superpowers: 14 (TDD, debugging, agents, planning) - coreyhaines31/marketingskills: 25 (marketing, CRO, SEO, growth) - better-auth/skills: 5 (auth patterns) - vercel-labs/agent-skills: 5 (React, design, Vercel) - antfu/skills: 16 (Vue, Vite, Vitest, pnpm, Turborepo) - Plus 13 individual skills from various repos Mosaic Stack is not limited to coding — the Orchestrator and subagents serve coding, business, design, marketing, writing, logistics, analysis, and more. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2.3 KiB
2.3 KiB
name, description
| name | description |
|---|---|
| vitepress-cli | Command-line interface for development, building, and previewing VitePress sites |
CLI Commands
VitePress provides four main commands: dev, build, preview, and init.
Development Server
Start the dev server with hot module replacement:
# In current directory (dev command is optional)
vitepress
# Or explicitly
vitepress dev
# With project in subdirectory
vitepress dev docs
Options:
| Option | Description |
|---|---|
--open [path] |
Open browser on startup |
--port <port> |
Specify port number |
--base <path> |
Override base URL |
--cors |
Enable CORS |
--strictPort |
Exit if port is in use |
--force |
Ignore cache and re-bundle |
vitepress dev docs --port 3000 --open
Production Build
Build static files for production:
vitepress build docs
Options:
| Option | Description |
|---|---|
--base <path> |
Override base URL |
--target <target> |
Transpile target (default: modules) |
--outDir <dir> |
Output directory (relative to cwd) |
--assetsInlineLimit <n> |
Asset inline threshold in bytes |
--mpa |
Build in MPA mode (no client hydration) |
vitepress build docs --outDir dist
Preview Production Build
Locally preview the production build:
vitepress preview docs
Options:
| Option | Description |
|---|---|
--port <port> |
Specify port number |
--base <path> |
Override base URL |
vitepress preview docs --port 4173
Initialize Project
Start the setup wizard:
vitepress init
This creates the basic file structure:
.vitepress/config.js- Configurationindex.md- Home page- Optional example pages
Package.json Scripts
Typical scripts configuration:
{
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
}
}
Key Points
- Dev server runs at
http://localhost:5173by default - Preview server runs at
http://localhost:4173 - Production output goes to
.vitepress/distby default - The
docsargument specifies the project root directory - Use
--baseto override base path without modifying config