ワンクリックで
setup
Set up Vercel CLI and configure project linking. Use when first connecting a project to Vercel.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Set up Vercel CLI and configure project linking. Use when first connecting a project to Vercel.
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.
Deploy applications to Vercel. Use when deploying to preview or production.
| name | setup |
| description | Set up Vercel CLI and configure project linking. Use when first connecting a project to Vercel. |
| allowed-tools | ["Bash"] |
| user_invocable | true |
First-time setup: install CLI, authenticate, link project, pull environment variables.
vercel --version 2>/dev/null || npm i -g vercel
vercel login
Follow the browser prompt to complete authentication.
Single project (most cases):
vercel link
Monorepo with multiple Vercel projects:
vercel link --repo
Monorepo decision: if the repo has multiple apps each deployed separately (e.g., apps/web, apps/api), use --repo. Otherwise, vercel link is fine.
cat .vercel/project.json 2>/dev/null || cat .vercel/repo.json 2>/dev/null
vercel pull
This creates .vercel/.env.development.local with your project's env vars.
vercel whoami && vercel project ls
vercel dev to start local development with Vercel's serverless functions.vercel deploy for a preview deployment.references/getting-started.md and references/environment-variables.md for details.vercel link (or --repo) explicitly first.vercel whoami, switch with vercel teams switch.