vercel-deployment — Vercel デプロイ vercel-deployment, ridedine, community, Vercel デプロイ, ide skills, Next.js アプリのデプロイ, 環境変数の設定, カスタムドメインの設定, プレビューデプロイの設定, プロダクションデプロイの設定, Claude Code

v1.1.0

このスキルについて

Vercel に Next.js アプリを自動デプロイするクラウド デプロイ エージェントに適しています。 Vercel デプロイとは、Vercel プラットフォームを使用して Next.js アプリをデプロイすることです

機能

Next.js アプリのデプロイ
環境変数の設定
カスタムドメインの設定
プレビューデプロイ
プロダクションデプロイ

# Core Topics

Ritenoob Ritenoob
[0]
[0]
Updated: 2/27/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

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

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
41
Canonical Locale
en
Detected Body Locale
en

Vercel に Next.js アプリを自動デプロイするクラウド デプロイ エージェントに適しています。 Vercel デプロイとは、Vercel プラットフォームを使用して Next.js アプリをデプロイすることです

このスキルを使用する理由

エージェントが Vercel プロジェクト、環境変数、Web アプリと管理アプリのドメイン設定を個別に扱えるようにし、Next.js 15 を使用した PR のプレビュー デプロイとメイン ブランチのプロダクション デプロイを簡素化します。

おすすめ

Vercel に Next.js アプリを自動デプロイするクラウド デプロイ エージェントに適しています。

実現可能なユースケース for vercel-deployment

Next.js アプリを Vercel に自動デプロイする
Web アプリと管理アプリの環境変数を設定する
生产デプロイのカスタム ドメインを設定する

! セキュリティと制限

  • Vercel アカウントとプロジェクト設定が必要
  • Next.js 15 アプリのみ対応
  • Web アプリと管理アプリの個別設定が必要

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

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.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs 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 & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is vercel-deployment?

Vercel に Next.js アプリを自動デプロイするクラウド デプロイ エージェントに適しています。 Vercel デプロイとは、Vercel プラットフォームを使用して Next.js アプリをデプロイすることです

How do I install vercel-deployment?

Run the command: npx killer-skills add Ritenoob/ridedine. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for vercel-deployment?

Key use cases include: Next.js アプリを Vercel に自動デプロイする, Web アプリと管理アプリの環境変数を設定する, 生产デプロイのカスタム ドメインを設定する.

Which IDEs are compatible with vercel-deployment?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for vercel-deployment?

Vercel アカウントとプロジェクト設定が必要. Next.js 15 アプリのみ対応. Web アプリと管理アプリの個別設定が必要.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Ritenoob/ridedine. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use vercel-deployment immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

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

vercel-deployment

Install vercel-deployment, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

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

Vercel Deployment

Problem

RidenDine has two Next.js 15 apps (web, admin) deployed to Vercel. Each needs separate Vercel projects, environment variables, and domain configuration. Preview deployments for PRs, production deployments on main branch.

Context / Trigger Conditions

Use this skill when:

  • Deploying apps to production
  • Setting up new Vercel projects
  • Configuring environment variables
  • Debugging build failures
  • Setting up custom domains
  • Configuring preview deployments

Pattern 1: Vercel Project Setup

Create Vercel Project:

bash
1# Install Vercel CLI 2pnpm add -g vercel 3 4# Link web app 5cd apps/web 6vercel link 7 8# Link admin app 9cd apps/admin 10vercel link

Project Configuration (vercel.json):

Keep per-app vercel.json minimal to allow Vercel's Next.js builder to handle install/build.

json
1{ 2 "framework": "nextjs" 3}

Pattern 2: Environment Variables

Web App (.env.production):

bash
1NEXT_PUBLIC_SUPABASE_URL=https://<project-id>.supabase.co 2NEXT_PUBLIC_SUPABASE_ANON_KEY=<production-anon-key> 3NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_live_... 4STRIPE_SECRET_KEY=sk_live_...

Set via Vercel Dashboard:

  1. Dashboard → Project → Settings → Environment Variables
  2. Add each variable for Production, Preview, Development
  3. Redeploy to apply changes

Or via CLI:

bash
1vercel env add NEXT_PUBLIC_SUPABASE_URL production 2vercel env add STRIPE_SECRET_KEY production

Pattern 3: Deployment

Automatic Deployment:

bash
1# Push to main → production deployment 2git push origin main 3 4# Push to feature branch → preview deployment 5git push origin feature/new-feature

Manual Deployment:

bash
1cd apps/web 2vercel --prod # Deploy to production 3vercel # Deploy to preview

Pattern 4: Build Configuration

pnpm Monorepo Support:

json
1// apps/web/package.json 2{ 3 "scripts": { 4 "build": "next build", 5 "dev": "next dev", 6 "start": "next start" 7 } 8}

Install Command (vercel.json):

Do not set this in per-app vercel.json. Leave install commands blank so Vercel runs pnpm from the repo root.

Pattern 5: Monorepo Root Directory Configuration (CRITICAL)

Problem: "No Next.js version detected" error

When deploying from a monorepo subdirectory, Vercel looks for next in the repository root's package.json. It cannot be configured via vercel.json alone.

Solution: Set Root Directory via Dashboard

  1. Deploy once (will fail with "No Next.js version detected")
  2. Go to Vercel Dashboard → Project → Settings → General
  3. Find "Root Directory" section → Click "Edit"
  4. Set to subdirectory path: apps/admin or apps/web
  5. Click "Save"
  6. Redeploy from Deployments tab

Alternative: GitHub Integration (Recommended for Free Tier)

GitHub integration auto-detects monorepo structure:

  1. Go to https://vercel.com/new
  2. Import GitHub repository
  3. Vercel shows "Multiple apps detected"
  4. Configure each app:
    • Name: admin / web
    • Root Directory: apps/admin / apps/web
    • Framework: Next.js (auto-detected)
    • Build Command: (leave blank)
    • Install Command: (leave blank)
  5. Deploy both projects

Free Tier Strategy:

  • Separate projects (admin + web) - Recommended

    • 2 projects = 2 separate domains
    • Independent deployments
    • Easier environment variable management
    • Both deployments count toward free tier quota
  • Single project with routing - NOT recommended

    • Complex routing configuration
    • Harder to manage separate domains
    • No benefit on free tier

Debugging Build Failures

Issue: "No Next.js version detected"

Cause: Root Directory not configured for monorepo

Fix: Set Root Directory to subdirectory path via Vercel dashboard (see Pattern 5)

Issue: Module not found

Fix: Verify workspace dependencies installed, check tsconfig paths

Issue: Environment variable undefined

Fix: Add to Vercel dashboard, redeploy

Issue: Build timeout

Fix: Optimize build time, increase timeout in Vercel settings

References

関連スキル

Looking for an alternative to vercel-deployment or another community skill for your workflow? Explore these related open-source skills.

すべて表示

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
開発者