vercel

Deploy, inspect logs, and check project status on Vercel via the CLI.

Updated May 3, 2026
One-click install
npx skills add https://github.com/Claudfather/clauDNA --skill vercel-claudfather
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vercel
Source: https://github.com/Claudfather/clauDNA/tree/main/skills/vercel
Command: npx skills add https://github.com/Claudfather/clauDNA --skill vercel-claudfather

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Vercel deployments by hand means juggling CLI commands for deploying, debugging logs, and checking project configuration, with risks like unauthenticated hangs, uncommitted-change drift, and unverified production releases. ## Core Features & Use Cases - Deploy mode: Runs pre-deploy checks (git state, local build), enforces a user confirmation gate, deploys to preview or production, then verifies health with HTTP checks and post-deploy log review. - Logs mode: Fetches and filters deployment logs by level, status code, source type, time range, branch, or full-text query, with JSON output for parsing and deployment bisect for regression hunting. - Status mode: Builds a project dashboard covering recent deployments, production deployment details, domains, and environment variable counts. - Use Case: After pushing a feature branch, ask to deploy a preview, confirm the health checks pass, then filter the last hour of 5xx errors from production logs before promoting to production. ## Quick Start Ask the assistant to deploy the current project to a Vercel preview and then show any error logs from the last hour.

Frequently Asked Questions about vercel

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy to Vercel production from the CLI?

Run vercel deploy --prod after the pre-flight checks pass: CLI installed, authenticated, and project linked. The skill gates every deploy on explicit user confirmation and warns if uncommitted changes exist, since CLI deploys include them but git-triggered deploys do not.

How do I filter Vercel logs by errors or status code?

Use native CLI flags like vercel logs --level error, --status-code 5xx, --source serverless, or --since 1h instead of piping through grep. Add --json for structured JSON Lines output that can be parsed for fields like duration and statusCode.

Why does vercel whoami hang in CI or headless environments?

Bare vercel whoami falls into the interactive device-code login flow, which blocks forever unattended. Set VERCEL_TOKEN and run vercel whoami --token "$VERCEL_TOKEN", or wrap the probe in timeout 10 vercel whoami so an unauthenticated check is killed instead of hanging.

Can I find which Vercel deployment introduced a regression?

Yes, use vercel bisect with --good and --bad deployment URLs to binary-search across deployments. This narrows down the exact deployment where an issue was introduced without manually checking each release.

Does the skill show Vercel environment variable values?

No, the status mode lists only environment variable names and their targets (Production, Preview, Development) via vercel env ls. Values are never displayed, and it flags variables that exist only in some environments.