vercel-deploy

Deploy projects to Vercel by packaging and uploading a tarball.

166|116|Updated Jan 19, 2026
One-click install
npx skills add https://github.com/Kilo-Org/kilo-marketplace --skill vercel-deploy-kilo-org
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vercel-deploy
Source: https://github.com/Kilo-Org/kilo-marketplace/tree/main/skills/vercel-deploy
Command: npx skills add https://github.com/Kilo-Org/kilo-marketplace --skill vercel-deploy-kilo-org

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires bash, curl, tar, grep, mktemp, cut, basename, pwd, cat, echo, and includes scripts (resource) components.

What problem does it solve?

Automating the deployment of projects to Vercel, removing manual packaging and upload steps and returning a live Preview URL and a transferable Claim URL.

Core Features & Use Cases

  • Automated packaging of projects into a deployment-ready tarball (excluding node_modules and .git)
  • Automatic framework detection from package.json to select appropriate deployment flow
  • Returns both a Preview URL and a Claim URL for easy handoff or transfer in CI/CD workflows

Quick Start

Run the deployment script with your project path to deploy to Vercel.

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 from the command line?

To deploy a project to Vercel, you run a deployment script that automatically packages your directory into a tarball, detects the web framework, and returns a live Preview URL and a claimable deployment link.

Can I deploy a static site to Vercel without a package.json?

Yes, you can deploy static sites and frontend apps to Vercel without a package.json. The deployment script automatically handles framework detection from existing dependencies to select the appropriate flow.

How does automatic framework detection work for Vercel deployments?

Automatic framework detection works by analyzing your project's package.json dependencies during the tarball packaging step. This allows the script to select the correct Vercel deployment flow without manual configuration.

What is excluded from the tarball when automating Vercel web deployment?

When automating Vercel web deployment, the packaging script automatically excludes the node_modules and .git directories from the uploaded tarball to reduce file size and speed up the transfer.

Does Vercel deployment automation require network access to upload the tarball?

Yes, Vercel deployment automation requires network access to reach the deployment endpoint. The script relies on curl to upload the packaged tarball and retrieve the live Preview URL and Claim URL.

What's the best way to automate Vercel deployments in CI/CD workflows?

The best way to automate Vercel deployments in CI/CD is using a script that packages the project into a tarball and returns a transferable Claim URL, enabling seamless deployment handoff between pipeline stages.