Create beautiful docs with Markdown & Vue components
Create a new documentation project in seconds:
# Create a new project
npx create-docus my-docs
# Or create with i18n template for multi-language docs
npx create-docus my-docs -t i18n
# Navigate to your project
cd my-docs
# Start development server
npm run devThat's it! Your documentation site will be running at http://localhost:3000
Start by deploying the docus template and create your git repository directly from Vercel:
The CLI scaffolds a complete documentation project with:
- β¨ Beautiful Design - Clean, modern documentation theme built on Nuxt UI 4 & Tailwind CSS 4
- π± Responsive - Mobile-first responsive design
- π Dark Mode - Built-in dark/light mode with
dshortcut toggle - π Internationalization - Native i18n support with 20+ locales for assistant UI
- π Search - Client-side search with optional FTS5 full-text search backend
- π Markdown Enhanced - Extended markdown with custom MDC components
- π¨ Customizable - Theme variants, custom icons,
- β‘ Fast - Optimized for performance with Nuxt 4
- π§ TypeScript - Full TypeScript support
- π€ AI Assistant - Drop-in chat that answers questions from your docs, cites sources, and generates code
- π Native MCP Server - Built-in Model Context Protocol server for AI tool integration (Cursor, VS Code, Claude, etc.)
- π Agent Skills Discovery - Publish skills from your docs site via
.well-known/skills/ - π LLM-Ready - Automatic
llms.txtandllms-full.txtgeneration - πΊοΈ SEO Optimized - Sitemap, robots.txt, and OG image generation out of the box
Learn more on the Docus documentation.
Docus ships with a full AI stack to help both your users and contributors:
Embed an AI-powered chat in your docs that answers questions, cites sources, and generates code examples. Powered by Vercel AI Gateway and your own MCP server. See the Assistant guide.
Every Docus site exposes an MCP server at /mcp β install it directly into your editor to query your docs from any AI tool:
Drop skills into a skills/ directory and Docus serves them at /.well-known/skills/ following the Cloudflare Agent Skills Discovery RFC. Users install them with a single command:
npx skills add https://your-docs-domain.comGet the Docus skill itself to supercharge your AI assistant when building docs:
npx skills add nuxt-content/docusmy-docs/
βββ content/ # Your markdown content
β βββ index.md # Homepage
β βββ docs/ # Documentation pages
βββ public/ # Static assets
βββ package.json # Dependencies and scripts
Docus uses a layer system, you can go further and use any feature or file of a classical Nuxt project:
my-docs/
βββ app.config.ts # App configuration
βββ nuxt.config.ts # Nuxt configuration (add extra modules, components, etc.)
βββ app/ # App directory
β βββ components/ # Components (add your own components)
β βββ layouts/ # Layouts (add your own layouts)
β βββ pages/ # Pages (add your own pages)
βββ server/ # Server-side code (add your own server-side code)
Single language structure:
content/
βββ index.md
βββ getting-started.md
βββ guide/
βββ introduction.md
βββ configuration.md
Multi-language structure (with i18n):
content/
βββ en/
β βββ index.md
β βββ guide/
β βββ introduction.md
βββ fr/
βββ index.md
βββ guide/
βββ introduction.md
Your project comes pre-configured with the best of the Nuxt ecosystem:
- Nuxt 4 - The web framework
- Nuxt Content - File-based CMS
- Nuxt UI 4 - UI components
- Nuxt Image - Optimized images
- Tailwind CSS 4 - Utility-first CSS
- Docus Layer - Documentation theme
- Nuxt i18n - Internationalization
- Nuxt LLMs -
llms.txtgeneration - Nuxt OG Image - Open Graph image generation
- MCP Toolkit - Native MCP server
- Vercel AI SDK - AI assistant (optional)
For detailed documentation on customizing your Docus project, visit the Docus Documentation
This repository contains the CLI tool source code.
To contribute to the CLI tool:
# Clone this repository
git clone https://github.com/nuxt-content/docus
# Install dependencies
pnpm install
# Run the dev server to run the docus docs
pnpm run devThis is a monorepo containing:
/cli- CLI tool (create-docus)/layer- Docus Nuxt layer (docus)/docs- Official documentation/.starters- Starters project
Published under the MIT license.
Docus has been entirely rewritten from scratch and is inspired from undocs made by @pi0 π
