From nuxt-skills
Configures and operates the self-hosted Nuxt Studio editor for Nuxt Content. Covers installation, OAuth/custom auth, media, drafts, Git publishing, and SSR deployment.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nuxt-skills:nuxt-studioThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Nuxt Studio owns content editing and publishing. Nuxt Content owns collections, queries, parsing, and rendering.
Nuxt Studio owns content editing and publishing. Nuxt Content owns collections, queries, parsing, and rendering.
nuxt-studio and @nuxt/content versions, deployment mode, repository provider, and authentication provider. Setup is understood when the editor route, Git target, and login callback all point at the same deployment.nuxt-content boundary.| Task | Open |
|---|---|
| Install, repository settings, OAuth/custom auth, editor filters, or environment variables | Configuration |
| Visual/MDC editing, schema forms, drafts, media, or AI assistance | Live editing |
| SSR deployment, Git publishing, branch strategy, conflicts, or monorepos | Deployment |
| Collections, validators, queries, hooks, or rendering | nuxt-content skill |
npx nuxt module add nuxt-studio
export default defineNuxtConfig({
modules: ['@nuxt/content', 'nuxt-studio'],
studio: {
repository: {
provider: 'github',
owner: 'your-org',
repo: 'your-repo',
branch: 'main',
},
},
})
NUXT_STUDIO_AUTH_GITHUB_CLIENT_ID=<client-id>
NUXT_STUDIO_AUTH_GITHUB_CLIENT_SECRET=<client-secret>
Studio runs at /_studio by default. Supported CI providers can infer repository metadata, but authentication credentials remain explicit deployment secrets.
npx claudepluginhub onmax/nuxt-skills --plugin nuxt-skillsSets up Nuxt Studio module for visual content editing and CMS in Nuxt 3+ sites with @nuxt/content, covering installation, OAuth authentication (GitHub/GitLab/Google), Cloudflare subdomain deployment, and Monaco/TipTap editor config.
Git-based CMS for Nuxt that manages content via Markdown/YAML/JSON/CSV files with type-safe queries, SQL storage, full-text search, and Nuxt Studio editing.
Builds typed, content-driven Nuxt applications with @nuxt/content. Guides on collections, queryCollection, Markdown/MDC rendering, content databases, hooks, custom sources, search, and Content v2 migrations.