Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Deploy any project to Vercel (preview or production) with smart detection of git remotes and existing links
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: deploy-to-vercel3description: 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".4metadata:5author: vercel6version: "3.0.0"7---89# Deploy to Vercel1011Deploy any project to Vercel. **Always deploy as preview** (not production) unless the user explicitly asks for production.1213The 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.1415## Step 1: Gather Project State1617Run all four checks before deciding which method to use:1819```bash20# 1. Check for a git remote21git remote get-url origin 2>/dev/null2223# 2. Check if locally linked to a Vercel project (either file means linked)24cat .vercel/project.json 2>/dev/null || cat .vercel/repo.json 2>/dev/null2526# 3. Check if the Vercel CLI is installed and authenticated27vercel whoami 2>/dev/null2829# 4. List available teams (if authenticated)30vercel teams list --format json 2>/dev/null31```3233### Team selection3435If 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.3637Pass the team slug via `--scope` on all subsequent CLI commands (`vercel deploy`, `vercel link`, `vercel inspect`, etc.):3839```bash40vercel deploy [path] -y --no-wait --scope <team-slug>41```4243If 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.4445**About the `.vercel/` directory:** A linked project has either:46- `.vercel/project.json` — created by `vercel link` (single project linking). Contains `projectId` and `orgId`.47- `.vercel/repo.json` — created by `vercel link --repo` (repo-based linking). Contains `orgId`, `remoteName`, and a `projects` array mapping directories to Vercel project IDs.4849Either file means the project is linked. Check for both.5051**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.5253## Step 2: Choose a Deploy Method5455### Linked (`.vercel/` exists) + has git remote → Git Push5657This is the ideal state. The project is linked and has git integration.58591. **Ask the user before pushing.** Never push without explicit approval:60```61This project is connected to Vercel via git. I can commit and push to62trigger a deployment. Want me to proceed?63```64652. **Commit and push:**66```bash67git add .68git commit -m "deploy: <description of changes>"69git push70```71Vercel automatically builds from the push. Non-production branches get preview deployments; the production branch (usually `main`) gets a production deployment.72733. **Retrieve the preview URL.** If the CLI is authenticated:74```bash75sleep 576vercel ls --format json77```78The JSON output has a `deployments` array. Find the latest entry — its `url` field is the preview URL.7980If 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.8182---8384### Linked (`.vercel/` exists) + no git remote → `vercel deploy`8586The project is linked but there's no git repo. Deploy directly with the CLI.8788```bash89vercel deploy [path] -y --no-wait90```9192Use `--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:9394```bash95vercel inspect <deployment-url>96```9798For production deploys (only if user explicitly asks):99```bash100vercel deploy [path] --prod -y --no-wait101```102103---104105### Not linked + CLI is authenticated → Link first, then deploy106107The CLI is working but the project isn't linked yet. This is the opportunity to get the user into the best state.1081091. **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.1101112. **Once a team is selected, proceed directly to linking.** Tell the user what will happen but do not ask for separate confirmation:112```113Linking this project to <team name> on Vercel. This will create a Vercel114project to deploy to and enable automatic deployments on future git pushes.115```1161173. **If a git remote exists**, use repo-based linking with the selected team scope:118```bash119vercel link --repo --scope <team-slug>120```121This 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.122123**If there is no git remote**, fall back to standard linking:124```bash125vercel link --scope <team-slug>126```127This prompts the user to select or create a project. It creates `.vercel/project.json`.1281294. **Then deploy using the best available method:**130- If a git remote exists → commit and push (see git push method above)131- If no git remote → `vercel deploy [path] -y --no-wait --scope <team-slug>`, then `vercel inspect <url>` to check status132133---134135### Not linked + CLI not authenticated → Install, auth, link, deploy136137The Vercel CLI isn't set up at all.1381391. **Install the CLI (if not already installed):**140```bash141npm install -g vercel142```1431442. **Authenticate:**145```bash146vercel login147```148The 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.1491503. **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.1511524. **Link the project** with the selected team scope (use `--repo` if a git remote exists, plain `vercel link` otherwise):153```bash154vercel link --repo --scope <team-slug> # if git remote exists155vercel link --scope <team-slug> # if no git remote156```1571585. **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).159160---161162### No-Auth Fallback — claude.ai sandbox163164**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).165166```bash167bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh [path]168```169170**Arguments:**171- `path` - Directory to deploy, or a `.tgz` file (defaults to current directory)172173**Examples:**174```bash175# Deploy current directory176bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh177178# Deploy specific project179bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh /path/to/project180181# Deploy existing tarball182bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh /path/to/project.tgz183```184185The 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.186187**Tell the user:** "Your deployment is ready at [previewUrl]. Claim it at [claimUrl] to manage your deployment."188189---190191### No-Auth Fallback — Codex sandbox192193**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.1941951. **Check whether the Vercel CLI is installed** (no escalation needed for this check):196```bash197command -v vercel198```1992002. **If `vercel` is installed**, try deploying with the CLI:201```bash202vercel deploy [path] -y --no-wait203```2042053. **If `vercel` is not installed, or the CLI fails with "No existing credentials found"**, use the fallback script:206```bash207skill_dir="<path-to-skill>"208209# Deploy current directory210bash "$skill_dir/resources/deploy-codex.sh"211212# Deploy specific project213bash "$skill_dir/resources/deploy-codex.sh" /path/to/project214215# Deploy existing tarball216bash "$skill_dir/resources/deploy-codex.sh" /path/to/project.tgz217```218219The script handles framework detection, packaging, and deployment. It waits for the build to complete and returns JSON with `previewUrl` and `claimUrl`.220221**Tell the user:** "Your deployment is ready at [previewUrl]. Claim it at [claimUrl] to manage your deployment."222223**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.224225---226227## Agent-Specific Notes228229### Claude Code / terminal-based agents230231You have full shell access. Do NOT use the `/mnt/skills/` path. Follow the decision flow above using the CLI directly.232233For the no-auth fallback, run the deploy script from the skill's installed location:234```bash235bash ~/.claude/skills/deploy-to-vercel/resources/deploy.sh [path]236```237The path may vary depending on where the user installed the skill.238239### Sandboxed environments (claude.ai)240241You likely cannot run `vercel login` or `git push`. Go directly to the **no-auth fallback — claude.ai sandbox**.242243### Codex244245Codex 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**.246247---248249## Output250251Always show the user the deployment URL.252253- **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.254- **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.255- **No-auth fallback:** Show both the preview URL and the claim URL:256```257Deployment successful!258259Preview URL: https://my-app-abc123.vercel.app260Claim URL: https://vercel.com/claim-deployment?code=...261262View your site at the Preview URL.263To transfer this deployment to your Vercel account, visit the Claim URL.264```265266**Do not** curl or fetch the deployed URL to verify it works. Just return the link.267268---269270## Troubleshooting271272### Network Egress Error (claude.ai)273274If deployment fails due to network restrictions on claude.ai, tell the user:275276```277Deployment failed due to network restrictions. To fix this:2782791. Go to https://claude.ai/settings/capabilities2802. Add *.vercel.com to the allowed domains2813. Try deploying again282```283284### Escalated Network Access (Codex / sandboxed environments)285286If 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.287288Example guidance to the user:289```290The deploy needs escalated network access to deploy to Vercel. I can rerun291the command with escalated permissions — want me to proceed?292```293294### CLI Auth Failure295296If `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).297