setup

Automate Vercel CLI installation, authentication, project linking, and environment variable management.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/Folly-Partners/claudesync --skill setup-folly-partners
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: setup
Source: https://github.com/Folly-Partners/claudesync/tree/main/plugins/cache/claude-plugins-official/vercel/1.0.0/skills/setup
Command: npx skills add https://github.com/Folly-Partners/claudesync --skill setup-folly-partners

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill streamlines installing the Vercel CLI, authenticating your account, and linking projects so you can reproduce deployments across machines without manual steps.

Core Features & Use Cases

  • Install the Vercel CLI globally.
  • Authenticate via vercel login and link a project with vercel link.
  • Manage environments with vercel env ls and vercel env add, and verify configuration files like vercel.json and .vercelignore.

Quick Start

Run the following commands to set up your Vercel environment across machines: npm install -g vercel vercel login vercel link vercel env ls vercel env add <NAME> Check for vercel.json and .vercelignore in your project directory.

Frequently Asked Questions about setup

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

FAQPage Schema
How do I set up the Vercel CLI and authenticate my account?

Install the Vercel CLI globally with npm install -g vercel, then run vercel login to authenticate. This establishes your credentials so you can deploy and manage projects from the command line across machines.

What's the process for linking a project to Vercel?

Run vercel link in your project directory to connect it to a Vercel project. This creates or updates vercel.json with project metadata, enabling consistent deployments and environment management across your team.

How do I manage environment variables with the Vercel CLI?

Use vercel env ls to list existing variables and vercel env add <NAME> to create new ones. This lets you configure sensitive data and settings per environment without storing them in version control.

Do I need special configuration files for Vercel deployments?

Vercel uses vercel.json for build and deployment settings and .vercelignore to exclude files from deployment. These files are optional but recommended for reproducible builds and controlling what gets deployed.

Can I automate Vercel CLI setup across multiple machines or CI workflows?

Yes. Install vercel globally, authenticate once, link your project, and commit vercel.json to version control. This lets you run vercel deploy in CI pipelines and development environments with identical configuration.