Skip to content
Getting Started

Getting started with Vercel

Last updated September 24, 2025

Deploy your app on Vercel in three steps: install the CLI, add agent support if you use an AI coding agent, and deploy.

AI Assistance

Help me get set up with Vercel. Based on my project, do the following: 1. Install the Vercel CLI globally (npm i -g vercel), log in with `vercel login`, and deploy my project with `vercel`. 2. If I'm using Claude Code or Cursor, install the Vercel Plugin with `npx plugins add vercel/vercel-plugin`. If I'm using another AI coding agent (Cline, Windsurf, GitHub Copilot, etc.), install Vercel Skills instead with `npx skills add vercel-labs/agent-skills`. 3. After deploying, suggest relevant next steps based on my project, such as adding a custom domain, setting up environment variables, or configuring Vercel Functions.

Every Vercel workflow starts with the CLI. Install it whether or not you use an AI coding agent. Agents that can run terminal commands use the CLI to deploy, pull environment variables, and manage projects.

  1. Terminal
    pnpm i -g vercel
  2. vercel login

    Follow the prompts to authenticate with your Vercel account.

  3. Navigate to your project directory and run:

    vercel

    The CLI detects your framework, builds your project, and deploys it. To deploy to production:

    vercel --prod

See the CLI documentation for the full command reference.

If you use Claude Code or Cursor, install the Vercel Plugin. It gives your agent deployment skills, framework best practices, and slash commands like /vercel-plugin:deploy prod and /vercel-plugin:env.

npx plugins add vercel/vercel-plugin

The plugin activates automatically. No configuration needed.

See the Vercel Plugin documentation for the full list of skills, specialist agents, and slash commands.

If you use Cline, Windsurf, GitHub Copilot, or any of the 18+ agents supported by Skills.sh, install Vercel Skills instead. Skills give your agent the same deployment and framework expertise in a format compatible with your tool.

npx skills add vercel-labs/agent-skills

To install a specific skill:

npx skills add vercel-labs/agent-skills --skill vercel-react-best-practices

See Agent Skills for the full list.

You can also deploy without the CLI. Go to the New Project page, connect your GitHub, GitLab, or Bitbucket account, select a repo, and click Deploy. Every push to your connected branch triggers a new deployment automatically.


Was this helpful?

supported.