vercel-deploy

Package projects into tarballs and deploy them to Vercel, returning preview and claim URLs.

1|Updated Feb 2, 2026
One-click install
npx skills add https://github.com/KARENLHAO/skills --skill vercel-deploy-karenlhao
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vercel-deploy
Source: https://github.com/KARENLHAO/skills/tree/main/vercel-deploy
Command: npx skills add https://github.com/KARENLHAO/skills --skill vercel-deploy-karenlhao

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires curl, tar, mktemp, grep, cut, and includes scripts (resource) components.

What problem does it solve?

Deploy applications and websites to Vercel instantly, packaging your project, auto-detecting the framework, and returning a live Preview URL and a transferable Claim URL.

Core Features & Use Cases

  • Packaging of the project into a tarball while excluding node_modules and .git
  • Auto-detection of framework from package.json to simplify deployment
  • Upload to Vercel deployment service and return a live Preview URL and a claim link
  • Optional JSON output with previewUrl, claimUrl, deploymentId, and projectId for programmatic use
  • Use cases include deploying current project, specific path, or an existing tarball to generate a preview link

Quick Start

Run bash /mnt/skills/user/vercel-deploy/scripts/deploy.sh [path] to deploy a project and receive a Preview URL and a Claim 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 Next.js or Vue project to Vercel for a preview?

Deploy to Vercel by packaging the project into a tarball, auto-detecting the framework from package.json, and uploading it to receive a live Preview URL and Claim URL.

Does Vercel deployment support static HTML sites and Svelte apps?

Vercel deployment supports static HTML sites and Svelte apps alongside Next.js, Gatsby, React, and Vue projects by detecting the framework from package.json and returning preview links.

Can I get a JSON payload with the Vercel preview URL for programmatic use?

You can get a JSON payload for programmatic use that includes previewUrl, claimUrl, deploymentId, and projectId fields after the Vercel deployment upload completes.

What is the best way to deploy an existing tarball to Vercel?

Deploy an existing tarball to Vercel by running the deployment script with the tarball path, which uploads the packaged project and returns both a live Preview URL and a transferable Claim URL.

Do I need curl and tar to deploy apps to Vercel?

You need curl and tar along with mktemp, grep, and cut to deploy apps to Vercel, as these dependencies handle packaging the project tarball and uploading it to the deployment service.