deploy-to-vercel

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

Updated Sep 7, 2026
One-click install
npx skills add https://github.com/raphaelmans/spectralpointengineering --skill deploy-to-vercel-raphaelmans
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy-to-vercel
Source: https://github.com/raphaelmans/spectralpointengineering/tree/main/.skillshare/skills/deploy-to-vercel
Command: npx skills add https://github.com/raphaelmans/spectralpointengineering --skill deploy-to-vercel-raphaelmans

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Deploying a project to Vercel involves many possible states — linked or unlinked projects, authenticated or missing CLI credentials, git remotes or none — and choosing the wrong path leads to failed or interactive-blocking commands. This Skill inspects the project state and picks the correct deployment method automatically. ## 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: Ships deploy.sh and deploy-codex.sh that package a project (excluding node_modules, .git, .env), auto-detect the framework from package.json, upload to a claimable deploy endpoint, and return preview and claim URLs. - Use Case: You have 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 with the -y and --no-wait flags to get a preview URL immediately without blocking on the build. If the project is linked to a git remote, committing and pushing also triggers an automatic Vercel deployment.

How do I deploy to Vercel without logging in?

Use the claimable deploy script, which packages the project, uploads it to a deploy endpoint, and returns a preview URL plus a claim URL. Visiting the claim URL transfers the deployment to your Vercel account without prior authentication.

How do I deploy to a specific Vercel team?

List 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. Already-linked projects use the orgId stored in .vercel/project.json or .vercel/repo.json.

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

Yes, the script detects frameworks from package.json dependencies, including Next.js, Astro, Remix, SvelteKit, Nuxt, Gatsby, 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?

Sandboxes often block network egress or lack CLI credentials, causing timeouts or auth errors. Allowlist *.vercel.com in the environment settings or rerun the deploy command with escalated network permissions.