jpskill.com
🛠️ 開発・MCP コミュニティ

deploy-to-vercel

Deploy applications and websites to Vercel. Use when the user requests deployment actions like "deploy my app", "deploy and give me the link", "push this live", or "create a preview deployment".

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o deploy-to-vercel.zip https://jpskill.com/download/20990.zip && unzip -o deploy-to-vercel.zip && rm deploy-to-vercel.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/20990.zip -OutFile "$d\deploy-to-vercel.zip"; Expand-Archive "$d\deploy-to-vercel.zip" -DestinationPath $d -Force; ri "$d\deploy-to-vercel.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して deploy-to-vercel.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → deploy-to-vercel フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Vercelへのデプロイ

任意のプロジェクトをVercelにデプロイします。ユーザーが明示的に本番環境へのデプロイを要求しない限り、常にプレビューとしてデプロイします(本番環境ではありません)。

目標は、ユーザーが長期的に最適なセットアップ、つまり、プロジェクトがVercelにリンクされ、git-pushによるデプロイが可能な状態になることです。以下の各方法は、ユーザーをその状態に近づけることを目指しています。

ステップ1:プロジェクトの状態を収集する

どの方法を使用するかを決定する前に、以下の4つのチェックをすべて実行します。

# 1. gitリモートの確認
git remote get-url origin 2>/dev/null

# 2. Vercelプロジェクトにローカルでリンクされているか確認(どちらかのファイルがあればリンク済み)
cat .vercel/project.json 2>/dev/null || cat .vercel/repo.json 2>/dev/null

# 3. Vercel CLIがインストールされ、認証されているか確認
vercel whoami 2>/dev/null

# 4. 利用可能なチームをリストアップ(認証済みの場合)
vercel teams list --format json 2>/dev/null

チームの選択

ユーザーが複数のチームに属している場合、利用可能なすべてのチームスラッグを箇条書きで提示し、どのチームにデプロイするかを尋ねます。ユーザーがチームを選択したら、すぐに次のステップに進みます。追加の確認は求めません。

以降のすべてのCLIコマンド(vercel deployvercel linkvercel inspectなど)で、--scopeを介してチームスラッグを渡します。

vercel deploy [path] -y --no-wait --scope <team-slug>

プロジェクトがすでにリンクされている場合(.vercel/project.jsonまたは.vercel/repo.jsonが存在する場合)、これらのファイル内のorgIdがチームを決定します。再度尋ねる必要はありません。チームが1つしかない場合(または個人アカウントのみの場合)は、プロンプトをスキップして直接使用します。

.vercel/ディレクトリについて: リンクされたプロジェクトには、以下のいずれかがあります。

  • .vercel/project.jsonvercel linkによって作成されます(単一プロジェクトのリンク)。projectIdorgIdを含みます。
  • .vercel/repo.jsonvercel link --repoによって作成されます(リポジトリベースのリンク)。orgIdremoteName、およびディレクトリをVercelプロジェクトIDにマッピングするprojects配列を含みます。

どちらかのファイルがあれば、プロジェクトはリンク済みであることを意味します。両方を確認してください。

リンクされていないディレクトリで状態を検出するためにvercel project inspectvercel ls、またはvercel link使用しないでください.vercel/設定がない場合、これらは対話的にプロンプトを表示するか(または--yesを使用すると、副作用としてサイレントにリンクします)。vercel whoamiのみがどこでも安全に実行できます。

ステップ2:デプロイ方法を選択する

リンク済み(.vercel/が存在する)+ gitリモートがある → Git Push

これは理想的な状態です。プロジェクトはリンクされており、git統合があります。

  1. プッシュする前にユーザーに尋ねます。 明示的な承認なしにプッシュしないでください。

    このプロジェクトはgit経由でVercelに接続されています。コミットしてプッシュすることで
    デプロイをトリガーできます。続行しますか?
  2. コミットしてプッシュします。

    git add .
    git commit -m "deploy: <変更の説明>"
    git push

    Vercelはプッシュから自動的にビルドします。非本番ブランチはプレビューデプロイメントを取得し、本番ブランチ(通常はmain)は本番デプロイメントを取得します。

  3. プレビューURLを取得します。 CLIが認証されている場合:

    sleep 5
    vercel ls --format json

    JSON出力にはdeployments配列があります。最新のエントリを見つけます。そのurlフィールドがプレビューURLです。

    CLIが認証されていない場合は、VercelダッシュボードまたはgitプロバイダーのコミットステータスチェックでプレビューURLを確認するようにユーザーに伝えます。


リンク済み(.vercel/が存在する)+ gitリモートがない → vercel deploy

プロジェクトはリンクされていますが、gitリポジトリがありません。CLIで直接デプロイします。

vercel deploy [path] -y --no-wait

--no-waitを使用すると、CLIはビルドが完了するまでブロックする代わりに、デプロイメントURLをすぐに返します(ビルドには時間がかかる場合があります)。その後、デプロイメントステータスを以下で確認します。

vercel inspect <deployment-url>

本番デプロイの場合(ユーザーが明示的に要求した場合のみ):

vercel deploy [path] --prod -y --no-wait

未リンク + CLIが認証済み → まずリンクし、次にデプロイ

CLIは機能していますが、プロジェクトはまだリンクされていません。これは、ユーザーを最適な状態にする機会です。

  1. どのチームにデプロイするかをユーザーに尋ねます。 ステップ1のチームスラッグを箇条書きで提示します。チームが1つしかない場合(または個人アカウントのみの場合)は、このステップをスキップします。

  2. チームが選択されたら、直接リンクに進みます。 何が起こるかをユーザーに伝えますが、個別の確認は求めません。

    このプロジェクトをVercelの<チーム名>にリンクします。これにより、デプロイ先のVercel
    プロジェクトが作成され、今後のgitプッシュで自動デプロイが有効になります。
  3. gitリモートが存在する場合、選択したチームスコープでリポジトリベースのリンクを使用します。

    vercel link --repo --scope <team-slug>

    これはgitリモートURLを読み取り、そのリポジトリからデプロイする既存のVercelプロジェクトと照合します。.vercel/repo.jsonを作成します。これは、ディレクトリ名で照合しようとし、ローカルフォルダーとVercelプロジェクトの名前が異なる場合によく失敗するvercel link--repoなし)よりもはるかに信頼性があります。

    gitリモートがない場合、標準のリンクにフォールバックします。

    vercel link --scope <team-slug>

    これは、プロジェクトを選択または作成するようにユーザーに促します。.vercel/project.jsonを作成します。

  4. 次に、利用可能な最良の方法を使用してデプロイします。

    • gitリモートが存在する場合 → コミットしてプッシュ(上記のgitプッシュ方法を参照)
    • gitリモートがない場合 → vercel deploy [path] -y --no-wait --scope <team-slug>を実行し、次にvercel inspect <url>でステータスを確認

未リンク + CLIが未認証 → インストール、認証、リンク、デプロイ

Vercel CLIがまったくセットアップされていません。

  1. CLIをインストールします(まだインストールされていない場合)。

    npm install -g vercel
  2. 認証します。

    vercel login

    ユーザーはブラウザで認証を完了します。ログインが不可能な非対話型環境で実行している場合は、以下の認証なしのフォールバックにスキップします。

  3. どのチームにデプロイするかを尋ねますvercel teams list --format jsonからのチームスラッグを箇条書きで提示します。チームが1つしかない場合/個人アカウントのみの場合はスキップします。選択したら、すぐに進みます。

  4. プロジェクトをリンクします

(原文がここで切り詰められています)

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Deploy to Vercel

Deploy any project to Vercel. Always deploy as preview (not production) unless the user explicitly asks for production.

The goal is to get the user into the best long-term setup: their project linked to Vercel with git-push deploys. Every method below tries to move the user closer to that state.

Step 1: Gather Project State

Run all four checks before deciding which method to use:

# 1. Check for a git remote
git remote get-url origin 2>/dev/null

# 2. Check if locally linked to a Vercel project (either file means linked)
cat .vercel/project.json 2>/dev/null || cat .vercel/repo.json 2>/dev/null

# 3. Check if the Vercel CLI is installed and authenticated
vercel whoami 2>/dev/null

# 4. List available teams (if authenticated)
vercel teams list --format json 2>/dev/null

Team selection

If the user belongs to multiple teams, present all available team slugs as a bulleted list and ask which one to deploy to. Once the user picks a team, proceed immediately to the next step — do not ask for additional confirmation.

Pass the team slug via --scope on all subsequent CLI commands (vercel deploy, vercel link, vercel inspect, etc.):

vercel deploy [path] -y --no-wait --scope <team-slug>

If the project is already linked (.vercel/project.json or .vercel/repo.json exists), the orgId in those files determines the team — no need to ask again. If there is only one team (or just a personal account), skip the prompt and use it directly.

About the .vercel/ directory: A linked project has either:

  • .vercel/project.json — created by vercel link (single project linking). Contains projectId and orgId.
  • .vercel/repo.json — created by vercel link --repo (repo-based linking). Contains orgId, remoteName, and a projects array mapping directories to Vercel project IDs.

Either file means the project is linked. Check for both.

Do NOT use vercel project inspect, vercel ls, or vercel link to detect state in an unlinked directory — without a .vercel/ config, they will interactively prompt (or with --yes, silently link as a side-effect). Only vercel whoami is safe to run anywhere.

Step 2: Choose a Deploy Method

Linked (.vercel/ exists) + has git remote → Git Push

This is the ideal state. The project is linked and has git integration.

  1. Ask the user before pushing. Never push without explicit approval:

    This project is connected to Vercel via git. I can commit and push to
    trigger a deployment. Want me to proceed?
  2. Commit and push:

    git add .
    git commit -m "deploy: <description of changes>"
    git push

    Vercel automatically builds from the push. Non-production branches get preview deployments; the production branch (usually main) gets a production deployment.

  3. Retrieve the preview URL. If the CLI is authenticated:

    sleep 5
    vercel ls --format json

    The JSON output has a deployments array. Find the latest entry — its url field is the preview URL.

    If the CLI is not authenticated, tell the user to check the Vercel dashboard or the commit status checks on their git provider for the preview URL.


Linked (.vercel/ exists) + no git remote → vercel deploy

The project is linked but there's no git repo. Deploy directly with the CLI.

vercel deploy [path] -y --no-wait

Use --no-wait so the CLI returns immediately with the deployment URL instead of blocking until the build finishes (builds can take a while). Then check on the deployment status with:

vercel inspect <deployment-url>

For production deploys (only if user explicitly asks):

vercel deploy [path] --prod -y --no-wait

Not linked + CLI is authenticated → Link first, then deploy

The CLI is working but the project isn't linked yet. This is the opportunity to get the user into the best state.

  1. Ask the user which team to deploy to. Present the team slugs from Step 1 as a bulleted list. If there's only one team (or just a personal account), skip this step.

  2. Once a team is selected, proceed directly to linking. Tell the user what will happen but do not ask for separate confirmation:

    Linking this project to <team name> on Vercel. This will create a Vercel
    project to deploy to and enable automatic deployments on future git pushes.
  3. If a git remote exists, use repo-based linking with the selected team scope:

    vercel link --repo --scope <team-slug>

    This reads the git remote URL and matches it to existing Vercel projects that deploy from that repo. It creates .vercel/repo.json. This is much more reliable than vercel link (without --repo), which tries to match by directory name and often fails when the local folder and Vercel project are named differently.

    If there is no git remote, fall back to standard linking:

    vercel link --scope <team-slug>

    This prompts the user to select or create a project. It creates .vercel/project.json.

  4. Then deploy using the best available method:

    • If a git remote exists → commit and push (see git push method above)
    • If no git remote → vercel deploy [path] -y --no-wait --scope <team-slug>, then vercel inspect <url> to check status

Not linked + CLI not authenticated → Install, auth, link, deploy

The Vercel CLI isn't set up at all.

  1. Install the CLI (if not already installed):

    npm install -g vercel
  2. Authenticate:

    vercel login

    The user completes auth in their browser. If running in a non-interactive environment where login is not possible, skip to the no-auth fallback below.

  3. Ask which team to deploy to — present team slugs from vercel teams list --format json as a bulleted list. If only one team / personal account, skip. Once selected, proceed immediately.

  4. Link the project with the selected team scope (use --repo if a git remote exists, plain vercel link otherwise):

    vercel link --repo --scope <team-slug>   # if git remote exists
    vercel link --scope <team-slug>          # if no git remote
  5. Deploy using the best available method (git push if remote exists, otherwise vercel deploy -y --no-wait --scope <team-slug>, then vercel inspect <url> to check status).


No-Auth Fallback — claude.ai sandbox

When to use: Last resort when the CLI can't be installed or authenticated in the claude.ai sandbox. This requires no authentication — it returns a Preview URL (live site) and a Claim URL (transfer to your Vercel account).

bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh [path]

Arguments:

  • path - Directory to deploy, or a .tgz file (defaults to current directory)

Examples:

# Deploy current directory
bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh

# Deploy specific project
bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh /path/to/project

# Deploy existing tarball
bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh /path/to/project.tgz

The script auto-detects the framework from package.json, packages the project (excluding node_modules, .git, .env), uploads it, and waits for the build to complete.

Tell the user: "Your deployment is ready at [previewUrl]. Claim it at [claimUrl] to manage your deployment."


No-Auth Fallback — Codex sandbox

When to use: In the Codex sandbox where the CLI may not be authenticated. Codex runs in a sandboxed environment by default — try the CLI first, and fall back to the deploy script if auth fails.

  1. Check whether the Vercel CLI is installed (no escalation needed for this check):

    command -v vercel
  2. If vercel is installed, try deploying with the CLI:

    vercel deploy [path] -y --no-wait
  3. If vercel is not installed, or the CLI fails with "No existing credentials found", use the fallback script:

    skill_dir="<path-to-skill>"
    
    # Deploy current directory
    bash "$skill_dir/resources/deploy-codex.sh"
    
    # Deploy specific project
    bash "$skill_dir/resources/deploy-codex.sh" /path/to/project
    
    # Deploy existing tarball
    bash "$skill_dir/resources/deploy-codex.sh" /path/to/project.tgz

The script handles framework detection, packaging, and deployment. It waits for the build to complete and returns JSON with previewUrl and claimUrl.

Tell the user: "Your deployment is ready at [previewUrl]. Claim it at [claimUrl] to manage your deployment."

Escalated network access: Only escalate the actual deploy command if sandboxing blocks the network call (sandbox_permissions=require_escalated). Do not escalate the command -v vercel check.


Agent-Specific Notes

Claude Code / terminal-based agents

You have full shell access. Do NOT use the /mnt/skills/ path. Follow the decision flow above using the CLI directly.

For the no-auth fallback, run the deploy script from the skill's installed location:

bash ~/.claude/skills/deploy-to-vercel/resources/deploy.sh [path]

The path may vary depending on where the user installed the skill.

Sandboxed environments (claude.ai)

You likely cannot run vercel login or git push. Go directly to the no-auth fallback — claude.ai sandbox.

Codex

Codex runs in a sandbox. Check if the CLI is available first, then fall back to the deploy script. Go to the no-auth fallback — Codex sandbox.


Output

Always show the user the deployment URL.

  • Git push: Use vercel ls --format json to find the preview URL. If the CLI isn't authenticated, tell the user to check the Vercel dashboard or commit status checks.

  • CLI deploy: Show the URL returned by vercel deploy --no-wait. Use vercel inspect <url> to check build status and report it to the user.

  • No-auth fallback: Show both the preview URL and the claim URL:

    Deployment successful!
    
    Preview URL: https://my-app-abc123.vercel.app
    Claim URL:   https://vercel.com/claim-deployment?code=...
    
    View your site at the Preview URL.
    To transfer this deployment to your Vercel account, visit the Claim URL.

Do not curl or fetch the deployed URL to verify it works. Just return the link.


Troubleshooting

Network Egress Error (claude.ai)

If deployment fails due to network restrictions on claude.ai, tell the user:

Deployment failed due to network restrictions. To fix this:

1. Go to https://claude.ai/settings/capabilities
2. Add *.vercel.com to the allowed domains
3. Try deploying again

Escalated Network Access (Codex / sandboxed environments)

If deployment fails due to network issues (timeouts, DNS errors, connection resets) in a sandboxed environment, rerun with escalated permissions (sandbox_permissions=require_escalated). Do not escalate the initial CLI availability check — only escalate the actual deploy command.

Example guidance to the user:

The deploy needs escalated network access to deploy to Vercel. I can rerun
the command with escalated permissions — want me to proceed?

CLI Auth Failure

If vercel login or vercel deploy fails with authentication errors, fall back to the no-auth deploy script (claude.ai or Codex variant, depending on the environment).