deploy-to-vercel

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

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Getting a local project live on Vercel involves many decisions: whether the project is linked, whether the CLI is authenticated, which team to deploy to, and what to do in sandboxed environments without credentials. This Skill automates that decision flow and executes the right deployment path. ## 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 applies the selected team slug via --scope on all CLI commands. - No-auth fallback scripts: Ships deploy.sh and deploy-codex.sh that package a project (excluding node_modules, .git, .env), auto-detect the framework from package.json, upload it to a claimable deploy endpoint, and return preview and claim URLs. - Use Case: You finish a Next.js app in a sandboxed environment with no Vercel credentials. The Skill runs the fallback script, waits for the build, and returns a live preview URL plus a claim URL to transfer the deployment to your account. ## 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 [path] -y --no-wait` with the Vercel CLI to create a preview deployment, then check status with `vercel inspect <url>`. If the project is linked to git, committing and pushing also triggers an automatic deployment.

How do I deploy to Vercel without logging in?▼

Use the claimable deploy script, which packages the project, detects the framework from package.json, and uploads it to a deploy endpoint. It returns a preview URL for the live site and a claim URL to transfer the deployment to your Vercel account.

Does Vercel deployment work in sandboxed environments like claude.ai or Codex?▼

Yes, via fallback scripts that require no authentication. In Codex, check for the CLI first with `command -v vercel`; if unavailable or unauthenticated, run the deploy script, escalating network permissions only for the actual deploy command.

How do I deploy to a specific Vercel team?▼

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

Why does my Vercel deployment fail with network errors in a sandbox?▼

Sandboxes often block outbound network access. On claude.ai, add *.vercel.com to allowed domains in capability settings. In Codex, rerun the deploy command with escalated permissions (`sandbox_permissions=require_escalated`).