Set up Vercel CLI and configure project linking. Use when first connecting a project to Vercel.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add Elnora-AI/elnora-ai-agent-hackathon-starter-kit --skill setup --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Setup?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/elnora-ai-setup)More formats (shields.io, HTML) on the badges page.
---
name: setup
description: Set up Vercel CLI and configure project linking. Use when first connecting a project to Vercel.
allowed-tools: [Bash]
user_invocable: true
---
# Vercel Setup
First-time setup: install CLI, authenticate, link project, pull environment variables.
## Steps
### 1. Install Vercel CLI
```bash
vercel --version 2>/dev/null || npm i -g vercel
```
### 2. Authenticate
```bash
vercel login
```
Follow the browser prompt to complete authentication.
### 3. Link project
**Single project (most cases)**:
```bash
vercel link
```
**Monorepo with multiple Vercel projects**:
```bash
vercel link --repo
```
Monorepo decision: if the repo has multiple apps each deployed separately (e.g., `apps/web`, `apps/api`), use `--repo`. Otherwise, `vercel link` is fine.
### 4. Verify linking
```bash
cat .vercel/project.json 2>/dev/null || cat .vercel/repo.json 2>/dev/null
```
### 5. Pull environment variables
```bash
vercel pull
```
This creates `.vercel/.env.development.local` with your project's env vars.
### 6. Verify setup
```bash
vercel whoami && vercel project ls
```
## Post-Setup
- Run `vercel dev` to start local development with Vercel's serverless functions.
- Run `vercel deploy` for a preview deployment.
- See `references/getting-started.md` and `references/environment-variables.md` for details.
## Anti-Patterns
- Don't let commands auto-link in monorepos — always run `vercel link` (or `--repo`) explicitly first.
- Don't link while on the wrong team — check with `vercel whoami`, switch with `vercel teams switch`.
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!