AI SummaryAutomates deployment of applications to Vercel with intelligent preview/production handling, enabling developers to instantly push their projects live without manual CLI configuration.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "vercel-deploy" skill in my project. Please run this command in my terminal: # Install skill into your project (6 files) mkdir -p .claude/skills/vercel-deploy && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/vercel-deploy/SKILL.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/vercel-deploy/SKILL.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/vercel-deploy/LICENSE.txt "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/vercel-deploy/LICENSE.txt" && mkdir -p .claude/skills/vercel-deploy/agents && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/vercel-deploy/agents/openai.yaml "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/vercel-deploy/agents/openai.yaml" && mkdir -p .claude/skills/vercel-deploy/assets && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/vercel-deploy/assets/vercel-small.svg "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/vercel-deploy/assets/vercel-small.svg" && mkdir -p .claude/skills/vercel-deploy/assets && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/vercel-deploy/assets/vercel.png "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/vercel-deploy/assets/vercel.png" && mkdir -p .claude/skills/vercel-deploy/scripts && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/vercel-deploy/scripts/deploy.sh "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/vercel-deploy/scripts/deploy.sh" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Deploy applications and websites to Vercel. Use when the user requests deployment actions like "deploy my app", "deploy and give me the link", "push this live", or "create a preview deployment".
Prerequisites
• Check whether the Vercel CLI is installed without escalated permissions (for example, command -v vercel). • Only escalate the actual deploy command if sandboxing blocks the deployment network calls (sandbox_permissions=require_escalated). • The deployment might take a few minutes. Use appropriate timeout values.
Vercel Deploy
Deploy any project to Vercel instantly. Always deploy as preview (not production) unless the user explicitly asks for production.
Quick Start
• Check whether the Vercel CLI is installed (no escalation for this check): `bash command -v vercel ` • If vercel is installed, run this (with a 10 minute timeout): `bash vercel deploy [path] -y ` Important: Use a 10 minute (600000ms) timeout for the deploy command since builds can take a while. • If vercel is not installed, or if the CLI fails with "No existing credentials found", use the fallback method below.
Fallback (No Auth)
If CLI fails with auth error, use the deploy script: `bash skill_dir="<path-to-skill>"
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster