vercel-deployment — deploy Next.js vercel-deployment, ridedine, community, deploy Next.js, ide skills, Vercel deployment, variables de entorno, dominios personalizados, depuración de errores, implementación de vista previa

v1.1.0

Acerca de este Skill

Ideal para agentes de implementación en la nube que necesitan implementación automática de aplicaciones Next.js en Vercel. Vercel-Deployment es una habilidad que permite implementar aplicaciones Next.js en Vercel con configuraciones de entorno y dominio personalizadas

Características

Implementación de aplicaciones Next.js 15 en Vercel
Configuración de variables de entorno
Configuración de dominios personalizados
Depuración de errores de compilación
Implementación de versiones de vista previa para solicitudes de extracción

# 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

Ideal para agentes de implementación en la nube que necesitan implementación automática de aplicaciones Next.js en Vercel. Vercel-Deployment es una habilidad que permite implementar aplicaciones Next.js en Vercel con configuraciones de entorno y dominio personalizadas

¿Por qué usar esta habilidad?

Habilita a los agentes a manejar proyectos de Vercel separados, variables de entorno y configuración de dominio para aplicaciones web y de administración, simplificando las implementaciones de vista previa para PR y las implementaciones de producción en la rama principal usando Next.js 15.

Mejor para

Ideal para agentes de implementación en la nube que necesitan implementación automática de aplicaciones Next.js en Vercel.

Casos de uso accionables for vercel-deployment

Automatización de la implementación de aplicaciones Next.js en Vercel
Configuración de variables de entorno para aplicaciones web y de administración
Configuración de dominios personalizados para implementaciones de producción

! Seguridad y limitaciones

  • Requiere cuenta y configuración de proyecto de Vercel
  • Limitado a aplicaciones Next.js 15
  • Requiere configuración separada para aplicaciones web y de administración

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?

Ideal para agentes de implementación en la nube que necesitan implementación automática de aplicaciones Next.js en Vercel. Vercel-Deployment es una habilidad que permite implementar aplicaciones Next.js en Vercel con configuraciones de entorno y dominio personalizadas

How do I install vercel-deployment?

Run the command: npx killer-skills add Ritenoob/ridedine/vercel-deployment. 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: Automatización de la implementación de aplicaciones Next.js en Vercel, Configuración de variables de entorno para aplicaciones web y de administración, Configuración de dominios personalizados para implementaciones de producción.

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?

Requiere cuenta y configuración de proyecto de Vercel. Limitado a aplicaciones Next.js 15. Requiere configuración separada para aplicaciones web y de administración.

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/vercel-deployment. 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. Review the use cases, limitations, and setup path before rollout.

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

Habilidades relacionadas

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

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Generar complementos de widgets personalizables para el sistema de feeds de prompts.chat

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

El Marco de React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensores y redes neuronales dinámicas en Python con fuerte aceleración de GPU

98.6k
0
Desarrollador