# Vercel CLI

> Operate Vercel with the CLI — pull env vars, inspect deployments, read runtime logs, list deploys. Use when a task needs Vercel deployment state, env vars, or logs. Not for writing app code.

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

---


# Vercel CLI

Vercel has a full CLI: `vercel`. Use it before reaching for the dashboard or the REST API.

- Pull env vars for local dev: `vercel env pull`
- Inspect a deployment: `vercel inspect <url>`
- Read runtime logs: `vercel logs <url>`
- List deployments: `vercel ls`
- Discover more: `vercel --help`

Deploys usually go through git/CI — do not `vercel deploy` production by hand unless the repo's workflow says so.

