vercel-deploy

Deploy web projects to Vercel and return previewUrl and claimUrl.

2|1|Updated Apr 2, 2026
One-click install
npx skills add https://github.com/Sacred-G/oh-my-claw --skill vercel-deploy-sacred-g
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vercel-deploy
Source: https://github.com/Sacred-G/oh-my-claw/tree/main/secure-openclaw/skills-main/skills/.curated/vercel-deploy
Command: npx skills add https://github.com/Sacred-G/oh-my-claw --skill vercel-deploy-sacred-g

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

Deploy projects to Vercel instantly and securely, providing ready-to-use preview deployments by default.

Core Features & Use Cases

  • Auto-create preview deployments for every push or request, with an explicit production option when asked.
  • Fallback deployment workflow via a deploy.sh script for environments without authenticated CLI access.
  • Returns a deployment summary including previewUrl and claimUrl, enabling users to share and claim deployments.

Quick Start

Deploy my project to Vercel using the default settings and return the preview 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 web app to Vercel and get a preview URL?

To deploy a web app to Vercel, the skill detects your project framework from package.json, uses a script-based fallback if CLI access is constrained, and returns a JSON payload containing the previewUrl and claimUrl.

Can I trigger Vercel production deployments automatically?

Vercel production deployments are only performed when explicitly requested by the user. By default, the system safely operates in a sandbox-friendly mode, generating shareable preview deployments instead of production releases.

Does Vercel deployment work without CLI access in a CI-CD pipeline?

Yes, Vercel deployment works without authenticated CLI access by utilizing a deploy.sh script-based fallback. This allows automated CI-CD pipelines to push web projects and generate preview URLs even in constrained environments.

How do I share a Vercel deployment link after pushing code?

After your code is pushed, the deployment process completes and returns a JSON payload. This payload includes a previewUrl for viewing the web app and a claimUrl, enabling you to easily share and claim your deployment.

What is needed to automatically detect my project framework for Vercel deployment?

To automatically detect your project framework for Vercel deployment, you need a package.json file in your project root. The deployment tool reads this file to identify the framework and configure the deployment accordingly.