vercel-deployment — Vercel развертывание vercel-deployment, ridedine, community, Vercel развертывание, ide skills, Next.js деплои, переменные окружения, настройка домена, предварительные деплои, деплои в производство, Claude Code

v1.1.0

Об этом навыке

Идеально для агентов облачного развертывания, которым требуется автоматическое развертывание приложений Next.js в Vercel. Vercel Deployment - это процесс развертывания приложений Next.js на Vercel.

Возможности

Поддержка приложений Next.js 15
Настройка переменных окружения
Создание отдельных проектов Vercel
Настройка пользовательских доменов
Предварительные деплои для PR
Деплои в производство на ветке main

# 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

Идеально для агентов облачного развертывания, которым требуется автоматическое развертывание приложений Next.js в Vercel. Vercel Deployment - это процесс развертывания приложений Next.js на Vercel.

Зачем использовать этот навык

Наделяет агентов возможностью работать с отдельными проектами Vercel, переменными среды и конфигурацией домена для веб- и админ-приложений, упрощая предварительные развертывания для PR и производственные развертывания в основном ветке с использованием Next.js 15.

Подходит лучше всего

Идеально для агентов облачного развертывания, которым требуется автоматическое развертывание приложений Next.js в Vercel.

Реализуемые кейсы использования for vercel-deployment

Автоматизировать развертывание приложений Next.js в Vercel
Настроить переменные среды для веб- и админ-приложений
Настроить пользовательские домены для производственных развертываний

! Безопасность и ограничения

  • Требует учетной записи и настройки проекта Vercel
  • Ограничен приложениями Next.js 15
  • Требует отдельной конфигурации для веб- и админ-приложений

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?

Идеально для агентов облачного развертывания, которым требуется автоматическое развертывание приложений Next.js в Vercel. Vercel Deployment - это процесс развертывания приложений Next.js на Vercel.

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, Настроить переменные среды для веб- и админ-приложений, Настроить пользовательские домены для производственных развертываний.

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. Требует отдельной конфигурации для веб- и админ-приложений.

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. 🦞

widget-generator

Logo of f
f

Создание настраиваемых плагинов виджетов для системы ленты новостей prompts.chat

flags

Logo of vercel
vercel

Фреймворк React

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Разработчик