deploy-to-vercel

Deploy projects to Vercel via git push, CLI, or claimable no-auth endpoints.

Updated Jun 5, 2026
One-click install
npx skills add https://github.com/syarifryan/porto-new --skill deploy-to-vercel-syarifryan
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy-to-vercel
Source: https://github.com/syarifryan/porto-new/tree/main/server/.augment/skills/deploy-to-vercel
Command: npx skills add https://github.com/syarifryan/porto-new --skill deploy-to-vercel-syarifryan

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Getting a local project live on Vercel involves many branching paths: whether the project is linked, whether a git remote exists, and whether the Vercel CLI is authenticated. This Skill automates that decision flow and executes the correct deployment method, always defaulting to preview deployments. ## Core Features & Use Cases - State Detection: Checks git remotes, .vercel/project.json or .vercel/repo.json linkage, CLI authentication, and available teams before choosing a deploy method. - Multiple Deploy Paths: Supports git-push deployments for linked repos, direct vercel deploy CLI uploads, and no-auth fallback scripts that return preview and claim URLs. - Framework Auto-Detection: The bundled shell scripts detect frameworks like Next.js, Vite, Astro, and Express from package.json and package projects excluding node_modules, .git, and .env files. - Use Case: You finish a React portfolio site and say "deploy my app" — the Skill detects there is no Vercel link, authenticates the CLI, links the project to your team, and returns a live preview URL. ## Quick Start Deploy my 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 after authenticating with vercel login. If the project is linked to a git remote, committing and pushing triggers an automatic Vercel build instead.

How do I deploy to Vercel without logging in?

Use the bundled deploy.sh or deploy-codex.sh fallback scripts, which upload a packaged tarball to a claimable deploy endpoint. They return a preview URL for the live site and a claim URL to transfer the deployment to your Vercel account.

Does Vercel deployment support monorepos and multiple teams?

Yes. The Skill lists available team slugs via vercel teams list and passes the selected team with the --scope flag. Repo-based linking with vercel link --repo maps directories to Vercel projects through .vercel/repo.json.

Why does my Vercel deployment fail in a sandboxed environment?

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

Should I deploy to Vercel production or preview first?

Always deploy as a preview first unless production is explicitly requested. Preview deployments let you verify the build at a temporary URL, and only the production branch push or the --prod flag creates a production deployment.