deploy-to-vercel

Deploy projects to Vercel using CLI, git push, or no-auth fallback scripts.

Updated Sep 3, 2026
One-click install
npx skills add https://github.com/xzedm/clipplic-landing --skill deploy-to-vercel-xzedm
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: deploy-to-vercel
Source: https://github.com/xzedm/clipplic-landing/tree/main/.agents/skills/deploy-to-vercel
Command: npx skills add https://github.com/xzedm/clipplic-landing --skill deploy-to-vercel-xzedm

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Getting a local project live on Vercel involves many decisions: is the project linked, is the CLI authenticated, is there a git remote, which team should own the deployment. This Skill automates that decision flow and executes the correct deployment path, always defaulting to preview deployments unless production is explicitly requested. ## Core Features & Use Cases - State-aware deployment routing: Checks git remotes, .vercel/project.json or .vercel/repo.json linkage, and CLI authentication before choosing between git push, vercel deploy, or linking first. - Team and scope handling: Lists available Vercel teams and passes the selected team slug via --scope on all CLI commands. - No-auth fallback scripts: Deploys without authentication in sandboxed environments (claude.ai, Codex) using bundled deploy scripts that return a preview URL and a claim URL. - Use Case: You finish a React + Vite app and say "deploy my app and give me the link". The Skill detects the project is unlinked, authenticates the CLI, links the project to your team, deploys a preview, and returns the live URL. ## Quick Start Ask the agent to deploy this project to Vercel and give you the preview link.

Frequently Asked Questions about deploy-to-vercel

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

FAQPage Schema
How do I deploy my app to Vercel from the command line?▼

Run vercel deploy with the -y and --no-wait flags to deploy the current directory without blocking on the build. If the project is not linked yet, run vercel link first, then deploy and use vercel inspect to check build status.

How do I deploy to Vercel without logging in?▼

Use the no-auth fallback deploy script bundled with the Skill, which packages the project, uploads it, and waits for the build. It returns a preview URL for the live site and a claim URL to transfer the deployment to your Vercel account.

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

vercel link --repo reads the git remote URL and matches it to existing Vercel projects deploying from that repo, creating .vercel/repo.json. Plain vercel link matches by directory name, which often fails when local and project names differ.

Does Vercel deploy to production automatically on git push?▼

Pushes to the production branch, usually main, trigger production deployments, while other branches get preview deployments. This Skill always deploys as preview unless the user explicitly requests production with the --prod flag.

Why does Vercel deployment fail in a sandboxed environment?▼

Sandboxed environments like claude.ai or Codex may block network access or lack CLI credentials. Add *.vercel.com to allowed domains, rerun with escalated network permissions, or fall back to the no-auth deploy script.