Vercel Deploy
Deploy applications and websites to Vercel with a claimable preview. Use when the user requests deployment actions like "deploy my app", "deploy and give me…
Install
Quick install
npx skills add https://github.com/vercel-labs/vercel-deploy-codex-skill/tree/HEAD/skills/vercel-deploynpx skills add vercel-labs/vercel-deploy-codex-skill --skill vercel-deploy --agent claude-codenpx skills add vercel-labs/vercel-deploy-codex-skill --skill vercel-deploy --agent cursornpx skills add vercel-labs/vercel-deploy-codex-skill --skill vercel-deploy --agent codexnpx skills add vercel-labs/vercel-deploy-codex-skill --skill vercel-deploy --agent opencodenpx skills add vercel-labs/vercel-deploy-codex-skill --skill vercel-deploy --agent github-copilotnpx skills add vercel-labs/vercel-deploy-codex-skill --skill vercel-deploy --agent windsurfMore install options
Shorthand — useful for multi-skill repos:
npx skills add vercel-labs/vercel-deploy-codex-skill --skill vercel-deployManual — clone the repo and drop the folder into your agent's skills directory:
git clone https://github.com/vercel-labs/vercel-deploy-codex-skill.gitcp -r vercel-deploy-codex-skill/skills/vercel-deploy ~/.claude/skills/vercel-deploy
Deploy applications and websites to Vercel with a claimable preview. Use when the user requests deployment actions like "deploy my app", "deploy and give me…
vercel-deployby vercel
Deploy applications and websites to Vercel with a claimable preview. Use when the user requests deployment actions like "deploy my app", "deploy and give me…npx skills add https://github.com/vercel-labs/vercel-deploy-codex-skill --skill vercel-deployDownload ZIPGitHub
Vercel Deploy
Deploy any project to Vercel instantly. No authentication required.
How It Works
- Packages your project into a
.tar.gz(excludesnode_modulesand.git)
- Auto-detects framework from
package.json
- Uploads to deployment service
- Returns Preview URL (live site) and Claim URL (transfer to your Vercel account)
Usage
`bash scripts/deploy.sh [path]
`
Arguments:
path- Directory to deploy, or a.tgzfile (defaults to current directory)
If you pass a directory, the script will create a .tar.gz before upload.
Examples:
`# Deploy current directory
bash scripts/deploy.sh
# Deploy specific project
bash scripts/deploy.sh /path/to/project
# Deploy existing tarball
bash scripts/deploy.sh /path/to/project.tgz
`
Packaging Rules
- Exclude
node_modulesand.git
- If no
package.json, keepframeworkasnull
- For static HTML with a single
.htmlfile, rename it toindex.htmlbefore packaging
Output
`Preparing deployment...
Creating deployment package...
Deploying...
✓ Deployment successful!
Preview URL: https://skill-deploy-abc123.vercel.app
Claim URL: https://vercel.com/claim-deployment?code=...
`
The script also outputs JSON to stdout for programmatic use.
`{
"previewUrl": "https://skill-deploy-abc123.vercel.app",
"claimUrl": "https://vercel.com/claim-deployment?code=...",
"deploymentId": "dpl_...",
"projectId": "prj_..."
}
`
Framework Detection
The script auto-detects frameworks from package.json. Supported frameworks include:
- React: Next.js, Gatsby, Create React App, Remix, React Router
- Vue: Nuxt, Vitepress, Vuepress, Gridsome
- Svelte: SvelteKit, Svelte, Sapper
- Other Frontend: Astro, Solid Start, Angular, Ember, Preact, Docusaurus
- Backend: Express, Hono, Fastify, NestJS, Elysia, h3, Nitro
- Build Tools: Vite, Parcel
- And more: Blitz, Hydrogen, RedwoodJS, Storybook, Sanity, etc.
For static HTML projects (no package.json), framework is set to null.
Static HTML Projects
For projects without a package.json:
- If there's a single
.htmlfile not namedindex.html, it gets renamed automatically
- This ensures the page is served at the root URL (
/)
Present Results to User
Always show both URLs:
`✓ Deployment successful!
Preview URL: https://skill-deploy-abc123.vercel.app
Claim URL: https://vercel.com/claim-deployment?code=...
View your site at the Preview URL.
To transfer this deployment to your Vercel account, visit the Claim URL.
`
Troubleshooting
Network Egress Error
If deployment fails due to network restrictions, tell the user:
`Deployment failed due to network restrictions. To fix this:
1. Allow outbound access to *.vercel.com
2. Try deploying again
`
More skills from vercel
agent-friendly-apisby vercelCompanion skill for the Agent-Friendly APIs course on Vercel Academy. Build a feedback API, make it agent-friendly with structured documentation, then create a Claude Code skill that generates the docs automatically.filesystem-agentsby vercelYou are a knowledgeable teaching assistant for the Building Filesystem Agents course on Vercel Academy. You help students build agents that navigate filesystems with bash to answer questions about structured data.add-provider-packageby vercelGuide for adding new AI provider packages to the AI SDK. Use when creating a new @ai-sdk/<provider> package to integrate an AI service into the SDK.csvby vercelAnalyze and transform CSV data using bash toolsaiby vercelPythonai module — models, agents, hooks, middleware, MCP, structured outputcron-jobsby vercelVercel Cron Jobs configuration and best practices. Use when adding, editing, or debugging scheduled tasks in vercel.json.frontend-designby vercelCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts,…vercel-react-best-practicesby vercelReact and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js…
---
Source: https://github.com/vercel-labs/vercel-deploy-codex-skill/tree/HEAD/skills/vercel-deploy
Author: vercel
Discovered via: mcpservers.org
SKILL.md source
---
name: vercel-deploy
description: Deploy applications and websites to Vercel with a claimable preview. Use when the user requests deployment actions like "deploy my app", "deploy and give me…
---
# vercel-deploy
Deploy applications and websites to Vercel with a claimable preview. Use when the user requests deployment actions like "deploy my app", "deploy and give me…
# vercel-deployby vercel
Deploy applications and websites to Vercel with a claimable preview. Use when the user requests deployment actions like "deploy my app", "deploy and give me…
`npx skills add https://github.com/vercel-labs/vercel-deploy-codex-skill --skill vercel-deploy`Download ZIPGitHub
## Vercel Deploy
Deploy any project to Vercel instantly. No authentication required.
## How It Works
* Packages your project into a `.tar.gz` (excludes `node_modules` and `.git`)
* Auto-detects framework from `package.json`
* Uploads to deployment service
* Returns Preview URL (live site) and Claim URL (transfer to your Vercel account)
## Usage
```
`bash scripts/deploy.sh [path]
`
```
Arguments:
* `path` - Directory to deploy, or a `.tgz` file (defaults to current directory)
If you pass a directory, the script will create a `.tar.gz` before upload.
Examples:
```
`# Deploy current directory
bash scripts/deploy.sh
# Deploy specific project
bash scripts/deploy.sh /path/to/project
# Deploy existing tarball
bash scripts/deploy.sh /path/to/project.tgz
`
```
## Packaging Rules
* Exclude `node_modules` and `.git`
* If no `package.json`, keep `framework` as `null`
* For static HTML with a single `.html` file, rename it to `index.html` before packaging
## Output
```
`Preparing deployment...
Creating deployment package...
Deploying...
✓ Deployment successful!
Preview URL: https://skill-deploy-abc123.vercel.app
Claim URL: https://vercel.com/claim-deployment?code=...
`
```
The script also outputs JSON to stdout for programmatic use.
```
`{
"previewUrl": "https://skill-deploy-abc123.vercel.app",
"claimUrl": "https://vercel.com/claim-deployment?code=...",
"deploymentId": "dpl_...",
"projectId": "prj_..."
}
`
```
## Framework Detection
The script auto-detects frameworks from `package.json`. Supported frameworks include:
* React: Next.js, Gatsby, Create React App, Remix, React Router
* Vue: Nuxt, Vitepress, Vuepress, Gridsome
* Svelte: SvelteKit, Svelte, Sapper
* Other Frontend: Astro, Solid Start, Angular, Ember, Preact, Docusaurus
* Backend: Express, Hono, Fastify, NestJS, Elysia, h3, Nitro
* Build Tools: Vite, Parcel
* And more: Blitz, Hydrogen, RedwoodJS, Storybook, Sanity, etc.
For static HTML projects (no `package.json`), framework is set to `null`.
## Static HTML Projects
For projects without a `package.json`:
* If there's a single `.html` file not named `index.html`, it gets renamed automatically
* This ensures the page is served at the root URL (`/`)
## Present Results to User
Always show both URLs:
```
`✓ Deployment successful!
Preview URL: https://skill-deploy-abc123.vercel.app
Claim URL: https://vercel.com/claim-deployment?code=...
View your site at the Preview URL.
To transfer this deployment to your Vercel account, visit the Claim URL.
`
```
## Troubleshooting
### Network Egress Error
If deployment fails due to network restrictions, tell the user:
```
`Deployment failed due to network restrictions. To fix this:
1. Allow outbound access to *.vercel.com
2. Try deploying again
`
```
## More skills from vercel
agent-friendly-apisby vercelCompanion skill for the Agent-Friendly APIs course on Vercel Academy. Build a feedback API, make it agent-friendly with structured documentation, then create a Claude Code skill that generates the docs automatically.filesystem-agentsby vercelYou are a knowledgeable teaching assistant for the Building Filesystem Agents course on Vercel Academy. You help students build agents that navigate filesystems with bash to answer questions about structured data.add-provider-packageby vercelGuide for adding new AI provider packages to the AI SDK. Use when creating a new @ai-sdk/<provider> package to integrate an AI service into the SDK.csvby vercelAnalyze and transform CSV data using bash toolsaiby vercelPython `ai` module — models, agents, hooks, middleware, MCP, structured outputcron-jobsby vercelVercel Cron Jobs configuration and best practices. Use when adding, editing, or debugging scheduled tasks in vercel.json.frontend-designby vercelCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts,…vercel-react-best-practicesby vercelReact and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js…
---
**Source**: https://github.com/vercel-labs/vercel-deploy-codex-skill/tree/HEAD/skills/vercel-deploy
**Author**: vercel
**Discovered via**: mcpservers.org
Related skills 6
microsoft-foundry
Deploy, evaluate, and manage Foundry agents end-to-end: Docker build, ACR push, hosted/prompt agent create, container start, batch eval, continuous eval, prompt optimizer workflows, agent.yaml, dataset curation from traces. USE FOR: deploy agent to Foundry, hosted agent, create agent, invoke agent, evaluate agent, run batch eval, continuous eval, continuous monitoring, continuous eval status, optimize prompt, improve prompt, prompt optimizer, optimize agent instructions, improve agent instruc...
azure-ai
Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech.
azure-deploy
Execute Azure deployments for ALREADY-PREPARED applications that have existing .azure/deployment-plan.md and infrastructure files. DO NOT use this skill when the user asks to CREATE a new application — use azure-prepare instead. This skill runs azd up, azd deploy, terraform apply, and az deployment commands with built-in error recovery. Requires .azure/deployment-plan.md from azure-prepare and validated status from azure-validate. WHEN: "run azd up", "run azd deploy", "execute deployment", "p...
azure-diagnostics
Debug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe triage. WHEN: debug production issues, troubleshoot app service, app service high CPU, app service deployment failure, troubleshoot container apps, troubleshoot functions, troubleshoot AKS, kubectl cannot connect, kube-system/CoreDNS failures, pod pending, crashloop, node not ready, upgrade failures, analyze logs, KQL, insights, image pull failures, cold start issues, health probe failures, resource...
azure-resource-lookup
List, find, and show Azure resources across subscriptions or resource groups. Handles prompts like "list the websites in my subscription", "list my web apps", "show my app services", "list virtual machines", "list my VMs", "show storage accounts", "find container apps", and "what resources do I have". USE FOR: list websites, list web apps, list app services, show websites in subscription, resource inventory, find resources by tag, tag analysis, orphaned resource discovery (not for cost analys...
azure-resource-visualizer
Analyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the relationships between individual resources. WHEN: create architecture diagram, visualize Azure resources, show resource relationships, generate Mermaid diagram, analyze resource group, diagram my resources, architecture visualization, resource topology, map Azure infrastructure.