🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Vercel

by @brennerspear

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

Versionv1.0.0
Downloads3,954
TERMINAL
clawhub install vercel-deployment

πŸ“– About This Skill


name: vercel slug: vercel-deployment version: 1.0.0 description: Deploy and manage Vercel projects, including linking repositories, env vars, and domains.

Vercel β€” Deploy and Manage Projects

Set Up a New Project

cd    # 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.