create-docs — nuxt-module create-docs, nuxt-typed-router, community, nuxt-module, ide skills, nuxt-router, nuxt-typescript, nuxtjs, typed-pages, typed-router

v1.0.0

关于此技能

🚦Provide autocompletion and typecheck to Nuxt router

# 核心主题

victorgarciaesgi victorgarciaesgi
[412]
[16]
更新于: 4/1/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 3/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Quality floor passed for review
Review Score
3/11
Quality Score
50
Canonical Locale
en
Detected Body Locale
en

🚦Provide autocompletion and typecheck to Nuxt router

核心价值

🚦Provide autocompletion and typecheck to Nuxt router

适用 Agent 类型

Suitable for team workflows that need explicit guardrails before installation and execution.

赋予的主要能力 · create-docs

! 使用限制与门槛

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The page lacks a strong recommendation layer.
  • - The page lacks concrete use-case guidance.
  • - The page lacks explicit limitations or caution signals.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

评审后的下一步

先决定动作,再继续看上游仓库材料

Killer-Skills 的主价值不应该停在“帮你打开仓库说明”,而是先帮你判断这项技能是否值得安装、是否应该回到可信集合复核,以及是否已经进入工作流落地阶段。

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

create-docs 是什么?

🚦Provide autocompletion and typecheck to Nuxt router

如何安装 create-docs?

运行命令:npx killer-skills add victorgarciaesgi/nuxt-typed-router/create-docs。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

create-docs 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add victorgarciaesgi/nuxt-typed-router/create-docs。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    create-docs 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

create-docs

安装 create-docs,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看评审结论、使用场景与安装路径。

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Create Docs

Generate a complete, production-ready documentation site for any project.

Workflow

  1. Analyze - Detect package manager, monorepo structure, read context
  2. Initialize - Create docs directory with correct setup
  3. Generate - Write documentation pages using templates
  4. Configure - Set up AI integration (MCP, llms.txt)
  5. Finalize - Provide next steps with correct commands

Package Manager Reference

Detect from lock files, default to npm if none found:

Lock FilePMInstallRunAdd
pnpm-lock.yamlpnpmpnpm installpnpm runpnpm add
package-lock.jsonnpmnpm installnpm runnpm install
yarn.lockyarnyarn installyarnyarn add
bun.lockbbunbun installbun runbun add

Use [pm] as placeholder in commands below.


Step 1: Analyze Project

Detect Project Structure

Check for:
├── pnpm-workspace.yaml   → pnpm monorepo
├── turbo.json            → Turborepo monorepo
├── lerna.json            → Lerna monorepo
├── nx.json               → Nx monorepo
├── apps/                 → Apps directory (monorepo)
├── packages/             → Packages directory (monorepo)
├── docs/                 → Existing docs (avoid overwriting)
├── README.md             → Main documentation source
└── src/ or lib/          → Source code location

Determine Docs Location

Project TypeTarget DirectoryWorkspace Entry
Standard project./docsN/A
Monorepo with apps/./apps/docsapps/docs
Monorepo with packages/./docsdocs
Existing docs/ folderAsk user or ./documentation

Read Context Files

FileExtract
README.mdProject name, description, features, usage examples
package.jsonName, description, dependencies, repository URL
src/ or lib/Exported functions, composables for API docs

Detect i18n Requirement

Check if project needs multi-language docs:

IndicatorAction
@nuxtjs/i18n in dependenciesUse i18n template
locales/ or i18n/ folder existsUse i18n template
Multiple language README filesUse i18n template
User explicitly mentions multiple languagesUse i18n template
None of the aboveUse default template

Step 2: Initialize Docs

Create Directory Structure

Default template:

[docs-location]/
├── app/                            # Optional: for customization
│   ├── app.config.ts
│   ├── components/
│   ├── layouts/
│   └── pages/
├── content/
│   ├── index.md
│   └── 1.getting-started/
│       ├── .navigation.yml
│       └── 1.introduction.md
├── public/
│   └── favicon.ico
├── package.json
└── .gitignore

i18n template (if multi-language detected):

[docs-location]/
├── app/
│   └── app.config.ts
├── content/
│   ├── en/
│   │   ├── index.md
│   │   └── 1.getting-started/
│   │       ├── .navigation.yml
│   │       └── 1.introduction.md
│   └── fr/                         # Or other detected languages
│       ├── index.md
│       └── 1.getting-started/
│           ├── .navigation.yml
│           └── 1.introduction.md
├── nuxt.config.ts                  # Required for i18n config
├── public/
│   └── favicon.ico
├── package.json
└── .gitignore

Create package.json

Default:

json
1{ 2 "name": "[project-name]-docs", 3 "private": true, 4 "scripts": { 5 "dev": "nuxt dev --extends docus", 6 "build": "nuxt build --extends docus", 7 "generate": "nuxt generate --extends docus", 8 "preview": "nuxt preview --extends docus" 9 }, 10 "dependencies": { 11 "docus": "latest", 12 "better-sqlite3": "^12.5.0", 13 "nuxt": "^4.2.2" 14 } 15}

i18n (add @nuxtjs/i18n):

json
1{ 2 "name": "[project-name]-docs", 3 "private": true, 4 "scripts": { 5 "dev": "nuxt dev --extends docus", 6 "build": "nuxt build --extends docus", 7 "generate": "nuxt generate --extends docus", 8 "preview": "nuxt preview --extends docus" 9 }, 10 "dependencies": { 11 "@nuxtjs/i18n": "^10.2.1", 12 "docus": "latest", 13 "better-sqlite3": "^12.5.0", 14 "nuxt": "^4.2.2" 15 } 16}

Create nuxt.config.ts (i18n only)

ts
1export default defineNuxtConfig({ 2 modules: ['@nuxtjs/i18n'], 3 i18n: { 4 locales: [ 5 { code: 'en', language: 'en-US', name: 'English' }, 6 { code: 'fr', language: 'fr-FR', name: 'Français' } 7 ], 8 defaultLocale: 'en' 9 } 10})

Create .gitignore

node_modules
.nuxt
.output
.data
dist

Update Monorepo Configuration (if applicable)

pnpm Monorepo

  1. Add docs to workspace and configure onlyBuiltDependencies (required for better-sqlite3):
yaml
1packages: 2 - 'apps/*' 3 - 'docs' 4 5onlyBuiltDependencies: 6 - better-sqlite3
  1. Add dev script to root package.json:
json
1{ 2 "scripts": { 3 "docs:dev": "pnpm run --filter [docs-package-name] dev" 4 } 5}

Or with directory path:

json
1{ 2 "scripts": { 3 "docs:dev": "cd docs && pnpm dev" 4 } 5}

npm/yarn Monorepo

json
1{ 2 "workspaces": ["apps/*", "docs"], 3 "scripts": { 4 "docs:dev": "npm run dev --workspace=docs" 5 } 6}

Step 3: Generate Documentation

Use templates from references/templates.md.

CRITICAL: MDC Component Naming

All Nuxt UI components in MDC must use the u- prefix:

CorrectWrong
::u-page-hero::page-hero
::u-page-section::page-section
:::u-page-feature:::page-feature
:::u-button:::button
::::u-page-card::::page-card

Without the u- prefix, Vue will fail to resolve the components.

Documentation Structure

content/
├── index.md                        # Landing page
├── 1.getting-started/
│   ├── .navigation.yml
│   ├── 1.introduction.md
│   └── 2.installation.md
├── 2.guide/
│   ├── .navigation.yml
│   ├── 1.configuration.md
│   ├── 2.authentication.md
│   └── 3.deployment.md
└── 3.api/                          # If applicable
    ├── .navigation.yml
    └── 1.reference.md

Generate Pages

  1. Landing page (index.md) - Hero + features grid
  2. Introduction - What & why, use cases
  3. Installation - Prerequisites, install commands
  4. Guide pages - Feature documentation with action-based H2 headings

For writing style, see references/writing-guide.md. For MDC components, see references/mdc-components.md.


Step 4: Configure AI Integration

Docus automatically includes MCP server (/mcp) and llms.txt generation. No configuration needed.

Do NOT add AI Integration sections to the landing page. These features work automatically.

Optionally mention in the introduction page:

markdown
1::note 2This documentation includes AI integration with MCP server and automatic `llms.txt` generation. 3::

Optional: app.config.ts

ts
1export default defineAppConfig({ 2 docus: { 3 name: '[Project Name]', 4 description: '[Project description]', 5 url: 'https://[docs-url]', 6 socials: { 7 github: '[org]/[repo]' 8 } 9 } 10})

Optional: Theme Customization

If the project has a design system or brand colors, customize the docs theme.

Custom CSS

Create app/assets/css/main.css:

css
1@import "tailwindcss"; 2@import "@nuxt/ui"; 3 4@theme static { 5 /* Custom font */ 6 --font-sans: 'Inter', sans-serif; 7 8 /* Custom container width */ 9 --ui-container: 90rem; 10 11 /* Custom primary color (use project brand color) */ 12 --color-primary-50: oklch(0.97 0.02 250); 13 --color-primary-500: oklch(0.55 0.2 250); 14 --color-primary-900: oklch(0.25 0.1 250); 15}

Extended app.config.ts

ts
1export default defineAppConfig({ 2 docus: { 3 name: '[Project Name]', 4 description: '[Project description]', 5 url: 'https://[docs-url]', 6 socials: { 7 github: '[org]/[repo]', 8 x: '@[handle]' 9 } 10 }, 11 // Customize UI components 12 ui: { 13 colors: { 14 primary: 'emerald', 15 neutral: 'zinc', 16 }, 17 pageHero: { 18 slots: { 19 title: 'font-semibold sm:text-6xl' 20 } 21 } 22 } 23})

Step 5: Finalize

Provide instructions using detected package manager.

Standard Project

Documentation created in [docs-location]

To start:

  cd [docs-location]
  [pm] install
  [pm] run dev

Available at http://localhost:3000

Monorepo

Documentation created in [docs-location]

To start from root:

  [pm] install
  [pm] run docs:dev

Or from docs directory:

  cd [docs-location]
  [pm] run dev

Available at http://localhost:3000

Features Included

  • Full-text search
  • Dark mode
  • MCP server for AI tools (/mcp)
  • LLM integration (/llms.txt)
  • SEO optimized

Next Steps

  1. Review generated content
  2. Add more guides in content/2.guide/
  3. Customize theme in app.config.ts
  4. Deploy to Vercel/Netlify/Cloudflare

Suggest Follow-ups

After documentation is created, suggest enhancements:

Your documentation is ready!

Would you like me to:
- **Customize the UI** - Match your brand colors and style
- **Enhance the landing page** - Add feature cards, code previews, visuals
- **Add i18n support** - Multi-language documentation
- **Set up deployment** - Deploy to Vercel, Netlify, or Cloudflare

Let me know what you'd like to improve!

Deployment

PlatformCommandOutput
Vercelnpx vercel --prodAuto-detected
Netlify[pm] run generate.output/public
Cloudflare Pages[pm] run generate.output/public
GitHub Pages[pm] run generate.output/public

Example: auth-utils

Detected: pnpm monorepo, package in packages/

Generated structure:

docs/
├── content/
│   ├── index.md
│   ├── 1.getting-started/
│   │   ├── .navigation.yml
│   │   ├── 1.introduction.md
│   │   └── 2.installation.md
│   ├── 2.guide/
│   │   ├── .navigation.yml
│   │   ├── 1.authentication.md
│   │   ├── 2.oauth-providers.md
│   │   └── 3.sessions.md
│   └── 3.api/
│       ├── .navigation.yml
│       └── 1.composables.md
├── public/
│   └── favicon.ico
├── package.json
└── .gitignore

Inside authentication.md (action-based H2 headings):

markdown
1## Add basic authentication 2## Protect your routes 3## Handle login redirects 4## Customize the session

相关技能

寻找 create-docs 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具