vercel-deploy

Automates zero-auth project deployment to Vercel with preview and claim URLs.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

Deploys projects to Vercel without requiring user authentication and returns a preview URL plus a claim URL for deployment.

Core Features & Use Cases

  • Automates packaging into a tarball with exclusions (e.g., node_modules, .git).
  • Auto-detects framework from package.json and uploads to a deployment service.
  • Returns both a preview URL and a claim URL for easy sharing and claiming deployments.

Quick Start

Run bash scripts/deploy.sh [path] to deploy your project 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 without authentication?

To deploy to Vercel without authentication, run the deployment script which packages the project into a tarball, uploads it to the deployment service, and returns a preview URL plus a claim URL. This zero-auth process requires Bash, tar, and curl to execute successfully.

Does Vercel deployment support automatic framework detection?

Vercel deployment supports automatic framework detection by reading the package.json file. The script identifies the framework configuration before packaging the project into a tarball and uploading it to the deployment service, ensuring the correct build environment is applied.

What do I need to run a zero-auth Vercel deployment?

To run a zero-auth Vercel deployment, you need Bash, tar, and curl installed in your environment. The deployment script uses these tools to package the project, exclude directories like node_modules and .git, and upload the tarball to the service.

How do I get a preview URL after deploying to Vercel?

After deploying to Vercel, the script outputs a JSON object containing the preview URL and claim URL. You can use the preview URL to view the deployment immediately and the claim URL to take ownership of the deployment.

Are node_modules and .git included in the Vercel deployment tarball?

The Vercel deployment tarball excludes node_modules and .git directories during the packaging process. The script automatically handles these exclusions to reduce upload size and then cleans up the temporary tarball after the upload completes.