vercel-deploy

Deploys project directories to Vercel and returns preview and claim URLs.

2|1|Updated Jan 29, 2026
One-click install
npx skills add https://github.com/bhaktofmahakal/ai-counsellor-hf --skill vercel-deploy-bhaktofmahakal
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: vercel-deploy
Source: https://github.com/bhaktofmahakal/ai-counsellor-hf/tree/main/.claude/skills/vercel-deploy
Command: npx skills add https://github.com/bhaktofmahakal/ai-counsellor-hf --skill vercel-deploy-bhaktofmahakal

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Getting a local project live on the web usually requires configuring hosting, setting up a Vercel account, and wiring CI/CD. This Skill deploys any project directory to Vercel in one step, with no authentication required, and returns a live preview URL plus a claim link to transfer ownership. ## Core Features & Use Cases - One-Command Deployment: Packages a project directory into a tarball (excluding node_modules and .git) and uploads it to Vercel's claimable deploy endpoint. - Automatic Framework Detection: Inspects package.json to detect Next.js, Nuxt, SvelteKit, Astro, Express, Vite, and dozens of other frameworks so builds are configured correctly. - Static HTML Handling: Renames a lone HTML file to index.html so static sites serve correctly at the root path. - Use Case: You just finished a Next.js prototype and want to share it with a teammate. Run the deploy script on the project folder and immediately send them the live preview URL. ## Quick Start Ask the assistant to deploy the current project directory to Vercel and show you the preview and claim URLs.

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 an account?▼

Run the deploy.sh script with your project path, for example bash scripts/deploy.sh /path/to/project. It uploads a tarball to Vercel's claimable deploy endpoint and returns a preview URL plus a claim URL to transfer the deployment to your account later.

How to deploy a static HTML site to Vercel?▼

Point the deploy script at the folder containing your HTML file. If the folder 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 Vercel deployment auto-detect?▼

The script reads package.json and detects Next.js, Gatsby, Remix, Nuxt, SvelteKit, Astro, Angular, Vue, Express, Fastify, Hono, NestJS, Vite, and many others. Projects without a package.json are treated as static sites with framework set to null.

Why does Vercel deployment fail with a network error?▼

Deployment fails when the environment blocks outbound requests to vercel.com, which is common on claude.ai. Add *.vercel.com to the allowed domains in the capabilities settings, then retry the deployment.

Can I deploy a pre-packaged tarball instead of a directory?▼

Yes, pass a .tgz file as the argument instead of a directory. The script uploads it directly without repackaging, though framework auto-detection is skipped and the framework is sent as null.