Skills vercel

Deploy and manage Vercel projects, including linking repositories, env vars, and domains.

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/brennerspear/vercel-deployment" ~/.claude/skills/openclaw-skills-vercel && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/brennerspear/vercel-deployment" ~/.openclaw/skills/openclaw-skills-vercel && rm -rf "$T"
manifest: skills/brennerspear/vercel-deployment/SKILL.md
source content

Vercel — Deploy and Manage Projects

Set Up a New Project

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
:

printf 'value' | npx vercel env add VAR_NAME production

Check Domains

cd any-vercel-project && npx vercel domains ls

For the full domain list: see

domains.md
in this folder.