Deploy and manage Vercel projects, including linking repositories, env vars, and domains.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add dvcrn/openclaw-skills-marketplace --skill vercel --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Vercel?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/dvcrn-vercel)More formats (shields.io, HTML) on the badges page.
---
name: vercel
description: "Deploy and manage Vercel projects, including linking repositories, env vars, and domains."
---
# Vercel — Deploy and Manage Projects
## Set Up a New Project
```bash
cd <project-root> # must be the directory with .git
npx vercel link # link to Vercel project
npx vercel git connect # connect GitHub repo for auto-deploys
```
Run `vercel git connect` from the repo root (where `.git` lives), not a subdirectory.
## Set Environment Variables
**NEVER use `echo`** — it adds a trailing `\n`:
```bash
printf 'value' | npx vercel env add VAR_NAME production
```
## Check Domains
```bash
cd any-vercel-project && npx vercel domains ls
```
For the full domain list: see `domains.md` in this folder.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!