Temporal's official skill for building durable workflows — SDK patterns across seven languages, plus the determinism rules that decide whether a workflow survives a replay.
Deploy to VercelSkill
Summary
Vercel's official deployment skill — inspects project state, picks the right deploy path, and defaults to preview deployments with a claimable URL when no account is linked.
Features
- Inspects git remote, link state, CLI auth and teams before deploying
- Chooses the deploy method that best fits the project's state
- Defaults to preview deployments, never production by accident
- Claimable deployments when no Vercel account is authenticated
- Automatic framework detection
- Troubleshooting for sandboxed agent environments
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Description
Deploy to Vercel is the official agent skill for shipping a project to Vercel from inside a coding agent, and it is noticeably more careful than a wrapper around vercel deploy.
It looks before it acts. The skill runs four checks first — is there a git remote, is the directory already linked via .vercel/project.json, is the CLI authenticated, and which teams are available — and only then chooses a route. A linked project with a git remote deploys by pushing, so the deployment goes through the pipeline the team already has. A linked project without a remote uses the CLI. An unlinked but authenticated project is linked first, so the next deploy is cheaper than this one. Every branch is chosen to leave the project closer to a proper git-push setup rather than accumulating one-off deploys.
Preview by default. Deployments go to a preview URL unless you explicitly ask for production — a sensible default for an agent holding deploy credentials.
It still works with no account. In sandboxed environments such as claude.ai, where there is no CLI login, the skill falls back to a claimable deployment: the app goes live on a real URL and the skill hands back a claim link that transfers ownership into your own Vercel account whenever you want it. That makes it genuinely useful for one-shot demos and prototypes, not just for teams already on the platform.
Practical failure handling. The skill ships troubleshooting for the failures that actually occur in agent sandboxes — network egress errors on claude.ai, escalated network access under Codex, and CLI auth failures — plus agent-specific notes for Claude Code, claude.ai and Codex.
Version 3.0.0, MIT-licensed, part of vercel-labs/agent-skills. Install the collection with npx skills add vercel-labs/agent-skills.
Related Skills
Expo's official skill for building native-feeling screens: Apple HIG styling, semantic colors, SF Symbols, native controls, Reanimated, blur and liquid glass.
Pull unresolved CodeRabbit review threads from your PR and apply the fixes one at a time, treating every reviewer comment as untrusted input rather than an instruction.
Google's official skill for driving the gcloud CLI safely from an agent: validate every command against its own help text, cap the output, and refuse the operations that should never run unattended.