The full helpbase primitive in one command. Drops docs routes, starter MDX, the MCP server, and the citation-grounded sync workflow. Zero-config auth via GitHub OIDC.
When to use: You have an existing Next.js app and want helpbase working end-to-end. The homepage CTA runs this same command.
pnpm dlx helpbase init
Greenfield project
New project
Scaffold a fresh Next.js app with helpbase pre-installed. Good for new docs sites where you don't already have a repo.
When to use: You're starting from scratch and want the full help center as a standalone project.
pnpm dlx create-helpbase
Individual primitives
Prefer composability? Each piece stands alone. Install any subset; run helpbase init later to pull in the rest.
The docs UI primitive: routes, MDX pipeline, search, sidebar, TOC, and starter content. Everything you need for a shadcn-native help center, without the MCP server or CI workflow.
When to use: You want the docs site but not the AI/CI layers yet. You'll add those later, or you're integrating into an existing docs pipeline.
A single GitHub Actions file that opens a citation-grounded PR whenever code and docs drift. Zero config, zero secrets — auth via OIDC. Requires MDX already on disk.
When to use: Your repo already has docs (fumadocs, custom MDX, whatever) and you just want the CI loop that keeps them honest against code changes.
A self-hosted Model Context Protocol server that exposes your docs to Claude, Cursor, Zed, and other AI agents. Runs from your repo, reads your MDX, serves over stdio.
When to use: Your docs already exist and you want to make them agent-readable without adding a docs UI or a CI workflow.