Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

vercel-deployVercel 部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

242

周安装

10

GitHub Stars

35

下载量

79
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:vercel-deploy(Vercel 部署)
来源仓库:https://github.com/kazdenc/builder-skills
仓库路径:skills/vercel-deploy
安装命令:
npx skills add https://github.com/kazdenc/builder-skills --skill vercel-deploy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/kazdenc/builder-skills --skill vercel-deploy

简介

vercel-deploy 用于辅助云资源、部署、容器和基础设施相关任务。

  • 适合检查配置、整理部署步骤、分析资源状态或生成排障思路。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 使用时需明确目标环境、账号权限和资源组,区分测试与生产操作。
  • 涉及删除或修改关键配置时,应先评估影响范围。

SKILL.md

Vercel Deployment

Deploy and configure a project on Vercel. If target specifies a particular concern (domains, env vars, etc.), focus there. Otherwise, do the full setup.

Step 1: Install and Authenticate

pnpm add -g vercel
vercel login

If already installed, verify with vercel --version.

Step 2: Link the Project

From the project root:

vercel link

Follow the prompts to connect to an existing Vercel project or create a new one. This creates a .vercel/ directory locally (already in .gitignore by default).

Step 3: Configure vercel.json

Create vercel.json in the project root only if you need non-default settings. Next.js projects usually need minimal config.

{
  "framework": "nextjs",
  "buildCommand": "pnpm build",
  "installCommand": "pnpm install",
  "headers": [
    {
      "source": "/(.*)",
      "headers": [
        { "key": "X-Content-Type-Options", "value": "nosniff" },
        { "key": "X-Frame-Options", "value": "DENY" },
        { "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" }
      ]
    }
  ],
  "redirects": [],
  "rewrites": []
}
FieldWhen to set
frameworkAuto-detected for Next.js. Set explicitly if detection fails.
buildCommandOverride if using a monorepo or custom build step
installCommandOverride if not using npm (e.g., pnpm install)
headersAdd security headers, CORS, caching
redirectsDomain migrations, URL restructuring
rewritesProxy API routes, SPA fallbacks
regionsPin serverless functions to specific regions (e.g., ["iad1"])

Step 4: Environment Variables

Set via CLI

# Add for all environments
vercel env add NEXT_PUBLIC_APP_URL

# Add for specific environments
vercel env add DATABASE_URL production
vercel env add DATABASE_URL preview
vercel env add DATABASE_URL development

Environment Types

EnvironmentWhen usedNotes
ProductionMain branch deploysUse production database, real API keys
PreviewPR and branch deploysUse staging database, test API keys
Developmentvercel dev locallyMirrors .env.local

Pull env vars to local

vercel env pull .env.local

This syncs your Vercel development env vars to .env.local. Never commit this file.

Common env var issues

ProblemFix
Env var not available at build timeEnsure it's set for the correct environment (Production/Preview)
Client-side var is undefinedPrefix with NEXT_PUBLIC_
Changed env var, still old valueRedeploy. Env vars are baked in at build time.
Secret leaking to clientRemove NEXT_PUBLIC_ prefix. Only server code can access non-prefixed vars.

Step 5: Custom Domains

Add a domain

vercel domains add yourdomain.com

Configure DNS

Vercel provides DNS records to set. Common patterns:

Record typeNameValueUse case
A@76.76.21.21Root domain
CNAMEwwwcname.vercel-dns.comwww subdomain
CNAMEappcname.vercel-dns.comCustom subdomain

Redirect www to root (or vice versa)

Configure in Vercel Dashboard > Domains, or in vercel.json:

{
  "redirects": [
    {
      "source": "/:path((?!api/).*)",
      "has": [{ "type": "host", "value": "www.yourdomain.com" }],
      "destination": "https://yourdomain.com/:path",
      "permanent": true
    }
  ]
}

Step 6: Build Settings

Framework presets

Vercel auto-detects Next.js. Override only when needed:

SettingDefault (Next.js)Override when
Build commandnext buildMonorepo, custom scripts
Output directory.nextNever change for Next.js
Install commandnpm installUsing pnpm or yarn
Root directory/Monorepo (set to app directory)
Node.js version20.xNeed specific version

Monorepo setup

Set the root directory in Vercel project settings to the app's subdirectory:

Root Directory: apps/web

Or use vercel.json at the repo root:

{
  "ignoreCommand": "npx turbo-ignore"
}

Step 7: Preview Deployments

Every push to a non-production branch creates a preview deployment automatically.

Branch-based previews

  • Each PR gets a unique URL: <project>-<branch>-<team>.vercel.app
  • Comment bots post the preview URL on PRs
  • Preview deployments use "Preview" environment variables

Protect preview deployments

In Vercel Dashboard > Settings > General > Password Protection, enable password or Vercel Authentication for preview URLs.

Skip deployments for non-code changes

Add to vercel.json:

{
  "ignoreCommand": "git diff --quiet HEAD^ HEAD -- . ':!docs' ':!*.md'"
}

Step 8: Serverless and Edge Functions

Serverless function config

Next.js API routes and Server Actions deploy as serverless functions by default.

Set runtime and region in the route file:

export const runtime = 'nodejs' // or 'edge'
export const maxDuration = 30   // seconds (default 10, max depends on plan)
export const preferredRegion = 'iad1'

Edge vs. Serverless

FeatureServerless (nodejs)Edge (edge)
Cold start~250ms~0ms
RuntimeFull Node.jsV8 (limited APIs)
Max duration10-300s (plan-dependent)30s
Use forDatabase queries, heavy computationAuth, redirects, geolocation
Node APIsFullSubset (no fs, limited crypto)

Step 9: Deploy

Preview deploy (from any branch)

vercel

Production deploy

vercel --prod

Via Git (recommended)

Connect the Git repo in Vercel Dashboard. Every push to main auto-deploys to production. Every PR branch gets a preview.

Troubleshooting

ProblemCauseFix
Build fails with module not foundMissing dependencyCheck package.json. Run pnpm install and retry.
Build fails with type errorsTypeScript strict modeFix type errors locally first: pnpm build
404 on dynamic routesMissing generateStaticParams or wrong configAdd export const dynamic = 'force-dynamic' or implement generateStaticParams
API route returns 500Unhandled error or missing env varCheck Vercel function logs: vercel logs <url>
Slow cold startsLarge function bundleReduce dependencies. Use edge runtime where possible.
CORS errorsMissing headersAdd CORS headers in vercel.json or middleware
Deployment stuckBuild queueCancel and retry: vercel --force

Deployment Checklist

TaskStatus
Vercel CLI installed and authenticated
Project linked with vercel link
vercel.json configured (if needed)
Env vars set for Production, Preview, Development
Custom domain added and DNS configured
SSL certificate provisioned (automatic)
Preview deployments working on PRs
vercel --prod deploys successfully
Security headers configured
Function regions set (if latency-sensitive)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.88%
按下载量换算28

Claude

32%
按下载量换算25

Cursor

17.85%
按下载量换算14

Gemini CLI

10.12%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills