From brainbrew-devkit
Builds, previews locally, and deploys VitePress documentation sites using npm scripts. Manages dev server, site structure updates, new pages, and GitHub Pages via git pushes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/brainbrew-devkit:docsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
npm run docs:build
Output: docs/.vitepress/dist/
npm run docs:dev
Opens at http://localhost:5173/brainbrew-devkit/
Docs auto-deploy on push to main when files in docs/ change.
Manual trigger:
git add docs/ && git commit -m "docs: update" && git push
Or trigger via GitHub Actions UI.
docs/
index.md # Landing page
guide/ # Getting started, tutorials
skills/ # Skill reference
templates/ # Workflow templates
agents/ # Agent reference
api/ # MCP tools, hooks
docs/<section>/<name>.mddocs/.vitepress/config.tsnpm run docs:build.md filenpm run docs:dev| Task | Command |
|---|---|
| Dev server | npm run docs:dev |
| Build | npm run docs:build |
| Preview build | npm run docs:preview |
| Deploy | Push to main |
npx claudepluginhub brainbrewlabs/brainbrew-devkit --plugin brainbrew-devkitSets up documentation websites using Docusaurus, MkDocs, VitePress, GitBook, or static site generators. Use when creating docs sites, documentation portals, or static documentation.
Generates and validates VitePress configuration files for technical documentation sites. Useful when setting up or modifying VitePress project settings.
Builds and configures VitePress documentation sites with Markdown, Vue components, themes, and i18n. Use for creating docs, blogs, or marketing sites.