vercel-deploy

Deploy applications and websites to Vercel with preview URLs and claim links.

Updated Aug 22, 2026
One-click install
npx skills add https://github.com/mewishu/awesome-skills --skill vercel-deploy-mewishu
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vercel-deploy
Source: https://github.com/mewishu/awesome-skills/tree/main/skills/pattern/linear-flow/vercel-deploy
Command: npx skills add https://github.com/mewishu/awesome-skills --skill vercel-deploy-mewishu

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Getting a project live on the web usually requires configuring hosting, authentication, and build pipelines. This Skill deploys any project to Vercel and returns a shareable preview URL, with a no-auth fallback path when the Vercel CLI is unavailable or unauthenticated. ## Core Features & Use Cases - CLI-Based Deployment: Uses the Vercel CLI to create preview deployments by default, with production deploys only on explicit request. - No-Auth Fallback Script: A bundled deploy script packages the project, detects the framework from package.json, and deploys through a claimable endpoint returning previewUrl and claimUrl. - Framework Detection: Automatically identifies over 40 frameworks including Next.js, Astro, SvelteKit, Nuxt, Express, and Vite for correct build configuration. - Use Case: You finish a static HTML landing page and want a live link to share with a client. The Skill packages the directory, deploys it, waits for the build to finish, and hands you the preview and claim URLs. ## Quick Start Deploy this project to Vercel and give me the preview link.

Frequently Asked Questions about vercel-deploy

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 with the Vercel CLI installed to create a preview deployment. Use a 10 minute timeout since builds can take a while, and add --prod only when you explicitly want a production deployment.

How can I deploy to Vercel without an account or CLI credentials?

Use the fallback deploy script, which packages your project into a tarball and posts it to a claimable deploy endpoint. It returns a previewUrl for the live site and a claimUrl you can use to take ownership of the deployment later.

Which frameworks does the Vercel deploy script detect?

The script detects over 40 frameworks from package.json dependencies, including Next.js, Remix, Astro, SvelteKit, Nuxt, Gatsby, Angular, Express, Fastify, Hono, and Vite. Static HTML projects without package.json are also supported.

Why does my Vercel deployment fail with network errors?

Sandboxed environments can block outbound requests, causing timeouts, DNS errors, or connection resets during deploy. Rerun the deploy command with escalated permissions, but keep the CLI installation check unescalated.

What files are excluded when the deploy script packages a project?

The script excludes node_modules, .git, and .env files when creating the deployment tarball. Files are staged in a temporary directory so the source tree is never modified during packaging.