vercel-deploy

Deploy projects to Vercel and return preview and claim URLs.

Updated Feb 4, 2026
One-click install
npx skills add https://github.com/pchemguy/AISandbox --skill vercel-deploy-pchemguy
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: vercel-deploy
Source: https://github.com/pchemguy/AISandbox/tree/main/docs/AgentSkills/openai/skills/skills/.curated/vercel-deploy
Command: npx skills add https://github.com/pchemguy/AISandbox --skill vercel-deploy-pchemguy

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Publishing a web project to a live URL normally requires a Vercel account, CLI authentication, and manual configuration. This Skill packages any project directory and deploys it to Vercel through a claimable-preview flow, returning a live preview URL without requiring authentication. ## Core Features & Use Cases - One-command deployment: Run bash scripts/deploy.sh [path] on a directory or .tgz file to package and upload the project. - Automatic framework detection: Detects over 30 frameworks from package.json, including Next.js, Nuxt, SvelteKit, Astro, Express, and Vite. - Claimable preview URLs: Returns a live Preview URL plus a Claim URL to transfer the deployment to your own Vercel account. - Use Case: You just built a static HTML landing page and want to share it with a client. Run the deploy script on the folder, and within minutes you have a live *.vercel.app URL to send them. ## Quick Start Ask the assistant to deploy the current project to Vercel and share the preview URL.

Frequently Asked Questions about vercel-deploy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a project to Vercel without an account?▼

Run `bash scripts/deploy.sh [path]` on your project directory. The script packages the files, uploads them to a claimable deploy endpoint, and returns a live Preview URL plus a Claim URL you can use later to transfer the deployment to a Vercel account.

How to deploy a static HTML site to Vercel?▼

Pass the folder containing your HTML file to the deploy script. If the project has no package.json and contains a single HTML file not named index.html, the script renames it to index.html so it serves at the root URL.

Which frameworks does the Vercel deploy script detect?▼

The script reads package.json and detects over 30 frameworks, including Next.js, Gatsby, Remix, Nuxt, SvelteKit, Astro, Angular, Vite, Express, Fastify, Hono, and NestJS. Projects without a package.json are deployed with framework set to null.

Why does the Vercel deployment fail with network errors?▼

Sandboxed environments may block the outbound requests the deploy script needs. Rerun the deployment with escalated permissions using sandbox_permissions=require_escalated so the upload to the deploy endpoint can complete.

What files are excluded when packaging a project for deployment?▼

The packaging step excludes node_modules, .git, and .env files from the tarball. This keeps the upload small and prevents environment variable files from being sent to the deployment service.