platform-vercel

Query Vercel projects, deployments, and build logs to investigate deployment failures.

Updated Mar 26, 2026
One-click install
npx skills add https://github.com/erwinv2k-TKG/AgentesVSC --skill platform-vercel-erwinv2k-tkg
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: platform-vercel
Source: https://github.com/erwinv2k-TKG/AgentesVSC/tree/main/packs/incidentfox/sre-agent/.claude/skills/platform-vercel
Command: npx skills add https://github.com/erwinv2k-TKG/AgentesVSC --skill platform-vercel-erwinv2k-tkg

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires httpx, and includes scripts (resource) components.

What problem does it solve? Investigating Vercel deployment failures, runtime errors, and slow builds normally requires manual dashboard navigation and log digging; this Skill provides scripted access to projects, deployments, and build events for faster incident diagnosis. ## Core Features & Use Cases - Deployment Inspection: List and filter deployments by project, state (ERROR, BUILDING, READY), and target (production or preview), then retrieve full deployment details including git metadata and error codes. - Build Log Retrieval: Fetch deployment events and build logs to pinpoint where a build failed or stalled. - Deployment Creation: Trigger new preview or production deployments from a GitHub repo and branch, with production deploys gated behind explicit user confirmation. - Use Case: When a production release breaks, list recent production deployments, compare git SHAs between the current and previous deploy, and read the build log to identify the failing commit. ## Quick Start Ask the agent to list the failed deployments for your Vercel project and show the build log of the most recent failure.

Frequently Asked Questions about platform-vercel

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

FAQPage Schema
How do I check why a Vercel deployment failed?

List deployments filtered by state ERROR, then retrieve the deployment details to read the errorCode and errorMessage fields. Finally, fetch the deployment events to read the full build log and locate the exact failure point.

How do I get Vercel build logs from the command line?

Run the get_deployment_events.py script with the deployment ID to retrieve build log events. Use the --limit flag to control how many log entries are returned and --json for machine-readable output.

Do I need a VERCEL_TOKEN environment variable to authenticate?

No, credentials are injected automatically by a proxy layer, so the scripts work without a visible VERCEL_TOKEN. Direct token mode exists only for local development when no proxy base URL is configured.

Can I filter Vercel deployments by production or preview target?

Yes, the list_deployments.py script accepts a --target flag with values production or preview. You can combine it with --state and --project filters to narrow results, such as listing only failed production deployments.

Can this skill create production deployments automatically?

It can create deployments via create_deployment.py, but production deployments require explicit user confirmation. The default target is preview to prevent accidental production releases.