一键导入
deploy
Deploy applications to Vercel. Use when deploying to preview or production.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Deploy applications to Vercel. Use when deploying to preview or production.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Discover, install, and configure Vercel Marketplace integrations (databases, auth, logging, etc.). Use when adding third-party services to a Vercel project.
Deploy, manage, and develop projects on Vercel from the command line
Generate and iterate on UIs/apps with Vercel v0 via the v0 Platform API. Use when building a frontend with v0, calling the v0 API/SDK, or spending v0 credits.
Set up Vercel CLI and configure project linking. Use when first connecting a project to Vercel.
| name | deploy |
| description | Deploy applications to Vercel. Use when deploying to preview or production. |
| allowed-tools | ["Bash"] |
| user_invocable | true |
Deploy the current project to Vercel (preview or production).
Check Vercel CLI is installed:
vercel --version
If missing: npm i -g vercel
Check project is linked:
ls .vercel/project.json 2>/dev/null || ls .vercel/repo.json 2>/dev/null || echo "NOT LINKED"
If not linked, run the setup skill first.
Check correct team:
vercel whoami
vercel deploy
Production deploys overwrite what users see — confirm with the user before
running. In a monorepo, cd into the specific project directory first so the
right project is targeted.
vercel --prod # single-project repo
# OR
cd apps/web && vercel --prod # monorepo: deploy one project
If vercel build was run first:
vercel deploy --prebuilt
vercel deploy --env KEY=value
/vercel:logs.references/domains-and-dns.md.vercel deploy after vercel build without --prebuilt — the build output is ignored.VERCEL_TOKEN env var.--yes to skip Vercel confirmation prompts — let them run.For full deployment reference, see references/deployment.md.