vercel-deploy

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

Updated Sep 15, 2026
One-click install
npx skills add https://github.com/Peterson-Benhame/agent-skills --skill vercel-deploy-peterson-benhame
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vercel-deploy
Source: https://github.com/Peterson-Benhame/agent-skills/tree/main/packages/skills-catalog/skills/%28cloud%29/vercel-deploy
Command: npx skills add https://github.com/Peterson-Benhame/agent-skills --skill vercel-deploy-peterson-benhame

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Deploying a project to Vercel normally requires CLI authentication and manual configuration, which blocks quick deployments in sandboxed or unauthenticated environments. This Skill deploys any project to Vercel and returns a live preview URL plus a claim URL for managing the deployment. ## Core Features & Use Cases - CLI Deployment: Runs vercel deploy with sensible defaults, always creating preview deployments unless production is explicitly requested. - Auth-Free Fallback: Uses a bundled deploy script that packages the project, detects the framework (Next.js, Astro, Nuxt, SvelteKit, and 40+ others), and deploys via a claimable endpoint without credentials. - Build Monitoring: Polls the deployment until the build completes and returns JSON with previewUrl and claimUrl. - Use Case: You have a static HTML site or a Next.js app in your workspace. Ask the agent to deploy it, and receive a live preview link plus a claim link to transfer the deployment to your Vercel account. ## Quick Start Ask the agent to deploy the current project to Vercel and give you 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 without logging in?

Run the bundled deploy.sh script with your project path. It packages the directory, detects the framework from package.json, and deploys through a claimable endpoint, returning a previewUrl and claimUrl without requiring Vercel credentials.

How to create a preview deployment on Vercel?

Run `vercel deploy [path] -y` with a 10 minute timeout. This skill always creates preview deployments by default; production deployments with `--prod` only happen when the user explicitly requests them.

Which frameworks does the Vercel deploy script detect?

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

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

Sandboxed environments may block outbound network calls, causing timeouts or DNS errors during deployment. Rerun the deploy command with escalated permissions using sandbox_permissions=require_escalated to allow the network access.

What is a Vercel claim URL and how do I use it?

A claim URL is returned alongside the preview URL for deployments made without authentication. Visiting the claim URL lets you transfer the deployment to your own Vercel account so you can manage, configure, or redeploy it.