VE

vercel-cli-management

Streamlines Vercel workflow through CLI commands for deployments, env var management, and task scheduling.

Install

mkdir -p .claude/skills/vercel-cli-management && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/7985" && unzip -o skill.zip -d .claude/skills/vercel-cli-management && rm skill.zip

Installs to .claude/skills/vercel-cli-management

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Deploy, manage environment variables, view logs, and configure cron jobs with Vercel CLI. Use when deploying to Vercel, managing env vars (add/update/remove), viewing runtime/build logs, or configuring scheduled tasks in vercel.json.
233 chars✓ has a “when” trigger
Beginner

Key capabilities

  • Deploy to production or preview
  • Manage environment variables
  • View runtime and build logs
  • Configure cron jobs in vercel.json

How it works

It utilizes the Vercel CLI to interface with the Vercel API for deployments, secret management, and log streaming.

Inputs & outputs

You give it
Deployment command or environment variable change
You get back
Updated Vercel deployment state

When to use vercel-cli-management

  • Deploy to production
  • Manage environment variables
  • View build logs
  • Configure cron jobs

About this skill

Vercel CLI Management

Master Vercel CLI for deployments, environment variable management, log viewing, and cron job configuration.

Quick Reference

Deployment

# Deploy current directory (preview)
vercel

# Deploy to production
vercel deploy --prod
# or
vercel --prod

# Force redeploy (even if unchanged)
vercel deploy --force

# Deploy with inline env vars
vercel deploy --env NODE_ENV=production -e API_KEY=secret

# Build locally first, then deploy
vercel build
vercel deploy --prebuilt

# Rebuild + redeploy previous deployment
vercel redeploy <deployment-url-or-id>

# Promote preview deployment to production
vercel promote <deployment-url-or-id>

# Rollback to previous deployment
vercel rollback <deployment-url-or-id>

# List all deployments
vercel list

# Get deployment info
vercel inspect <deployment-url-or-id>

# Delete deployment(s)
vercel remove <deployment-id>

Environment Variables

List

# List all env vars (development by default)
vercel env list

# List for specific environment
vercel env list production
vercel env list preview
vercel env list development

# List for specific git branch
vercel env list production main

Add

# Add to all environments (interactive)
vercel env add MY_VAR
# Enter value when prompted

# Add to specific environment
vercel env add API_TOKEN production

# Add sensitive variable (masked in dashboard)
vercel env add SECRET_KEY --sensitive

# Override existing
vercel env add MY_VAR --force

# Add for specific git branch
vercel env add DB_URL production main

Update

# Update in all environments (interactive)
vercel env update MY_VAR

# Update specific environment
vercel env update API_TOKEN production

# Update from stdin
cat ~/.npmrc | vercel env update NPM_RC production
vercel env update CONFIG production < config.json

# Mark as sensitive
vercel env update SECRET_KEY --sensitive

Remove

# Remove from all environments
vercel env remove API_TOKEN

# Remove from specific environment
vercel env remove SECRET_KEY production

# Skip confirmation
vercel env remove API_TOKEN -y

# Remove for specific branch
vercel env remove DB_URL production main

Pull to Local

# Pull development vars to .env.local
vercel env pull

# Pull to custom file
vercel env pull .env.development.local

# Pull specific environment
vercel env pull .env.production --environment production

Logs

Runtime Logs (live application logs)

# Stream runtime logs for 5 minutes
vercel logs <deployment-url-or-id>

# Example with Jupiter deployment
vercel logs jupiter-qhb0ke91n-captaincrouton89s-projects.vercel.app

# Output as JSON (for piping to jq)
vercel logs <deployment-url-or-id> --json

# Filter with jq
vercel logs <deployment-url-or-id> --json | jq 'select(.level == "error")'

Build Logs (compilation + deployment)

# Show build logs for a deployment
vercel inspect <deployment-url-or-id> --logs

# Wait for build to complete and show logs
vercel inspect <deployment-url-or-id> --logs --wait

# Timeout after X seconds
vercel inspect <deployment-url-or-id> --logs --timeout 90s

Cron Jobs

Cron jobs are configured in vercel.json only—there are no CLI commands for management.

Configuration (vercel.json)

{
  "crons": [
    {
      "path": "/api/cron/email-sync",
      "schedule": "*/5 * * * *"
    },
    {
      "path": "/api/cron/weekly-digest",
      "schedule": "0 0 * * 1"
    },
    {
      "path": "/api/cron/cleanup",
      "schedule": "0 2 * * *"
    }
  ]
}

Cron Expression Format (standard cron syntax, UTC timezone)

minute (0-59) hour (0-23) day-of-month (1-31) month (1-12) day-of-week (0-6)

Examples

*/5 * * * *      Every 5 minutes
0 */4 * * *      Every 4 hours
0 0 * * *        Daily at midnight UTC
0 9 * * 1        Every Monday at 9 AM UTC
0 0 1 * *        First day of month
0 0 * * 0        Every Sunday

Important Constraints

  • Cannot use both day-of-month AND day-of-week; one must be *
  • No text alternatives (MON, SUN, JAN, DEC not supported)
  • All times in UTC
  • Cron jobs make GET requests to your deployment with vercel-cron/1.0 user agent

Verify Crons

  • Modify vercel.json and redeploy: vercel deploy --prod
  • View status in dashboard: Project → Settings → Cron Jobs
  • Monitor logs: vercel logs <deployment-url>

Common Workflows

Deploy with Environment Variables

Interactive

# Deploy and set vars interactively
vercel env add NODE_ENV
vercel env add LOG_LEVEL
vercel deploy --prod

Command Line

# Single deploy with env vars
vercel deploy --prod -e NODE_ENV=production -e LOG_LEVEL=debug

Fix Failed Deployment

# Check what went wrong
vercel inspect <deployment-id> --logs

# Fix code or config, then redeploy
# Option 1: Build and deploy changed code
vercel deploy --prod

# Option 2: Rebuild previous deployment with fixes
vercel redeploy <deployment-id> --target production

# Option 3: Rollback to last known good
vercel rollback <deployment-id>

Monitor Live Application

# View recent runtime logs (5-minute window, live stream)
vercel logs my-app-xyz.vercel.app

# Filter for errors only
vercel logs my-app-xyz.vercel.app --json | jq 'select(.level == "error")'

# Follow specific cron job execution
vercel logs my-app-xyz.vercel.app --json | jq 'select(.path == "/api/cron/email-sync")'

Environment Variable Workflow

# Add secrets for production
vercel env add DATABASE_URL production
vercel env add API_KEY production --sensitive

# Pull development vars locally
vercel env pull .env.local

# Update after rotation
vercel env update API_KEY production

# Remove deprecated vars
vercel env remove OLD_TOKEN -y

Debug Cron Jobs

# 1. Verify config in vercel.json
cat vercel.json

# 2. Deploy with changes
vercel deploy --prod

# 3. Monitor execution in logs
vercel logs <deployment-url> --json | jq 'select(.path == "/api/cron/your-route")'

# 4. Check cron logs in dashboard
# Project → Settings → Cron Jobs → View Logs button

Important Notes

Deployment Targets

  • Production: Assigned to project domains, no live preview
  • Preview: Auto-generated URL, live preview before promoting
  • Development: Local testing with vercel dev

Environment Scopes

  • production - Production environment
  • preview - Preview/staging deployments
  • development - Local .env.local file
  • Git branches - Specific branch overrides

API Rate Limits

  • Check dashboard for per-team limits
  • Redeploys and promotions may have separate limits

User Agent Detection for Crons

  • Vercel cron requests include: User-Agent: vercel-cron/1.0
  • Use for authentication: if (req.headers['user-agent'] === 'vercel-cron/1.0')

Examples from Real Projects

Jupiter Mail Project

{
  "crons": [
    {
      "path": "/api/cron/email-sync",
      "schedule": "*/5 * * * *"
    },
    {
      "path": "/api/cron/weekly-digest",
      "schedule": "0 0 * * 1"
    },
    {
      "path": "/api/cron/delete-old-emails",
      "schedule": "0 0 * * *"
    }
  ]
}

Deploy with: vercel deploy --prod

When not to use it

  • When managing non-Vercel infrastructure
  • When cron jobs require non-UTC timezones

Prerequisites

Vercel CLI

Limitations

  • Cron jobs limited to UTC
  • API rate limits apply

How it compares

It provides a command-line interface for lifecycle management instead of relying solely on the web dashboard.

Compared to similar skills

vercel-cli-management side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
vercel-cli-management (this skill)08moReviewBeginner
vercel-deployment36moNo flagsIntermediate
vercel-deploy45moReviewBeginner
vercel-multi-env-setup127dCautionIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

More by CaptainCrouton89

View all by CaptainCrouton89

reviewing-code

CaptainCrouton89

Systematically evaluate code changes for security, correctness, performance, and spec alignment. Use when reviewing PRs, assessing code quality, or verifying implementation against requirements.

21105

railway-cli-management

CaptainCrouton89

Deploy, manage services, view logs, and configure Railway infrastructure. Use when deploying to Railway, managing environment variables, viewing deployment logs, scaling services, or managing volumes.

9139

writing-like-user

CaptainCrouton89

Emulate the user's personal writing voice and style patterns. Use when the user asks to write content in their voice, draft documents, compose messages, or requests "write this like me" or "in my style."

687

gathering-requirements

CaptainCrouton89

Systematically clarify user needs, preferences, and constraints before planning or implementation. Classifies work type, investigates existing systems, discovers edge cases and integration points, resolves assumptions, and creates detailed specifications. Use when building features, enhancements, or integrations where requirements need clarification.

31

auditing-security

CaptainCrouton89

Identify and remediate vulnerabilities through systematic code analysis. Use when performing security assessments, pre-deployment reviews, compliance validation (OWASP, PCI-DSS, GDPR), investigating known vulnerabilities, or post-incident analysis.

10

documenting-code

CaptainCrouton89

Maintain project documentation synchronized with code. Keep feature specs, API contracts, and README current with init-project standards. Use when updating docs after code changes, adding new features, or ensuring documentation completeness.

14

You might also like

vercel-deployment

davila7

Expert knowledge for deploying to Vercel with Next.js Use when: vercel, deploy, deployment, hosting, production.

359

vercel-deploy

openai

Deploy applications and websites to Vercel. Use when the user requests deployment actions like "deploy my app", "deploy and give me the link", "push this live", or "create a preview deployment".

422

vercel-multi-env-setup

jeremylongshore

Configure Vercel across development, staging, and production environments. Use when setting up multi-environment deployments, configuring per-environment secrets, or implementing environment-specific Vercel configurations. Trigger with phrases like "vercel environments", "vercel staging", "vercel dev prod", "vercel environment setup", "vercel config by env".

13

vercel-deploy-preview

jeremylongshore

Execute Vercel primary workflow: Deploy Preview. Use when Deploying a preview for a pull request, Testing changes before production, or Sharing preview URLs with stakeholders. Trigger with phrases like "vercel deploy preview", "create preview deployment with vercel".

12

nexus-deployments

MAX-786

Deployment protocols for Vercel (Next.js Web App), Chrome Web Store packaging (Plasmo Extension), and Supabase production migrations. Use this when setting up CI/CD, preparing a release, or configuring deployment environment variables.

00

workflow

vercel

Creates durable, resumable workflows using Vercel's Workflow DevKit. Use when building workflows that need to survive restarts, pause for external events, retry on failure, or coordinate multi-step operations over time. Triggers on mentions of "workflow", "durable functions", "resumable", "workflow devkit", or step-based orchestration.

431

Search skills

Search the agent skills registry