Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

nuxt-studio努克斯工作室

Agent Skill

nuxt-studio 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,734

周安装

73

GitHub Stars

126

下载量

607
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:nuxt-studio(努克斯工作室)
来源仓库:https://github.com/secondsky/claude-skills
仓库路径:skills/nuxt-studio
安装命令:
npx skills add https://github.com/secondsky/claude-skills --skill nuxt-studio
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/secondsky/claude-skills --skill nuxt-studio

简介

nuxt-studio 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果时使用。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • 当前暂无详细功能说明,需进一步查阅来源仓库获取完整信息。

SKILL.md

Nuxt Studio Setup and Deployment

Overview

Nuxt Studio is a free, open-source visual content editor for Nuxt Content websites that enables content editing directly in production. It provides multiple editor types (Monaco code editor, TipTap visual WYSIWYG editor, Form-based editor), OAuth authentication (GitHub/GitLab/Google), and Git-based content management with commit integration.

Primary use case: Add visual CMS capabilities to existing Nuxt Content websites, typically deployed to a subdomain like studio.domain.com or cms.domain.com.

When to Use This Skill

Use this skill when users need to:

  • Set up Nuxt Studio for the first time on a Nuxt Content website
  • Configure OAuth authentication for Studio access
  • Deploy Studio to Cloudflare Pages or Workers with custom subdomain
  • Troubleshoot Studio authentication, build, or deployment issues
  • Configure editor types or customize Studio behavior
  • Integrate Studio with existing Nuxt v3/v4 applications

Prerequisites Check

Before proceeding with Studio setup, verify these requirements:

  1. Nuxt Version: ≥3.x (Studio requires Nuxt 3)
  2. @nuxt/content Module: ≥2.x (required dependency)
  3. Node.js: ≥18.x recommended
  4. Cloudflare Account: Required for Cloudflare deployment (optional for other platforms)

Check Nuxt Content installation:

# Verify @nuxt/content is installed
grep "@nuxt/content" package.json

# Check nuxt.config.ts for content module
grep "modules.*content" nuxt.config.ts

If Nuxt Content is not installed, install it first:

npx nuxi module add content

Installation

1. Install Nuxt Studio Module

Install the latest beta version (v1.0.0-beta.3 as of December 2025):

npx nuxi module add nuxt-studio@beta

This adds @nuxt/studio to devDependencies and configures the module in nuxt.config.ts.

2. Verify Module Configuration

Check that nuxt.config.ts includes the Studio module:

// nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    '@nuxt/content',
    '@nuxt/studio'  // Added automatically
  ]
})

3. Start Development Mode

Run the development server to test Studio locally:

npm run dev
# or
bun dev

Access Studio at http://localhost:3000/_studio (development mode).

OAuth Authentication Setup

Studio requires OAuth authentication for production deployments. Choose one provider:

Supported Providers

  • GitHub OAuth: Best for public repositories and GitHub-hosted projects
  • GitLab OAuth: Ideal for self-hosted GitLab instances
  • Google OAuth: Universal option for any setup

Quick OAuth Configuration

For detailed OAuth setup instructions for each provider, load references/oauth-providers.md.

Environment variables pattern (all providers):

# GitHub
NUXT_OAUTH_GITHUB_CLIENT_ID=your_client_id
NUXT_OAUTH_GITHUB_CLIENT_SECRET=your_client_secret

# GitLab
NUXT_OAUTH_GITLAB_CLIENT_ID=your_client_id
NUXT_OAUTH_GITLAB_CLIENT_SECRET=your_client_secret

# Google
NUXT_OAUTH_GOOGLE_CLIENT_ID=your_client_id
NUXT_OAUTH_GOOGLE_CLIENT_SECRET=your_client_secret

Callback URL pattern:

https://studio.yourdomain.com/api/auth/callback/[provider]

Replace [provider] with: github, gitlab, or google.

For complete OAuth app creation steps, consult references/oauth-providers.md.

Cloudflare Deployment

Studio works excellently on Cloudflare Pages and Workers. Use the Cloudflare deployment for:

  • Serverless edge deployment
  • Custom subdomain routing (e.g., studio.domain.com)
  • Environment variable management via dashboard
  • Automatic builds from Git

Cloudflare Setup Overview

  1. Configure Nitro preset for Cloudflare in nuxt.config.ts
  2. Create or update wrangler.toml for Workers deployment (optional)
  3. Set environment variables on Cloudflare dashboard
  4. Configure custom domain and subdomain routing
  5. Deploy via Cloudflare Pages or Workers

For complete Cloudflare deployment instructions, load references/cloudflare-deployment.md.

Quick Cloudflare Configuration

Set the Cloudflare Pages preset:

// nuxt.config.ts
export default defineNuxtConfig({
  modules: ['@nuxt/content', '@nuxt/studio'],

  nitro: {
    preset: 'cloudflare-pages'
  }
})

For Workers deployment with custom subdomain routing, see references/cloudflare-deployment.md.

Editor Types

Studio provides three editor types that can be configured per content type:

  1. Monaco Editor: Code editor for markdown, YAML, JSON
  2. TipTap Editor: Visual WYSIWYG editor with MDC component support (default)
  3. Form Editor: Schema-driven form for YAML/JSON files

Configure Default Editor

// nuxt.config.ts
export default defineNuxtConfig({
  studio: {
    editor: {
      default: 'tiptap'  // or 'monaco' or 'form'
    }
  }
})

For detailed editor configuration options, load references/editor-configuration.md.

Subdomain Configuration

Deploy Studio to a subdomain for production use:

Common patterns:

  • studio.yourdomain.com
  • cms.yourdomain.com
  • edit.yourdomain.com
  • admin.yourdomain.com

DNS Setup

  1. Add a CNAME record in your DNS provider
  2. Point subdomain to Cloudflare Pages deployment
  3. Configure custom domain in Cloudflare Pages settings

For complete subdomain setup with Cloudflare, load references/subdomain-setup.md.

Top 5 Common Errors

1. OAuth Redirect URI Mismatch

Error: Authentication loop or "redirect_uri_mismatch" error

Cause: OAuth app callback URL doesn't match actual deployment URL

Solution:

Ensure OAuth app callback URL is:
https://studio.yourdomain.com/api/auth/callback/[provider]

Not:
https://yourdomain.com/api/auth/callback/[provider]

2. Module Not Found: @nuxt/studio

Error: Cannot find module '@nuxt/studio'

Cause: Studio module not installed or installed incorrectly

Solution:

npx nuxi module add nuxt-studio@beta
# or
npm install -D @nuxt/studio

3. Cloudflare Pages Build Failure

Error: Build fails with "Incompatible module" or runtime errors

Cause: Nitro preset not configured for Cloudflare

Solution:

// nuxt.config.ts
export default defineNuxtConfig({
  nitro: {
    preset: 'cloudflare-pages'
  }
})

4. Authentication Loop After Login

Error: Redirects to login repeatedly after successful OAuth

Cause: Session cookies not persisting due to domain mismatch

Solution:

  • Verify NUXT_PUBLIC_STUDIO_URL environment variable matches deployment URL
  • Check cookie settings in browser (must allow third-party cookies for OAuth)
  • Ensure deployment URL uses HTTPS (not HTTP)

5. Subdomain Routing Not Working

Error: Studio loads on main domain instead of subdomain

Cause: DNS/wrangler configuration incorrect

Solution:

  • Verify CNAME record points to Cloudflare Pages
  • Check custom domain configuration in Cloudflare dashboard
  • For Workers: verify wrangler.toml routes configuration

For complete error catalog and solutions, load references/troubleshooting.md.

Working with Templates

The skill includes working configuration templates:

  • templates/nuxt.config.ts: Complete Studio module configuration
  • templates/wrangler.toml: Cloudflare Workers deployment config
  • templates/studio-auth-github.ts: GitHub OAuth implementation
  • templates/studio-auth-gitlab.ts: GitLab OAuth implementation
  • templates/studio-auth-google.ts: Google OAuth implementation

Use these as starting points for your Studio setup.

Development Workflow

Local Development

  1. Install Studio module: npx nuxi module add nuxt-studio@beta
  2. Start dev server: npm run dev
  3. Access Studio: http://localhost:3000/_studio
  4. Edit content visually
  5. Commit changes from Studio UI

Production Deployment

  1. Configure OAuth provider (GitHub/GitLab/Google)
  2. Set environment variables on deployment platform
  3. Configure Nitro preset for target platform
  4. Deploy to Cloudflare Pages/Workers or other platform
  5. Set up custom subdomain
  6. Test authentication and content editing

Validation Checklist

Before deploying Studio to production:

  • Nuxt Content installed and configured (≥v2.x)
  • Nuxt version ≥3.x
  • @nuxt/studio module installed
  • OAuth provider configured with valid credentials
  • Environment variables set correctly
  • Nitro preset configured for deployment platform
  • Custom subdomain DNS configured
  • Callback URLs match deployment URL
  • Studio accessible at subdomain URL
  • Authentication working correctly
  • Content editing and commit functionality tested

When to Load References

Load reference files when working on specific aspects:

  • OAuth setup: Load references/oauth-providers.md for detailed GitHub/GitLab/Google OAuth app creation
  • Cloudflare deployment: Load references/cloudflare-deployment.md for complete Cloudflare Pages/Workers setup with wrangler, custom domains, and environment variables
  • Editor configuration: Load references/editor-configuration.md for Monaco/TipTap/Form editor customization
  • Subdomain setup: Load references/subdomain-setup.md for DNS and routing configuration
  • Troubleshooting: Load references/troubleshooting.md for comprehensive error solutions and debugging

Utility Scripts

Use the included scripts for common operations:

  • scripts/check-prerequisites.sh: Verify Nuxt Content and version requirements
  • scripts/validate-config.sh: Check nuxt.config.ts Studio configuration
  • scripts/test-oauth.sh: Test OAuth environment variables setup

Run scripts with:

bash $CLAUDE_PLUGIN_ROOT/skills/nuxt-studio/scripts/script-name.sh

Integration with Other Skills

This skill works well with:

  • nuxt-content: Prerequisites for Studio (content module required)
  • nuxt-v4: Core Nuxt framework knowledge for configuration
  • cloudflare-worker-base: Cloudflare deployment fundamentals
  • better-auth: Alternative authentication patterns if custom auth needed

Additional Resources

Version Information

  • Nuxt Studio: v1.0.0-beta.3 (latest as of December 2025)
  • Nuxt: ≥3.x required
  • @nuxt/content: ≥2.x required
  • Node.js: ≥18.x recommended

For the latest version information, check: https://github.com/nuxt-content/studio/releases


Next steps: After Studio is configured, test the deployment thoroughly, ensure OAuth authentication works correctly, and verify that content editing and Git commits function as expected.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

windsurf

51.17%
按下载量换算311

Cursor

28.97%
按下载量换算176

Codex

15.86%
按下载量换算96

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills