Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub brainbrewlabs/brainbrew-devkit --plugin brainbrew-devkitHow 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
Generates customized Docusaurus documentation websites by analyzing project content, creating intelligent structure, and iteratively building until successful. Creates git branches with clear commits.
Automates docs-as-code workflows with version control, PR reviews, automated testing, linting, link checks, and CI/CD deployment. Compares Docusaurus, MkDocs, Sphinx, Hugo.
Generates API docs, README files, user guides, developer guides, and changelogs by analyzing code context. Activates on mentions of documentation, README, API docs, guides, or changelogs.
Share bugs, ideas, or general feedback.
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 |