vercel-deploy

Package and deploy projects to Vercel, returning a Preview URL.

1|Updated Jan 25, 2026
One-click install
npx skills add https://github.com/kellyson520/TG-ONE --skill vercel-deploy-kellyson520
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vercel-deploy
Source: https://github.com/kellyson520/TG-ONE/tree/main/.agent/skills/vercel-deploy
Command: npx skills add https://github.com/kellyson520/TG-ONE --skill vercel-deploy-kellyson520

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

Deploy applications and websites to Vercel quickly and without complex setup, returning a preview URL and a claimable deployment link.

Core Features & Use Cases

  • Packaging: package the project into a tarball while excluding node_modules and .git
  • Framework detection: auto-detects the framework from package.json
  • Deployment results: uploads to Vercel and returns a Preview URL and a Claim URL
  • Static HTML support: if there is no package.json, a single HTML file is renamed to index.html to serve at the root

Quick Start

Execute the deployment script to package your project and deploy it to Vercel; you will 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 project to Vercel without complex setup or authentication?

Deploy to Vercel without authentication by executing a script that packages your project, auto-detects the framework, and returns a Preview URL and a claimable deployment link.

Can I deploy a static HTML site to Vercel if there is no package.json?

Yes, for static sites without a package.json, the script automatically renames a single HTML file to index.html to serve it at the root during Vercel deployment.

How does framework detection work when deploying to Vercel?

Framework detection works by reading the package.json in your project. The script uses this information to automatically configure the deployment settings.

What is excluded when packaging a project for Vercel deployment?

When packaging your project into a tarball for deployment, the script automatically excludes the node_modules and .git directories to reduce upload size.

Do I need to install Vercel CLI to use a single command deployment script?

No, the script relies on standard bash utilities like curl and tar to package and upload your project, bypassing the need for the Vercel CLI or authentication.

What do I get back after uploading a tarball to Vercel?

After uploading, you receive a Preview URL to view your live application and a Claim URL to take ownership of the deployment within your account.