vercel-cli

Deploy, manage, and develop projects on Vercel from the command line.

Updated Sep 10, 2026
One-click install
npx skills add https://github.com/sharad07072007/paras --skill vercel-cli-sharad07072007
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vercel-cli
Source: https://github.com/sharad07072007/paras/tree/main/.agents/plugins/vercel/skills/vercel-cli/upstream
Command: npx skills add https://github.com/sharad07072007/paras --skill vercel-cli-sharad07072007

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires vercel, and includes references (resource) components.

What problem does it solve? Managing Vercel deployments, environment variables, domains, and integrations from the command line involves many commands, flags, and linking conventions that are easy to get wrong, especially in monorepos and CI pipelines. ## Core Features & Use Cases - Deployment Workflows: Run preview and production deployments, prebuilt builds, blue/green releases, rolling releases, and rollbacks. - Project & Environment Management: Link projects or monorepos, pull environment variables, manage teams, domains, DNS, and blob storage. - Integrations & Debugging: Provision Marketplace integrations with automatic env var injection, stream logs, query metrics, and access protected preview deployments with vercel curl. - Use Case: In a CI pipeline, run vercel pull, vercel build --prod, and vercel deploy --prebuilt --prod with VERCEL_TOKEN to ship deterministic production builds without interactive prompts. ## Quick Start Ask the assistant to deploy your project to Vercel production and it will link the project, pull environment variables, and run the deployment.

Frequently Asked Questions about vercel-cli

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a project to Vercel from the command line?

Run vercel for a preview deployment or vercel --prod for production after linking the project with vercel link. For deterministic builds, run vercel build --prod followed by vercel deploy --prebuilt --prod.

How do I set up Vercel CLI in a CI/CD pipeline?

Authenticate with the VERCEL_TOKEN environment variable and always pass --yes to skip prompts. The standard pattern is vercel pull --yes --environment=production, then vercel build --prod, then vercel deploy --prebuilt --prod.

What is the difference between vercel link and vercel link --repo?

vercel link creates .vercel/project.json which tracks a single project, while vercel link --repo creates .vercel/repo.json mapping multiple directories to projects. Use --repo for monorepos or any project with a non-root directory.

How do I access a password-protected Vercel preview deployment?

Use vercel curl with the --deployment flag, which handles deployment protection automatically. Do not disable deployment protection; vercel curl manages the bypass for you.

Why does my Vercel monorepo deployment fail or prompt for a project?

The most common cause is wrong linking: project.json only tracks one project, so monorepos need vercel link --repo. Also verify you are on the correct team with vercel whoami before linking.

Can I run Node.js backends like Express or Hono on Vercel?

Yes, Vercel detects the framework from package.json dependencies and introspects routes automatically. Export your app as default from an entrypoint like server.ts; no rewrites or build scripts are needed.