deploy-to-vercel

Deploy projects to Vercel via CLI, git push, or claimable deploy scripts.

Updated Apr 16, 2026
One-click install
npx skills add https://github.com/quangtuyennguyen/loan-application-workflow --skill deploy-to-vercel-quangtuyennguyen
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: deploy-to-vercel
Source: https://github.com/quangtuyennguyen/loan-application-workflow/tree/main/.claude/skills/deploy-to-vercel
Command: npx skills add https://github.com/quangtuyennguyen/loan-application-workflow --skill deploy-to-vercel-quangtuyennguyen

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Getting a local project live on Vercel involves several decisions: whether the project is linked, whether the CLI is authenticated, and whether a git remote exists. This Skill automates that decision flow and executes the right deployment path, returning a live preview URL. ## Core Features & Use Cases - State-aware deployment: Detects git remotes, Vercel project linking (.vercel/project.json or .vercel/repo.json), 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: Ships bash scripts that package a project (excluding node_modules, .git, .env), auto-detect the framework from package.json, and deploy through a claimable endpoint returning preview and claim URLs. - Use Case: You finish a Next.js app in a sandboxed environment without Vercel credentials. The Skill packages the directory, deploys it, waits for the build, and returns a preview URL plus a claim URL to transfer ownership. ## Quick Start Deploy my current project to Vercel and give me 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 linked to a git remote, committing and pushing triggers an automatic Vercel deployment instead.

How do I deploy to Vercel without logging in?▼

Use the included deploy.sh or deploy-codex.sh fallback scripts, which require no authentication. They package your project, upload it to a claimable deploy endpoint, and return a preview URL plus a claim URL to transfer the deployment to your Vercel account.

How do I deploy to a specific Vercel team?▼

List available teams with vercel teams list --format json, then pass the chosen team slug via the --scope flag on vercel deploy, vercel link, and vercel inspect commands. Already-linked projects use the orgId stored in .vercel/project.json or .vercel/repo.json.

Does the Vercel deploy script support frameworks other than Next.js?▼

Yes, the fallback scripts auto-detect frameworks from package.json dependencies, including Next.js, Remix, Astro, SvelteKit, Nuxt, Angular, Express, Fastify, Hono, and many others. Static HTML projects without package.json are also supported.

Why does Vercel deployment fail in a sandboxed environment?▼

Sandboxed environments may block network access or prevent vercel login. Add *.vercel.com to allowed domains, rerun the deploy command with escalated network permissions, or fall back to the no-auth deploy scripts.