deploy-to-vercel

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

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

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: checking git remotes, verifying CLI authentication, linking projects to teams, and handling sandboxed environments where login is impossible. This Skill automates that decision flow and always returns a working deployment URL. ## Core Features & Use Cases - State-aware deployment routing: Detects git remotes, existing .vercel/ project links, and CLI authentication to choose between git push, vercel deploy, or linking first. - Team and scope handling: Lists available Vercel teams and passes the selected --scope to all CLI commands for correct account targeting. - No-auth fallback scripts: Ships bash scripts that package a project (auto-detecting frameworks like Next.js, Astro, or Express from package.json), upload it to a claimable deploy endpoint, and poll until the build completes. - Use Case: You finish a Next.js app in a sandboxed environment with no Vercel credentials. The Skill packages the directory, deploys it, 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 get a deployment URL immediately without blocking on the build. 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 included deploy.sh or deploy-codex.sh fallback script, which packages your project and uploads it to a claimable deploy endpoint. It returns a preview URL for the live site and a claim URL to transfer the deployment to your Vercel account.

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 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 detect over 40 frameworks from package.json dependencies, including Astro, Nuxt, SvelteKit, Remix, Express, Fastify, and Hono. Static HTML projects without package.json are also supported, with a single HTML file renamed to index.html.

Why does Vercel deployment fail in a sandboxed environment?▼

Sandboxes often block network egress or prevent vercel login from completing. On claude.ai, add *.vercel.com to allowed domains in capability settings; in Codex, rerun the deploy command with escalated network permissions.