vercel-deploy

Deploy projects to Vercel and return Preview and Claim URLs.

Updated Jan 31, 2026
One-click install
npx skills add https://github.com/SChannarong/... --skill vercel-deploy-schannarong
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vercel-deploy
Source: https://github.com/SChannarong/.../tree/main/.github/skills/vercel-deploy
Command: npx skills add https://github.com/SChannarong/... --skill vercel-deploy-schannarong

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

This Skill automates deploying applications and websites to Vercel and provides a claimable preview flow, eliminating the manual steps and guesswork involved in getting a live preview.

Core Features & Use Cases

  • Automatic packaging of projects into a tar.gz, excluding node_modules, .git, and environment files.
  • Framework detection from package.json to determine deployment context or null for static projects.
  • Upload to a deployment service and return a live Preview URL and a transferable Claim URL for easy handoff.

Quick Start

bash scripts/deploy.sh [path]

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?

You can deploy to Vercel by running a bash script that packages your project directory into a tarball, uploads it to the deployment endpoint, and returns a live Preview URL along with a Claim URL.

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

Yes, you can deploy static sites without a package.json. The deployment script auto-detects the framework from package.json and defaults to null for static projects.

Do I need curl and tar to automate Vercel deployments?

Yes, curl and tar are required dependencies. The automation script uses tar to package the project directory and curl to upload the tarball to the Vercel deployment service.

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

When packaging a project for Vercel deployment, the script automatically excludes node_modules, .git, and environment files from the generated tar.gz archive.

What is a Claim URL and how does it work with Vercel previews?

A Claim URL is a transferable link returned alongside the Preview URL after deployment, allowing you to easily transfer and claim the live preview within a Vercel account.

What's the best way to share a live preview of my app without manual Vercel setup?

The best way to share a live preview is using an automated bash script that packages your app, deploys it to Vercel, and returns a Preview URL and Claim URL for immediate handoff.