# Vercel

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

- Skill: `tychohq/vercel` (Agent Skill)
- Install (CLI): `npx skillmds@latest add tychohq/vercel`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tychohq/vercel/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: tychohq (https://skillmd.com/u/tychohq)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tychohq/vercel

---


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

