vercel-deploy

Package and deploy projects to Vercel with Preview and Claim URLs.

1|Updated Apr 6, 2026
One-click install
npx skills add https://github.com/pkoka888/server-infra-templates --skill vercel-deploy-pkoka888
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vercel-deploy
Source: https://github.com/pkoka888/server-infra-templates/tree/main/.kilo/skills/marketplace/vercel-deploy
Command: npx skills add https://github.com/pkoka888/server-infra-templates --skill vercel-deploy-pkoka888

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

Automates deploying applications to Vercel by packaging the project and uploading it to a deployment endpoint, delivering a live Preview URL and a transferable Claim URL for handoffs.

Core Features & Use Cases

  • Automated packaging and deployment to Vercel with framework detection.
  • Returns a live Preview URL and a Claim URL for handoffs or transfers.
  • Works with a local directory or a tarball, excluding node_modules and .git.

Quick Start

Run the deployment script with your project path, for example bash /mnt/skills/user/vercel-deploy/scripts/deploy.sh /path/to/project

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 local project to Vercel and get a preview URL?

To deploy to Vercel, run the deployment script with your project path. The script packages the directory, auto-detects the framework, and returns a live Preview URL for immediate access.

Can I deploy a tarball to Vercel instead of a local directory?

Yes, Vercel deployment supports both local directories and tarballs as input. The script processes the provided tarball, excludes unnecessary files, and generates a live Preview URL.

How do I transfer a Vercel deployment to another account?

Vercel deployment generates a transferable Claim URL alongside the Preview URL. You can hand off this Claim URL to allow another account to claim ownership of the deployment.

Does the Vercel deployment script exclude node_modules and .git?

Yes, the Vercel deployment script automatically excludes node_modules and .git directories during packaging. This ensures only necessary project files are uploaded to the deployment endpoint.

Do I need to manually specify the framework when deploying to Vercel?

No, the Vercel deployment script features automated framework detection. It analyzes your project structure during packaging and configures the deployment accordingly without manual specification.

What bash dependencies are required to run the Vercel deployment script?

The Vercel deployment script requires standard bash utilities including curl, tar, grep, cut, basename, mv, find, and mktemp. These common command-line tools facilitate project packaging and API communication.