[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-vercel-cli-with-tokens":3,"mdc--94buc4-key":33,"related-org-vercel-labs-vercel-cli-with-tokens":3440,"related-repo-vercel-labs-vercel-cli-with-tokens":3602},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"vercel-cli-with-tokens","manage Vercel projects via CLI","Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,16,19],{"name":13,"slug":14,"type":15},"Vercel","vercel","tag",{"name":17,"slug":18,"type":15},"CLI","cli",{"name":20,"slug":21,"type":15},"Deployment","deployment",28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.84179",null,2597,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Vercel's official collection of agent skills","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fvercel-cli-with-tokens","---\nname: vercel-cli-with-tokens\ndescription: Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".\nmetadata:\n  author: vercel\n  version: \"1.0.0\"\n---\n\n# Vercel CLI with Tokens\n\nDeploy and manage projects on Vercel using the CLI with token-based authentication, without relying on `vercel login`.\n\n## Step 1: Locate the Vercel Token\n\nBefore running any Vercel CLI commands, identify where the token is coming from. Work through these scenarios in order:\n\n### A) `VERCEL_TOKEN` is already set in the environment\n\n```bash\nprintenv VERCEL_TOKEN\n```\n\nIf this returns a value, you're ready. Skip to Step 2.\n\n### B) Token is in a `.env` file under `VERCEL_TOKEN`\n\n```bash\ngrep '^VERCEL_TOKEN=' .env 2>\u002Fdev\u002Fnull\n```\n\nIf found, export it:\n\n```bash\nexport VERCEL_TOKEN=$(grep '^VERCEL_TOKEN=' .env | cut -d= -f2-)\n```\n\n### C) Token is in a `.env` file under a different name\n\nLook for any variable that looks like a Vercel token (Vercel tokens typically start with `vca_`):\n\n```bash\ngrep -i 'vercel' .env 2>\u002Fdev\u002Fnull\n```\n\nInspect the output to identify which variable holds the token, then export it as `VERCEL_TOKEN`:\n\n```bash\nexport VERCEL_TOKEN=$(grep '^\u003CVARIABLE_NAME>=' .env | cut -d= -f2-)\n```\n\n### D) No token found — ask the user\n\nIf none of the above yield a token, ask the user to provide one. They can create a Vercel access token at vercel.com\u002Faccount\u002Ftokens.\n\n---\n\n**Important:** Once `VERCEL_TOKEN` is exported as an environment variable, the Vercel CLI reads it natively — **do not pass it as a `--token` flag**. Putting secrets in command-line arguments exposes them in shell history and process listings.\n\n```bash\n# Bad — token visible in shell history and process listings\nvercel deploy --token \"vca_abc123\"\n\n# Good — CLI reads VERCEL_TOKEN from the environment\nexport VERCEL_TOKEN=\"vca_abc123\"\nvercel deploy\n```\n\n## Step 2: Locate the Project and Team\n\nSimilarly, check for the project ID and team scope. These let the CLI target the right project without needing `vercel link`.\n\n```bash\n# Check environment\nprintenv VERCEL_PROJECT_ID\nprintenv VERCEL_ORG_ID\n\n# Or check .env\ngrep -i 'vercel' .env 2>\u002Fdev\u002Fnull\n```\n\n**If you have a project URL** (e.g. `https:\u002F\u002Fvercel.com\u002Fmy-team\u002Fmy-project`), extract the team slug:\n\n```bash\n# e.g. \"my-team\" from \"https:\u002F\u002Fvercel.com\u002Fmy-team\u002Fmy-project\"\necho \"$PROJECT_URL\" | sed 's|https:\u002F\u002Fvercel.com\u002F||' | cut -d\u002F -f1\n```\n\n**If you have both `VERCEL_ORG_ID` and `VERCEL_PROJECT_ID` in your environment**, export them — the CLI will use these automatically and skip any `.vercel\u002F` directory:\n\n```bash\nexport VERCEL_ORG_ID=\"\u003Corg-id>\"\nexport VERCEL_PROJECT_ID=\"\u003Cproject-id>\"\n```\n\nNote: `VERCEL_ORG_ID` and `VERCEL_PROJECT_ID` must be set together — setting only one causes an error.\n\n## CLI Setup\n\nEnsure the Vercel CLI is installed and up to date:\n\n```bash\nnpm install -g vercel\nvercel --version\n```\n\n## Deploying a Project\n\nAlways deploy as **preview** unless the user explicitly requests production. Choose a method based on what you have available.\n\n### Quick Deploy (have project ID — no linking needed)\n\nWhen `VERCEL_TOKEN` and `VERCEL_PROJECT_ID` are set in the environment, deploy directly:\n\n```bash\nvercel deploy -y --no-wait\n```\n\nWith a team scope (either via `VERCEL_ORG_ID` or `--scope`):\n\n```bash\nvercel deploy --scope \u003Cteam-slug> -y --no-wait\n```\n\nProduction (only when explicitly requested):\n\n```bash\nvercel deploy --prod --scope \u003Cteam-slug> -y --no-wait\n```\n\nCheck status:\n\n```bash\nvercel inspect \u003Cdeployment-url>\n```\n\n### Full Deploy Flow (no project ID — need to link)\n\nUse this when you have a token and team but no pre-existing project ID.\n\n#### Check project state first\n\n```bash\n# Does the project have a git remote?\ngit remote get-url origin 2>\u002Fdev\u002Fnull\n\n# Is it already linked to a Vercel project?\ncat .vercel\u002Fproject.json 2>\u002Fdev\u002Fnull || cat .vercel\u002Frepo.json 2>\u002Fdev\u002Fnull\n```\n\n#### Link the project\n\n**With git remote (preferred):**\n\n```bash\nvercel link --repo --scope \u003Cteam-slug> -y\n```\n\nReads the git remote and connects to the matching Vercel project. Creates `.vercel\u002Frepo.json`. More reliable than plain `vercel link`, which matches by directory name.\n\n**Without git remote:**\n\n```bash\nvercel link --scope \u003Cteam-slug> -y\n```\n\nCreates `.vercel\u002Fproject.json`.\n\n**Link to a specific project by name:**\n\n```bash\nvercel link --project \u003Cproject-name> --scope \u003Cteam-slug> -y\n```\n\nIf the project is already linked, check `orgId` in `.vercel\u002Fproject.json` or `.vercel\u002Frepo.json` to verify it matches the intended team.\n\n#### Deploy after linking\n\n**A) Git Push Deploy — has git remote (preferred)**\n\nGit pushes trigger automatic Vercel deployments.\n\n1. **Ask the user before pushing.** Never push without explicit approval.\n2. Commit and push:\n   ```bash\n   git add .\n   git commit -m \"deploy: \u003Cdescription of changes>\"\n   git push\n   ```\n3. Vercel builds automatically. Non-production branches get preview deployments.\n4. Retrieve the deployment URL:\n   ```bash\n   sleep 5\n   vercel ls --format json --scope \u003Cteam-slug>\n   ```\n   Find the latest entry in the `deployments` array.\n\n**B) CLI Deploy — no git remote**\n\n```bash\nvercel deploy --scope \u003Cteam-slug> -y --no-wait\n```\n\nCheck status:\n\n```bash\nvercel inspect \u003Cdeployment-url>\n```\n\n### Deploying from a Remote Repository (code not cloned locally)\n\n1. Clone the repository:\n   ```bash\n   git clone \u003Crepo-url>\n   cd \u003Crepo-name>\n   ```\n2. Link to Vercel:\n   ```bash\n   vercel link --repo --scope \u003Cteam-slug> -y\n   ```\n3. Deploy via git push (if you have push access) or CLI deploy.\n\n### About `.vercel\u002F` Directory\n\nA linked project has either:\n- `.vercel\u002Fproject.json` — from `vercel link`. Contains `projectId` and `orgId`.\n- `.vercel\u002Frepo.json` — from `vercel link --repo`. Contains `orgId`, `remoteName`, and a `projects` map.\n\nNot needed when `VERCEL_ORG_ID` + `VERCEL_PROJECT_ID` are both set in the environment.\n\n**Do NOT** run `vercel project inspect` or `vercel link` in an unlinked directory to detect state — they will interactively prompt or silently link as a side-effect. `vercel ls` is safe (in an unlinked directory it defaults to showing all deployments for the scope). `vercel whoami` is safe anywhere.\n\n## Managing Environment Variables\n\n```bash\n# Set for all environments\necho \"value\" | vercel env add VAR_NAME --scope \u003Cteam-slug>\n\n# Set for a specific environment (production, preview, development)\necho \"value\" | vercel env add VAR_NAME production --scope \u003Cteam-slug>\n\n# List environment variables\nvercel env ls --scope \u003Cteam-slug>\n\n# Pull env vars to local .env.local file\nvercel env pull --scope \u003Cteam-slug>\n\n# Remove a variable\nvercel env rm VAR_NAME --scope \u003Cteam-slug> -y\n```\n\n## Inspecting Deployments\n\n```bash\n# List recent deployments\nvercel ls --format json --scope \u003Cteam-slug>\n\n# Inspect a specific deployment\nvercel inspect \u003Cdeployment-url>\n\n# View build logs (requires Vercel CLI v35+)\nvercel inspect \u003Cdeployment-url> --logs\n\n# View runtime request logs (follows live by default; add --no-follow for a one-shot snapshot)\nvercel logs \u003Cdeployment-url>\n```\n\n## Managing Domains\n\n```bash\n# List domains\nvercel domains ls --scope \u003Cteam-slug>\n\n# Add a domain to the project — linked or env-linked directory (1 arg)\nvercel domains add \u003Cdomain> --scope \u003Cteam-slug>\n\n# Add a domain — unlinked directory (requires \u003Cproject> positional)\nvercel domains add \u003Cdomain> \u003Cproject> --scope \u003Cteam-slug>\n```\n\n## Stripe Projects Plan Changes\n\nIf this project is managed by Stripe Projects. **Ask the user before running any paid or destructive plan change** — upgrades bill a real card, downgrades remove seats.\n\nFirst run `stripe projects status --json` to confirm the Vercel resource's local name. The examples below assume the default (`vercel-plan`); substitute the actual name if it was renamed at `stripe projects add` time.\n\n- **Upgrade to Pro:** `stripe projects add vercel\u002Fpro` (or `stripe projects upgrade vercel-plan pro`)\n- **Downgrade to Hobby:** `stripe projects downgrade vercel-plan hobby`\n\n### What Pro gives you\n\n- $20\u002Fmonth platform fee, includes $20\u002Fmonth of usage credit.\n- Turbo build machines (30 vCPUs, 60 GB memory) by default for new projects — significantly faster builds than Hobby.\n- 1 deploying seat + unlimited free Viewer seats (read-only collaborators, preview comments).\n- Higher included allocations (1 TB Fast Data Transfer, 10M Edge Requests per month).\n- Paid add-ons available: SAML SSO, HIPAA BAA, Flags Explorer, Observability Plus, Speed Insights, Web Analytics Plus.\n\nFull details: https:\u002F\u002Fvercel.com\u002Fdocs\u002Fplans\u002Fpro-plan\n\n## Working Agreement\n\n- **Never pass `VERCEL_TOKEN` as a `--token` flag.** Export it as an environment variable and let the CLI read it natively.\n- **Check the environment for tokens before asking the user.** Look in the current env and `.env` files first.\n- **Default to preview deployments.** Only deploy to production when explicitly asked.\n- **Ask before pushing to git.** Never push commits without the user's approval.\n- **Do not modify `.vercel\u002F` files directly.** The CLI manages this directory. Reading them (e.g. to verify `orgId`) is fine.\n- **Do not curl\u002Ffetch deployed URLs to verify.** Just return the link to the user.\n- **Use `--format json`** when structured output will help with follow-up steps.\n- **Use `-y`** on commands that prompt for confirmation to avoid interactive blocking.\n\n## Troubleshooting\n\n### Token not found\n\nCheck the environment and any `.env` files present:\n\n```bash\nprintenv | grep -i vercel\ngrep -i vercel .env 2>\u002Fdev\u002Fnull\n```\n\n### Authentication error\n\nIf the CLI fails with `Authentication required`:\n- The token may be expired or invalid.\n- Verify: `vercel whoami` (uses `VERCEL_TOKEN` from environment).\n- Ask the user for a fresh token.\n\n### Wrong team\n\nVerify the scope is correct:\n\n```bash\nvercel whoami --scope \u003Cteam-slug>\n```\n\n### Build failure\n\nCheck the build logs:\n\n```bash\nvercel inspect \u003Cdeployment-url> --logs\n```\n\nCommon causes:\n- Missing dependencies — ensure `package.json` is complete and committed.\n- Missing environment variables — add with `vercel env add`.\n- Framework misconfiguration — check `vercel.json`. Vercel auto-detects frameworks (Next.js, Remix, Vite, etc.) from `package.json`; override with `vercel.json` if detection is wrong.\n\n### CLI not installed\n\n```bash\nnpm install -g vercel\n```\n",{"data":34,"body":37},{"name":4,"description":6,"metadata":35},{"author":14,"version":36},"1.0.0",{"type":38,"children":39},"root",[40,48,63,70,75,90,119,124,143,189,194,266,279,292,335,347,410,416,421,425,458,569,575,587,676,694,771,805,870,888,894,899,941,947,959,965,983,1011,1030,1081,1086,1137,1142,1180,1186,1191,1198,1304,1310,1318,1367,1387,1395,1437,1449,1457,1522,1548,1554,1562,1567,1736,1744,1789,1793,1826,1832,1956,1969,1974,2047,2066,2106,2112,2437,2443,2629,2635,2838,2844,2856,2885,2929,2935,2963,2976,2982,3111,3117,3123,3135,3193,3199,3211,3243,3249,3254,3293,3299,3304,3342,3347,3402,3408,3434],{"type":41,"tag":42,"props":43,"children":44},"element","h1",{"id":4},[45],{"type":46,"value":47},"text","Vercel CLI with Tokens",{"type":41,"tag":49,"props":50,"children":51},"p",{},[52,54,61],{"type":46,"value":53},"Deploy and manage projects on Vercel using the CLI with token-based authentication, without relying on ",{"type":41,"tag":55,"props":56,"children":58},"code",{"className":57},[],[59],{"type":46,"value":60},"vercel login",{"type":46,"value":62},".",{"type":41,"tag":64,"props":65,"children":67},"h2",{"id":66},"step-1-locate-the-vercel-token",[68],{"type":46,"value":69},"Step 1: Locate the Vercel Token",{"type":41,"tag":49,"props":71,"children":72},{},[73],{"type":46,"value":74},"Before running any Vercel CLI commands, identify where the token is coming from. Work through these scenarios in order:",{"type":41,"tag":76,"props":77,"children":79},"h3",{"id":78},"a-vercel_token-is-already-set-in-the-environment",[80,82,88],{"type":46,"value":81},"A) ",{"type":41,"tag":55,"props":83,"children":85},{"className":84},[],[86],{"type":46,"value":87},"VERCEL_TOKEN",{"type":46,"value":89}," is already set in the environment",{"type":41,"tag":91,"props":92,"children":97},"pre",{"className":93,"code":94,"language":95,"meta":96,"style":96},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","printenv VERCEL_TOKEN\n","bash","",[98],{"type":41,"tag":55,"props":99,"children":100},{"__ignoreMap":96},[101],{"type":41,"tag":102,"props":103,"children":106},"span",{"class":104,"line":105},"line",1,[107,113],{"type":41,"tag":102,"props":108,"children":110},{"style":109},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[111],{"type":46,"value":112},"printenv",{"type":41,"tag":102,"props":114,"children":116},{"style":115},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[117],{"type":46,"value":118}," VERCEL_TOKEN\n",{"type":41,"tag":49,"props":120,"children":121},{},[122],{"type":46,"value":123},"If this returns a value, you're ready. Skip to Step 2.",{"type":41,"tag":76,"props":125,"children":127},{"id":126},"b-token-is-in-a-env-file-under-vercel_token",[128,130,136,138],{"type":46,"value":129},"B) Token is in a ",{"type":41,"tag":55,"props":131,"children":133},{"className":132},[],[134],{"type":46,"value":135},".env",{"type":46,"value":137}," file under ",{"type":41,"tag":55,"props":139,"children":141},{"className":140},[],[142],{"type":46,"value":87},{"type":41,"tag":91,"props":144,"children":146},{"className":93,"code":145,"language":95,"meta":96,"style":96},"grep '^VERCEL_TOKEN=' .env 2>\u002Fdev\u002Fnull\n",[147],{"type":41,"tag":55,"props":148,"children":149},{"__ignoreMap":96},[150],{"type":41,"tag":102,"props":151,"children":152},{"class":104,"line":105},[153,158,164,169,174,179,184],{"type":41,"tag":102,"props":154,"children":155},{"style":109},[156],{"type":46,"value":157},"grep",{"type":41,"tag":102,"props":159,"children":161},{"style":160},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[162],{"type":46,"value":163}," '",{"type":41,"tag":102,"props":165,"children":166},{"style":115},[167],{"type":46,"value":168},"^VERCEL_TOKEN=",{"type":41,"tag":102,"props":170,"children":171},{"style":160},[172],{"type":46,"value":173},"'",{"type":41,"tag":102,"props":175,"children":176},{"style":115},[177],{"type":46,"value":178}," .env",{"type":41,"tag":102,"props":180,"children":181},{"style":160},[182],{"type":46,"value":183}," 2>",{"type":41,"tag":102,"props":185,"children":186},{"style":115},[187],{"type":46,"value":188},"\u002Fdev\u002Fnull\n",{"type":41,"tag":49,"props":190,"children":191},{},[192],{"type":46,"value":193},"If found, export it:",{"type":41,"tag":91,"props":195,"children":197},{"className":93,"code":196,"language":95,"meta":96,"style":96},"export VERCEL_TOKEN=$(grep '^VERCEL_TOKEN=' .env | cut -d= -f2-)\n",[198],{"type":41,"tag":55,"props":199,"children":200},{"__ignoreMap":96},[201],{"type":41,"tag":102,"props":202,"children":203},{"class":104,"line":105},[204,210,216,221,225,229,233,237,241,246,251,256,261],{"type":41,"tag":102,"props":205,"children":207},{"style":206},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[208],{"type":46,"value":209},"export",{"type":41,"tag":102,"props":211,"children":213},{"style":212},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[214],{"type":46,"value":215}," VERCEL_TOKEN",{"type":41,"tag":102,"props":217,"children":218},{"style":160},[219],{"type":46,"value":220},"=$(",{"type":41,"tag":102,"props":222,"children":223},{"style":109},[224],{"type":46,"value":157},{"type":41,"tag":102,"props":226,"children":227},{"style":160},[228],{"type":46,"value":163},{"type":41,"tag":102,"props":230,"children":231},{"style":115},[232],{"type":46,"value":168},{"type":41,"tag":102,"props":234,"children":235},{"style":160},[236],{"type":46,"value":173},{"type":41,"tag":102,"props":238,"children":239},{"style":115},[240],{"type":46,"value":178},{"type":41,"tag":102,"props":242,"children":243},{"style":160},[244],{"type":46,"value":245}," |",{"type":41,"tag":102,"props":247,"children":248},{"style":109},[249],{"type":46,"value":250}," cut",{"type":41,"tag":102,"props":252,"children":253},{"style":115},[254],{"type":46,"value":255}," -d=",{"type":41,"tag":102,"props":257,"children":258},{"style":115},[259],{"type":46,"value":260}," -f2-",{"type":41,"tag":102,"props":262,"children":263},{"style":160},[264],{"type":46,"value":265},")\n",{"type":41,"tag":76,"props":267,"children":269},{"id":268},"c-token-is-in-a-env-file-under-a-different-name",[270,272,277],{"type":46,"value":271},"C) Token is in a ",{"type":41,"tag":55,"props":273,"children":275},{"className":274},[],[276],{"type":46,"value":135},{"type":46,"value":278}," file under a different name",{"type":41,"tag":49,"props":280,"children":281},{},[282,284,290],{"type":46,"value":283},"Look for any variable that looks like a Vercel token (Vercel tokens typically start with ",{"type":41,"tag":55,"props":285,"children":287},{"className":286},[],[288],{"type":46,"value":289},"vca_",{"type":46,"value":291},"):",{"type":41,"tag":91,"props":293,"children":295},{"className":93,"code":294,"language":95,"meta":96,"style":96},"grep -i 'vercel' .env 2>\u002Fdev\u002Fnull\n",[296],{"type":41,"tag":55,"props":297,"children":298},{"__ignoreMap":96},[299],{"type":41,"tag":102,"props":300,"children":301},{"class":104,"line":105},[302,306,311,315,319,323,327,331],{"type":41,"tag":102,"props":303,"children":304},{"style":109},[305],{"type":46,"value":157},{"type":41,"tag":102,"props":307,"children":308},{"style":115},[309],{"type":46,"value":310}," -i",{"type":41,"tag":102,"props":312,"children":313},{"style":160},[314],{"type":46,"value":163},{"type":41,"tag":102,"props":316,"children":317},{"style":115},[318],{"type":46,"value":14},{"type":41,"tag":102,"props":320,"children":321},{"style":160},[322],{"type":46,"value":173},{"type":41,"tag":102,"props":324,"children":325},{"style":115},[326],{"type":46,"value":178},{"type":41,"tag":102,"props":328,"children":329},{"style":160},[330],{"type":46,"value":183},{"type":41,"tag":102,"props":332,"children":333},{"style":115},[334],{"type":46,"value":188},{"type":41,"tag":49,"props":336,"children":337},{},[338,340,345],{"type":46,"value":339},"Inspect the output to identify which variable holds the token, then export it as ",{"type":41,"tag":55,"props":341,"children":343},{"className":342},[],[344],{"type":46,"value":87},{"type":46,"value":346},":",{"type":41,"tag":91,"props":348,"children":350},{"className":93,"code":349,"language":95,"meta":96,"style":96},"export VERCEL_TOKEN=$(grep '^\u003CVARIABLE_NAME>=' .env | cut -d= -f2-)\n",[351],{"type":41,"tag":55,"props":352,"children":353},{"__ignoreMap":96},[354],{"type":41,"tag":102,"props":355,"children":356},{"class":104,"line":105},[357,361,365,369,373,377,382,386,390,394,398,402,406],{"type":41,"tag":102,"props":358,"children":359},{"style":206},[360],{"type":46,"value":209},{"type":41,"tag":102,"props":362,"children":363},{"style":212},[364],{"type":46,"value":215},{"type":41,"tag":102,"props":366,"children":367},{"style":160},[368],{"type":46,"value":220},{"type":41,"tag":102,"props":370,"children":371},{"style":109},[372],{"type":46,"value":157},{"type":41,"tag":102,"props":374,"children":375},{"style":160},[376],{"type":46,"value":163},{"type":41,"tag":102,"props":378,"children":379},{"style":115},[380],{"type":46,"value":381},"^\u003CVARIABLE_NAME>=",{"type":41,"tag":102,"props":383,"children":384},{"style":160},[385],{"type":46,"value":173},{"type":41,"tag":102,"props":387,"children":388},{"style":115},[389],{"type":46,"value":178},{"type":41,"tag":102,"props":391,"children":392},{"style":160},[393],{"type":46,"value":245},{"type":41,"tag":102,"props":395,"children":396},{"style":109},[397],{"type":46,"value":250},{"type":41,"tag":102,"props":399,"children":400},{"style":115},[401],{"type":46,"value":255},{"type":41,"tag":102,"props":403,"children":404},{"style":115},[405],{"type":46,"value":260},{"type":41,"tag":102,"props":407,"children":408},{"style":160},[409],{"type":46,"value":265},{"type":41,"tag":76,"props":411,"children":413},{"id":412},"d-no-token-found-ask-the-user",[414],{"type":46,"value":415},"D) No token found — ask the user",{"type":41,"tag":49,"props":417,"children":418},{},[419],{"type":46,"value":420},"If none of the above yield a token, ask the user to provide one. They can create a Vercel access token at vercel.com\u002Faccount\u002Ftokens.",{"type":41,"tag":422,"props":423,"children":424},"hr",{},[],{"type":41,"tag":49,"props":426,"children":427},{},[428,434,436,441,443,456],{"type":41,"tag":429,"props":430,"children":431},"strong",{},[432],{"type":46,"value":433},"Important:",{"type":46,"value":435}," Once ",{"type":41,"tag":55,"props":437,"children":439},{"className":438},[],[440],{"type":46,"value":87},{"type":46,"value":442}," is exported as an environment variable, the Vercel CLI reads it natively — ",{"type":41,"tag":429,"props":444,"children":445},{},[446,448,454],{"type":46,"value":447},"do not pass it as a ",{"type":41,"tag":55,"props":449,"children":451},{"className":450},[],[452],{"type":46,"value":453},"--token",{"type":46,"value":455}," flag",{"type":46,"value":457},". Putting secrets in command-line arguments exposes them in shell history and process listings.",{"type":41,"tag":91,"props":459,"children":461},{"className":93,"code":460,"language":95,"meta":96,"style":96},"# Bad — token visible in shell history and process listings\nvercel deploy --token \"vca_abc123\"\n\n# Good — CLI reads VERCEL_TOKEN from the environment\nexport VERCEL_TOKEN=\"vca_abc123\"\nvercel deploy\n",[462],{"type":41,"tag":55,"props":463,"children":464},{"__ignoreMap":96},[465,474,507,517,526,556],{"type":41,"tag":102,"props":466,"children":467},{"class":104,"line":105},[468],{"type":41,"tag":102,"props":469,"children":471},{"style":470},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[472],{"type":46,"value":473},"# Bad — token visible in shell history and process listings\n",{"type":41,"tag":102,"props":475,"children":477},{"class":104,"line":476},2,[478,482,487,492,497,502],{"type":41,"tag":102,"props":479,"children":480},{"style":109},[481],{"type":46,"value":14},{"type":41,"tag":102,"props":483,"children":484},{"style":115},[485],{"type":46,"value":486}," deploy",{"type":41,"tag":102,"props":488,"children":489},{"style":115},[490],{"type":46,"value":491}," --token",{"type":41,"tag":102,"props":493,"children":494},{"style":160},[495],{"type":46,"value":496}," \"",{"type":41,"tag":102,"props":498,"children":499},{"style":115},[500],{"type":46,"value":501},"vca_abc123",{"type":41,"tag":102,"props":503,"children":504},{"style":160},[505],{"type":46,"value":506},"\"\n",{"type":41,"tag":102,"props":508,"children":510},{"class":104,"line":509},3,[511],{"type":41,"tag":102,"props":512,"children":514},{"emptyLinePlaceholder":513},true,[515],{"type":46,"value":516},"\n",{"type":41,"tag":102,"props":518,"children":520},{"class":104,"line":519},4,[521],{"type":41,"tag":102,"props":522,"children":523},{"style":470},[524],{"type":46,"value":525},"# Good — CLI reads VERCEL_TOKEN from the environment\n",{"type":41,"tag":102,"props":527,"children":529},{"class":104,"line":528},5,[530,534,538,543,548,552],{"type":41,"tag":102,"props":531,"children":532},{"style":206},[533],{"type":46,"value":209},{"type":41,"tag":102,"props":535,"children":536},{"style":212},[537],{"type":46,"value":215},{"type":41,"tag":102,"props":539,"children":540},{"style":160},[541],{"type":46,"value":542},"=",{"type":41,"tag":102,"props":544,"children":545},{"style":160},[546],{"type":46,"value":547},"\"",{"type":41,"tag":102,"props":549,"children":550},{"style":115},[551],{"type":46,"value":501},{"type":41,"tag":102,"props":553,"children":554},{"style":160},[555],{"type":46,"value":506},{"type":41,"tag":102,"props":557,"children":559},{"class":104,"line":558},6,[560,564],{"type":41,"tag":102,"props":561,"children":562},{"style":109},[563],{"type":46,"value":14},{"type":41,"tag":102,"props":565,"children":566},{"style":115},[567],{"type":46,"value":568}," deploy\n",{"type":41,"tag":64,"props":570,"children":572},{"id":571},"step-2-locate-the-project-and-team",[573],{"type":46,"value":574},"Step 2: Locate the Project and Team",{"type":41,"tag":49,"props":576,"children":577},{},[578,580,586],{"type":46,"value":579},"Similarly, check for the project ID and team scope. These let the CLI target the right project without needing ",{"type":41,"tag":55,"props":581,"children":583},{"className":582},[],[584],{"type":46,"value":585},"vercel link",{"type":46,"value":62},{"type":41,"tag":91,"props":588,"children":590},{"className":93,"code":589,"language":95,"meta":96,"style":96},"# Check environment\nprintenv VERCEL_PROJECT_ID\nprintenv VERCEL_ORG_ID\n\n# Or check .env\ngrep -i 'vercel' .env 2>\u002Fdev\u002Fnull\n",[591],{"type":41,"tag":55,"props":592,"children":593},{"__ignoreMap":96},[594,602,614,626,633,641],{"type":41,"tag":102,"props":595,"children":596},{"class":104,"line":105},[597],{"type":41,"tag":102,"props":598,"children":599},{"style":470},[600],{"type":46,"value":601},"# Check environment\n",{"type":41,"tag":102,"props":603,"children":604},{"class":104,"line":476},[605,609],{"type":41,"tag":102,"props":606,"children":607},{"style":109},[608],{"type":46,"value":112},{"type":41,"tag":102,"props":610,"children":611},{"style":115},[612],{"type":46,"value":613}," VERCEL_PROJECT_ID\n",{"type":41,"tag":102,"props":615,"children":616},{"class":104,"line":509},[617,621],{"type":41,"tag":102,"props":618,"children":619},{"style":109},[620],{"type":46,"value":112},{"type":41,"tag":102,"props":622,"children":623},{"style":115},[624],{"type":46,"value":625}," VERCEL_ORG_ID\n",{"type":41,"tag":102,"props":627,"children":628},{"class":104,"line":519},[629],{"type":41,"tag":102,"props":630,"children":631},{"emptyLinePlaceholder":513},[632],{"type":46,"value":516},{"type":41,"tag":102,"props":634,"children":635},{"class":104,"line":528},[636],{"type":41,"tag":102,"props":637,"children":638},{"style":470},[639],{"type":46,"value":640},"# Or check .env\n",{"type":41,"tag":102,"props":642,"children":643},{"class":104,"line":558},[644,648,652,656,660,664,668,672],{"type":41,"tag":102,"props":645,"children":646},{"style":109},[647],{"type":46,"value":157},{"type":41,"tag":102,"props":649,"children":650},{"style":115},[651],{"type":46,"value":310},{"type":41,"tag":102,"props":653,"children":654},{"style":160},[655],{"type":46,"value":163},{"type":41,"tag":102,"props":657,"children":658},{"style":115},[659],{"type":46,"value":14},{"type":41,"tag":102,"props":661,"children":662},{"style":160},[663],{"type":46,"value":173},{"type":41,"tag":102,"props":665,"children":666},{"style":115},[667],{"type":46,"value":178},{"type":41,"tag":102,"props":669,"children":670},{"style":160},[671],{"type":46,"value":183},{"type":41,"tag":102,"props":673,"children":674},{"style":115},[675],{"type":46,"value":188},{"type":41,"tag":49,"props":677,"children":678},{},[679,684,686,692],{"type":41,"tag":429,"props":680,"children":681},{},[682],{"type":46,"value":683},"If you have a project URL",{"type":46,"value":685}," (e.g. ",{"type":41,"tag":55,"props":687,"children":689},{"className":688},[],[690],{"type":46,"value":691},"https:\u002F\u002Fvercel.com\u002Fmy-team\u002Fmy-project",{"type":46,"value":693},"), extract the team slug:",{"type":41,"tag":91,"props":695,"children":697},{"className":93,"code":696,"language":95,"meta":96,"style":96},"# e.g. \"my-team\" from \"https:\u002F\u002Fvercel.com\u002Fmy-team\u002Fmy-project\"\necho \"$PROJECT_URL\" | sed 's|https:\u002F\u002Fvercel.com\u002F||' | cut -d\u002F -f1\n",[698],{"type":41,"tag":55,"props":699,"children":700},{"__ignoreMap":96},[701,709],{"type":41,"tag":102,"props":702,"children":703},{"class":104,"line":105},[704],{"type":41,"tag":102,"props":705,"children":706},{"style":470},[707],{"type":46,"value":708},"# e.g. \"my-team\" from \"https:\u002F\u002Fvercel.com\u002Fmy-team\u002Fmy-project\"\n",{"type":41,"tag":102,"props":710,"children":711},{"class":104,"line":476},[712,718,722,727,731,735,740,744,749,753,757,761,766],{"type":41,"tag":102,"props":713,"children":715},{"style":714},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[716],{"type":46,"value":717},"echo",{"type":41,"tag":102,"props":719,"children":720},{"style":160},[721],{"type":46,"value":496},{"type":41,"tag":102,"props":723,"children":724},{"style":212},[725],{"type":46,"value":726},"$PROJECT_URL",{"type":41,"tag":102,"props":728,"children":729},{"style":160},[730],{"type":46,"value":547},{"type":41,"tag":102,"props":732,"children":733},{"style":160},[734],{"type":46,"value":245},{"type":41,"tag":102,"props":736,"children":737},{"style":109},[738],{"type":46,"value":739}," sed",{"type":41,"tag":102,"props":741,"children":742},{"style":160},[743],{"type":46,"value":163},{"type":41,"tag":102,"props":745,"children":746},{"style":115},[747],{"type":46,"value":748},"s|https:\u002F\u002Fvercel.com\u002F||",{"type":41,"tag":102,"props":750,"children":751},{"style":160},[752],{"type":46,"value":173},{"type":41,"tag":102,"props":754,"children":755},{"style":160},[756],{"type":46,"value":245},{"type":41,"tag":102,"props":758,"children":759},{"style":109},[760],{"type":46,"value":250},{"type":41,"tag":102,"props":762,"children":763},{"style":115},[764],{"type":46,"value":765}," -d\u002F",{"type":41,"tag":102,"props":767,"children":768},{"style":115},[769],{"type":46,"value":770}," -f1\n",{"type":41,"tag":49,"props":772,"children":773},{},[774,795,797,803],{"type":41,"tag":429,"props":775,"children":776},{},[777,779,785,787,793],{"type":46,"value":778},"If you have both ",{"type":41,"tag":55,"props":780,"children":782},{"className":781},[],[783],{"type":46,"value":784},"VERCEL_ORG_ID",{"type":46,"value":786}," and ",{"type":41,"tag":55,"props":788,"children":790},{"className":789},[],[791],{"type":46,"value":792},"VERCEL_PROJECT_ID",{"type":46,"value":794}," in your environment",{"type":46,"value":796},", export them — the CLI will use these automatically and skip any ",{"type":41,"tag":55,"props":798,"children":800},{"className":799},[],[801],{"type":46,"value":802},".vercel\u002F",{"type":46,"value":804}," directory:",{"type":41,"tag":91,"props":806,"children":808},{"className":93,"code":807,"language":95,"meta":96,"style":96},"export VERCEL_ORG_ID=\"\u003Corg-id>\"\nexport VERCEL_PROJECT_ID=\"\u003Cproject-id>\"\n",[809],{"type":41,"tag":55,"props":810,"children":811},{"__ignoreMap":96},[812,841],{"type":41,"tag":102,"props":813,"children":814},{"class":104,"line":105},[815,819,824,828,832,837],{"type":41,"tag":102,"props":816,"children":817},{"style":206},[818],{"type":46,"value":209},{"type":41,"tag":102,"props":820,"children":821},{"style":212},[822],{"type":46,"value":823}," VERCEL_ORG_ID",{"type":41,"tag":102,"props":825,"children":826},{"style":160},[827],{"type":46,"value":542},{"type":41,"tag":102,"props":829,"children":830},{"style":160},[831],{"type":46,"value":547},{"type":41,"tag":102,"props":833,"children":834},{"style":115},[835],{"type":46,"value":836},"\u003Corg-id>",{"type":41,"tag":102,"props":838,"children":839},{"style":160},[840],{"type":46,"value":506},{"type":41,"tag":102,"props":842,"children":843},{"class":104,"line":476},[844,848,853,857,861,866],{"type":41,"tag":102,"props":845,"children":846},{"style":206},[847],{"type":46,"value":209},{"type":41,"tag":102,"props":849,"children":850},{"style":212},[851],{"type":46,"value":852}," VERCEL_PROJECT_ID",{"type":41,"tag":102,"props":854,"children":855},{"style":160},[856],{"type":46,"value":542},{"type":41,"tag":102,"props":858,"children":859},{"style":160},[860],{"type":46,"value":547},{"type":41,"tag":102,"props":862,"children":863},{"style":115},[864],{"type":46,"value":865},"\u003Cproject-id>",{"type":41,"tag":102,"props":867,"children":868},{"style":160},[869],{"type":46,"value":506},{"type":41,"tag":49,"props":871,"children":872},{},[873,875,880,881,886],{"type":46,"value":874},"Note: ",{"type":41,"tag":55,"props":876,"children":878},{"className":877},[],[879],{"type":46,"value":784},{"type":46,"value":786},{"type":41,"tag":55,"props":882,"children":884},{"className":883},[],[885],{"type":46,"value":792},{"type":46,"value":887}," must be set together — setting only one causes an error.",{"type":41,"tag":64,"props":889,"children":891},{"id":890},"cli-setup",[892],{"type":46,"value":893},"CLI Setup",{"type":41,"tag":49,"props":895,"children":896},{},[897],{"type":46,"value":898},"Ensure the Vercel CLI is installed and up to date:",{"type":41,"tag":91,"props":900,"children":902},{"className":93,"code":901,"language":95,"meta":96,"style":96},"npm install -g vercel\nvercel --version\n",[903],{"type":41,"tag":55,"props":904,"children":905},{"__ignoreMap":96},[906,929],{"type":41,"tag":102,"props":907,"children":908},{"class":104,"line":105},[909,914,919,924],{"type":41,"tag":102,"props":910,"children":911},{"style":109},[912],{"type":46,"value":913},"npm",{"type":41,"tag":102,"props":915,"children":916},{"style":115},[917],{"type":46,"value":918}," install",{"type":41,"tag":102,"props":920,"children":921},{"style":115},[922],{"type":46,"value":923}," -g",{"type":41,"tag":102,"props":925,"children":926},{"style":115},[927],{"type":46,"value":928}," vercel\n",{"type":41,"tag":102,"props":930,"children":931},{"class":104,"line":476},[932,936],{"type":41,"tag":102,"props":933,"children":934},{"style":109},[935],{"type":46,"value":14},{"type":41,"tag":102,"props":937,"children":938},{"style":115},[939],{"type":46,"value":940}," --version\n",{"type":41,"tag":64,"props":942,"children":944},{"id":943},"deploying-a-project",[945],{"type":46,"value":946},"Deploying a Project",{"type":41,"tag":49,"props":948,"children":949},{},[950,952,957],{"type":46,"value":951},"Always deploy as ",{"type":41,"tag":429,"props":953,"children":954},{},[955],{"type":46,"value":956},"preview",{"type":46,"value":958}," unless the user explicitly requests production. Choose a method based on what you have available.",{"type":41,"tag":76,"props":960,"children":962},{"id":961},"quick-deploy-have-project-id-no-linking-needed",[963],{"type":46,"value":964},"Quick Deploy (have project ID — no linking needed)",{"type":41,"tag":49,"props":966,"children":967},{},[968,970,975,976,981],{"type":46,"value":969},"When ",{"type":41,"tag":55,"props":971,"children":973},{"className":972},[],[974],{"type":46,"value":87},{"type":46,"value":786},{"type":41,"tag":55,"props":977,"children":979},{"className":978},[],[980],{"type":46,"value":792},{"type":46,"value":982}," are set in the environment, deploy directly:",{"type":41,"tag":91,"props":984,"children":986},{"className":93,"code":985,"language":95,"meta":96,"style":96},"vercel deploy -y --no-wait\n",[987],{"type":41,"tag":55,"props":988,"children":989},{"__ignoreMap":96},[990],{"type":41,"tag":102,"props":991,"children":992},{"class":104,"line":105},[993,997,1001,1006],{"type":41,"tag":102,"props":994,"children":995},{"style":109},[996],{"type":46,"value":14},{"type":41,"tag":102,"props":998,"children":999},{"style":115},[1000],{"type":46,"value":486},{"type":41,"tag":102,"props":1002,"children":1003},{"style":115},[1004],{"type":46,"value":1005}," -y",{"type":41,"tag":102,"props":1007,"children":1008},{"style":115},[1009],{"type":46,"value":1010}," --no-wait\n",{"type":41,"tag":49,"props":1012,"children":1013},{},[1014,1016,1021,1023,1029],{"type":46,"value":1015},"With a team scope (either via ",{"type":41,"tag":55,"props":1017,"children":1019},{"className":1018},[],[1020],{"type":46,"value":784},{"type":46,"value":1022}," or ",{"type":41,"tag":55,"props":1024,"children":1026},{"className":1025},[],[1027],{"type":46,"value":1028},"--scope",{"type":46,"value":291},{"type":41,"tag":91,"props":1031,"children":1033},{"className":93,"code":1032,"language":95,"meta":96,"style":96},"vercel deploy --scope \u003Cteam-slug> -y --no-wait\n",[1034],{"type":41,"tag":55,"props":1035,"children":1036},{"__ignoreMap":96},[1037],{"type":41,"tag":102,"props":1038,"children":1039},{"class":104,"line":105},[1040,1044,1048,1053,1058,1063,1068,1073,1077],{"type":41,"tag":102,"props":1041,"children":1042},{"style":109},[1043],{"type":46,"value":14},{"type":41,"tag":102,"props":1045,"children":1046},{"style":115},[1047],{"type":46,"value":486},{"type":41,"tag":102,"props":1049,"children":1050},{"style":115},[1051],{"type":46,"value":1052}," --scope",{"type":41,"tag":102,"props":1054,"children":1055},{"style":160},[1056],{"type":46,"value":1057}," \u003C",{"type":41,"tag":102,"props":1059,"children":1060},{"style":115},[1061],{"type":46,"value":1062},"team-slu",{"type":41,"tag":102,"props":1064,"children":1065},{"style":212},[1066],{"type":46,"value":1067},"g",{"type":41,"tag":102,"props":1069,"children":1070},{"style":160},[1071],{"type":46,"value":1072},">",{"type":41,"tag":102,"props":1074,"children":1075},{"style":115},[1076],{"type":46,"value":1005},{"type":41,"tag":102,"props":1078,"children":1079},{"style":115},[1080],{"type":46,"value":1010},{"type":41,"tag":49,"props":1082,"children":1083},{},[1084],{"type":46,"value":1085},"Production (only when explicitly requested):",{"type":41,"tag":91,"props":1087,"children":1089},{"className":93,"code":1088,"language":95,"meta":96,"style":96},"vercel deploy --prod --scope \u003Cteam-slug> -y --no-wait\n",[1090],{"type":41,"tag":55,"props":1091,"children":1092},{"__ignoreMap":96},[1093],{"type":41,"tag":102,"props":1094,"children":1095},{"class":104,"line":105},[1096,1100,1104,1109,1113,1117,1121,1125,1129,1133],{"type":41,"tag":102,"props":1097,"children":1098},{"style":109},[1099],{"type":46,"value":14},{"type":41,"tag":102,"props":1101,"children":1102},{"style":115},[1103],{"type":46,"value":486},{"type":41,"tag":102,"props":1105,"children":1106},{"style":115},[1107],{"type":46,"value":1108}," --prod",{"type":41,"tag":102,"props":1110,"children":1111},{"style":115},[1112],{"type":46,"value":1052},{"type":41,"tag":102,"props":1114,"children":1115},{"style":160},[1116],{"type":46,"value":1057},{"type":41,"tag":102,"props":1118,"children":1119},{"style":115},[1120],{"type":46,"value":1062},{"type":41,"tag":102,"props":1122,"children":1123},{"style":212},[1124],{"type":46,"value":1067},{"type":41,"tag":102,"props":1126,"children":1127},{"style":160},[1128],{"type":46,"value":1072},{"type":41,"tag":102,"props":1130,"children":1131},{"style":115},[1132],{"type":46,"value":1005},{"type":41,"tag":102,"props":1134,"children":1135},{"style":115},[1136],{"type":46,"value":1010},{"type":41,"tag":49,"props":1138,"children":1139},{},[1140],{"type":46,"value":1141},"Check status:",{"type":41,"tag":91,"props":1143,"children":1145},{"className":93,"code":1144,"language":95,"meta":96,"style":96},"vercel inspect \u003Cdeployment-url>\n",[1146],{"type":41,"tag":55,"props":1147,"children":1148},{"__ignoreMap":96},[1149],{"type":41,"tag":102,"props":1150,"children":1151},{"class":104,"line":105},[1152,1156,1161,1165,1170,1175],{"type":41,"tag":102,"props":1153,"children":1154},{"style":109},[1155],{"type":46,"value":14},{"type":41,"tag":102,"props":1157,"children":1158},{"style":115},[1159],{"type":46,"value":1160}," inspect",{"type":41,"tag":102,"props":1162,"children":1163},{"style":160},[1164],{"type":46,"value":1057},{"type":41,"tag":102,"props":1166,"children":1167},{"style":115},[1168],{"type":46,"value":1169},"deployment-ur",{"type":41,"tag":102,"props":1171,"children":1172},{"style":212},[1173],{"type":46,"value":1174},"l",{"type":41,"tag":102,"props":1176,"children":1177},{"style":160},[1178],{"type":46,"value":1179},">\n",{"type":41,"tag":76,"props":1181,"children":1183},{"id":1182},"full-deploy-flow-no-project-id-need-to-link",[1184],{"type":46,"value":1185},"Full Deploy Flow (no project ID — need to link)",{"type":41,"tag":49,"props":1187,"children":1188},{},[1189],{"type":46,"value":1190},"Use this when you have a token and team but no pre-existing project ID.",{"type":41,"tag":1192,"props":1193,"children":1195},"h4",{"id":1194},"check-project-state-first",[1196],{"type":46,"value":1197},"Check project state first",{"type":41,"tag":91,"props":1199,"children":1201},{"className":93,"code":1200,"language":95,"meta":96,"style":96},"# Does the project have a git remote?\ngit remote get-url origin 2>\u002Fdev\u002Fnull\n\n# Is it already linked to a Vercel project?\ncat .vercel\u002Fproject.json 2>\u002Fdev\u002Fnull || cat .vercel\u002Frepo.json 2>\u002Fdev\u002Fnull\n",[1202],{"type":41,"tag":55,"props":1203,"children":1204},{"__ignoreMap":96},[1205,1213,1244,1251,1259],{"type":41,"tag":102,"props":1206,"children":1207},{"class":104,"line":105},[1208],{"type":41,"tag":102,"props":1209,"children":1210},{"style":470},[1211],{"type":46,"value":1212},"# Does the project have a git remote?\n",{"type":41,"tag":102,"props":1214,"children":1215},{"class":104,"line":476},[1216,1221,1226,1231,1236,1240],{"type":41,"tag":102,"props":1217,"children":1218},{"style":109},[1219],{"type":46,"value":1220},"git",{"type":41,"tag":102,"props":1222,"children":1223},{"style":115},[1224],{"type":46,"value":1225}," remote",{"type":41,"tag":102,"props":1227,"children":1228},{"style":115},[1229],{"type":46,"value":1230}," get-url",{"type":41,"tag":102,"props":1232,"children":1233},{"style":115},[1234],{"type":46,"value":1235}," origin",{"type":41,"tag":102,"props":1237,"children":1238},{"style":160},[1239],{"type":46,"value":183},{"type":41,"tag":102,"props":1241,"children":1242},{"style":115},[1243],{"type":46,"value":188},{"type":41,"tag":102,"props":1245,"children":1246},{"class":104,"line":509},[1247],{"type":41,"tag":102,"props":1248,"children":1249},{"emptyLinePlaceholder":513},[1250],{"type":46,"value":516},{"type":41,"tag":102,"props":1252,"children":1253},{"class":104,"line":519},[1254],{"type":41,"tag":102,"props":1255,"children":1256},{"style":470},[1257],{"type":46,"value":1258},"# Is it already linked to a Vercel project?\n",{"type":41,"tag":102,"props":1260,"children":1261},{"class":104,"line":528},[1262,1267,1272,1276,1281,1286,1291,1296,1300],{"type":41,"tag":102,"props":1263,"children":1264},{"style":109},[1265],{"type":46,"value":1266},"cat",{"type":41,"tag":102,"props":1268,"children":1269},{"style":115},[1270],{"type":46,"value":1271}," .vercel\u002Fproject.json",{"type":41,"tag":102,"props":1273,"children":1274},{"style":160},[1275],{"type":46,"value":183},{"type":41,"tag":102,"props":1277,"children":1278},{"style":115},[1279],{"type":46,"value":1280},"\u002Fdev\u002Fnull",{"type":41,"tag":102,"props":1282,"children":1283},{"style":160},[1284],{"type":46,"value":1285}," ||",{"type":41,"tag":102,"props":1287,"children":1288},{"style":109},[1289],{"type":46,"value":1290}," cat",{"type":41,"tag":102,"props":1292,"children":1293},{"style":115},[1294],{"type":46,"value":1295}," .vercel\u002Frepo.json",{"type":41,"tag":102,"props":1297,"children":1298},{"style":160},[1299],{"type":46,"value":183},{"type":41,"tag":102,"props":1301,"children":1302},{"style":115},[1303],{"type":46,"value":188},{"type":41,"tag":1192,"props":1305,"children":1307},{"id":1306},"link-the-project",[1308],{"type":46,"value":1309},"Link the project",{"type":41,"tag":49,"props":1311,"children":1312},{},[1313],{"type":41,"tag":429,"props":1314,"children":1315},{},[1316],{"type":46,"value":1317},"With git remote (preferred):",{"type":41,"tag":91,"props":1319,"children":1321},{"className":93,"code":1320,"language":95,"meta":96,"style":96},"vercel link --repo --scope \u003Cteam-slug> -y\n",[1322],{"type":41,"tag":55,"props":1323,"children":1324},{"__ignoreMap":96},[1325],{"type":41,"tag":102,"props":1326,"children":1327},{"class":104,"line":105},[1328,1332,1337,1342,1346,1350,1354,1358,1362],{"type":41,"tag":102,"props":1329,"children":1330},{"style":109},[1331],{"type":46,"value":14},{"type":41,"tag":102,"props":1333,"children":1334},{"style":115},[1335],{"type":46,"value":1336}," link",{"type":41,"tag":102,"props":1338,"children":1339},{"style":115},[1340],{"type":46,"value":1341}," --repo",{"type":41,"tag":102,"props":1343,"children":1344},{"style":115},[1345],{"type":46,"value":1052},{"type":41,"tag":102,"props":1347,"children":1348},{"style":160},[1349],{"type":46,"value":1057},{"type":41,"tag":102,"props":1351,"children":1352},{"style":115},[1353],{"type":46,"value":1062},{"type":41,"tag":102,"props":1355,"children":1356},{"style":212},[1357],{"type":46,"value":1067},{"type":41,"tag":102,"props":1359,"children":1360},{"style":160},[1361],{"type":46,"value":1072},{"type":41,"tag":102,"props":1363,"children":1364},{"style":115},[1365],{"type":46,"value":1366}," -y\n",{"type":41,"tag":49,"props":1368,"children":1369},{},[1370,1372,1378,1380,1385],{"type":46,"value":1371},"Reads the git remote and connects to the matching Vercel project. Creates ",{"type":41,"tag":55,"props":1373,"children":1375},{"className":1374},[],[1376],{"type":46,"value":1377},".vercel\u002Frepo.json",{"type":46,"value":1379},". More reliable than plain ",{"type":41,"tag":55,"props":1381,"children":1383},{"className":1382},[],[1384],{"type":46,"value":585},{"type":46,"value":1386},", which matches by directory name.",{"type":41,"tag":49,"props":1388,"children":1389},{},[1390],{"type":41,"tag":429,"props":1391,"children":1392},{},[1393],{"type":46,"value":1394},"Without git remote:",{"type":41,"tag":91,"props":1396,"children":1398},{"className":93,"code":1397,"language":95,"meta":96,"style":96},"vercel link --scope \u003Cteam-slug> -y\n",[1399],{"type":41,"tag":55,"props":1400,"children":1401},{"__ignoreMap":96},[1402],{"type":41,"tag":102,"props":1403,"children":1404},{"class":104,"line":105},[1405,1409,1413,1417,1421,1425,1429,1433],{"type":41,"tag":102,"props":1406,"children":1407},{"style":109},[1408],{"type":46,"value":14},{"type":41,"tag":102,"props":1410,"children":1411},{"style":115},[1412],{"type":46,"value":1336},{"type":41,"tag":102,"props":1414,"children":1415},{"style":115},[1416],{"type":46,"value":1052},{"type":41,"tag":102,"props":1418,"children":1419},{"style":160},[1420],{"type":46,"value":1057},{"type":41,"tag":102,"props":1422,"children":1423},{"style":115},[1424],{"type":46,"value":1062},{"type":41,"tag":102,"props":1426,"children":1427},{"style":212},[1428],{"type":46,"value":1067},{"type":41,"tag":102,"props":1430,"children":1431},{"style":160},[1432],{"type":46,"value":1072},{"type":41,"tag":102,"props":1434,"children":1435},{"style":115},[1436],{"type":46,"value":1366},{"type":41,"tag":49,"props":1438,"children":1439},{},[1440,1442,1448],{"type":46,"value":1441},"Creates ",{"type":41,"tag":55,"props":1443,"children":1445},{"className":1444},[],[1446],{"type":46,"value":1447},".vercel\u002Fproject.json",{"type":46,"value":62},{"type":41,"tag":49,"props":1450,"children":1451},{},[1452],{"type":41,"tag":429,"props":1453,"children":1454},{},[1455],{"type":46,"value":1456},"Link to a specific project by name:",{"type":41,"tag":91,"props":1458,"children":1460},{"className":93,"code":1459,"language":95,"meta":96,"style":96},"vercel link --project \u003Cproject-name> --scope \u003Cteam-slug> -y\n",[1461],{"type":41,"tag":55,"props":1462,"children":1463},{"__ignoreMap":96},[1464],{"type":41,"tag":102,"props":1465,"children":1466},{"class":104,"line":105},[1467,1471,1475,1480,1484,1489,1494,1498,1502,1506,1510,1514,1518],{"type":41,"tag":102,"props":1468,"children":1469},{"style":109},[1470],{"type":46,"value":14},{"type":41,"tag":102,"props":1472,"children":1473},{"style":115},[1474],{"type":46,"value":1336},{"type":41,"tag":102,"props":1476,"children":1477},{"style":115},[1478],{"type":46,"value":1479}," --project",{"type":41,"tag":102,"props":1481,"children":1482},{"style":160},[1483],{"type":46,"value":1057},{"type":41,"tag":102,"props":1485,"children":1486},{"style":115},[1487],{"type":46,"value":1488},"project-nam",{"type":41,"tag":102,"props":1490,"children":1491},{"style":212},[1492],{"type":46,"value":1493},"e",{"type":41,"tag":102,"props":1495,"children":1496},{"style":160},[1497],{"type":46,"value":1072},{"type":41,"tag":102,"props":1499,"children":1500},{"style":115},[1501],{"type":46,"value":1052},{"type":41,"tag":102,"props":1503,"children":1504},{"style":160},[1505],{"type":46,"value":1057},{"type":41,"tag":102,"props":1507,"children":1508},{"style":115},[1509],{"type":46,"value":1062},{"type":41,"tag":102,"props":1511,"children":1512},{"style":212},[1513],{"type":46,"value":1067},{"type":41,"tag":102,"props":1515,"children":1516},{"style":160},[1517],{"type":46,"value":1072},{"type":41,"tag":102,"props":1519,"children":1520},{"style":115},[1521],{"type":46,"value":1366},{"type":41,"tag":49,"props":1523,"children":1524},{},[1525,1527,1533,1535,1540,1541,1546],{"type":46,"value":1526},"If the project is already linked, check ",{"type":41,"tag":55,"props":1528,"children":1530},{"className":1529},[],[1531],{"type":46,"value":1532},"orgId",{"type":46,"value":1534}," in ",{"type":41,"tag":55,"props":1536,"children":1538},{"className":1537},[],[1539],{"type":46,"value":1447},{"type":46,"value":1022},{"type":41,"tag":55,"props":1542,"children":1544},{"className":1543},[],[1545],{"type":46,"value":1377},{"type":46,"value":1547}," to verify it matches the intended team.",{"type":41,"tag":1192,"props":1549,"children":1551},{"id":1550},"deploy-after-linking",[1552],{"type":46,"value":1553},"Deploy after linking",{"type":41,"tag":49,"props":1555,"children":1556},{},[1557],{"type":41,"tag":429,"props":1558,"children":1559},{},[1560],{"type":46,"value":1561},"A) Git Push Deploy — has git remote (preferred)",{"type":41,"tag":49,"props":1563,"children":1564},{},[1565],{"type":46,"value":1566},"Git pushes trigger automatic Vercel deployments.",{"type":41,"tag":1568,"props":1569,"children":1570},"ol",{},[1571,1582,1653,1658],{"type":41,"tag":1572,"props":1573,"children":1574},"li",{},[1575,1580],{"type":41,"tag":429,"props":1576,"children":1577},{},[1578],{"type":46,"value":1579},"Ask the user before pushing.",{"type":46,"value":1581}," Never push without explicit approval.",{"type":41,"tag":1572,"props":1583,"children":1584},{},[1585,1587],{"type":46,"value":1586},"Commit and push:\n",{"type":41,"tag":91,"props":1588,"children":1590},{"className":93,"code":1589,"language":95,"meta":96,"style":96},"git add .\ngit commit -m \"deploy: \u003Cdescription of changes>\"\ngit push\n",[1591],{"type":41,"tag":55,"props":1592,"children":1593},{"__ignoreMap":96},[1594,1611,1641],{"type":41,"tag":102,"props":1595,"children":1596},{"class":104,"line":105},[1597,1601,1606],{"type":41,"tag":102,"props":1598,"children":1599},{"style":109},[1600],{"type":46,"value":1220},{"type":41,"tag":102,"props":1602,"children":1603},{"style":115},[1604],{"type":46,"value":1605}," add",{"type":41,"tag":102,"props":1607,"children":1608},{"style":115},[1609],{"type":46,"value":1610}," .\n",{"type":41,"tag":102,"props":1612,"children":1613},{"class":104,"line":476},[1614,1618,1623,1628,1632,1637],{"type":41,"tag":102,"props":1615,"children":1616},{"style":109},[1617],{"type":46,"value":1220},{"type":41,"tag":102,"props":1619,"children":1620},{"style":115},[1621],{"type":46,"value":1622}," commit",{"type":41,"tag":102,"props":1624,"children":1625},{"style":115},[1626],{"type":46,"value":1627}," -m",{"type":41,"tag":102,"props":1629,"children":1630},{"style":160},[1631],{"type":46,"value":496},{"type":41,"tag":102,"props":1633,"children":1634},{"style":115},[1635],{"type":46,"value":1636},"deploy: \u003Cdescription of changes>",{"type":41,"tag":102,"props":1638,"children":1639},{"style":160},[1640],{"type":46,"value":506},{"type":41,"tag":102,"props":1642,"children":1643},{"class":104,"line":509},[1644,1648],{"type":41,"tag":102,"props":1645,"children":1646},{"style":109},[1647],{"type":46,"value":1220},{"type":41,"tag":102,"props":1649,"children":1650},{"style":115},[1651],{"type":46,"value":1652}," push\n",{"type":41,"tag":1572,"props":1654,"children":1655},{},[1656],{"type":46,"value":1657},"Vercel builds automatically. Non-production branches get preview deployments.",{"type":41,"tag":1572,"props":1659,"children":1660},{},[1661,1663,1726,1728,1734],{"type":46,"value":1662},"Retrieve the deployment URL:\n",{"type":41,"tag":91,"props":1664,"children":1666},{"className":93,"code":1665,"language":95,"meta":96,"style":96},"sleep 5\nvercel ls --format json --scope \u003Cteam-slug>\n",[1667],{"type":41,"tag":55,"props":1668,"children":1669},{"__ignoreMap":96},[1670,1684],{"type":41,"tag":102,"props":1671,"children":1672},{"class":104,"line":105},[1673,1678],{"type":41,"tag":102,"props":1674,"children":1675},{"style":109},[1676],{"type":46,"value":1677},"sleep",{"type":41,"tag":102,"props":1679,"children":1681},{"style":1680},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1682],{"type":46,"value":1683}," 5\n",{"type":41,"tag":102,"props":1685,"children":1686},{"class":104,"line":476},[1687,1691,1696,1701,1706,1710,1714,1718,1722],{"type":41,"tag":102,"props":1688,"children":1689},{"style":109},[1690],{"type":46,"value":14},{"type":41,"tag":102,"props":1692,"children":1693},{"style":115},[1694],{"type":46,"value":1695}," ls",{"type":41,"tag":102,"props":1697,"children":1698},{"style":115},[1699],{"type":46,"value":1700}," --format",{"type":41,"tag":102,"props":1702,"children":1703},{"style":115},[1704],{"type":46,"value":1705}," json",{"type":41,"tag":102,"props":1707,"children":1708},{"style":115},[1709],{"type":46,"value":1052},{"type":41,"tag":102,"props":1711,"children":1712},{"style":160},[1713],{"type":46,"value":1057},{"type":41,"tag":102,"props":1715,"children":1716},{"style":115},[1717],{"type":46,"value":1062},{"type":41,"tag":102,"props":1719,"children":1720},{"style":212},[1721],{"type":46,"value":1067},{"type":41,"tag":102,"props":1723,"children":1724},{"style":160},[1725],{"type":46,"value":1179},{"type":46,"value":1727},"\nFind the latest entry in the ",{"type":41,"tag":55,"props":1729,"children":1731},{"className":1730},[],[1732],{"type":46,"value":1733},"deployments",{"type":46,"value":1735}," array.",{"type":41,"tag":49,"props":1737,"children":1738},{},[1739],{"type":41,"tag":429,"props":1740,"children":1741},{},[1742],{"type":46,"value":1743},"B) CLI Deploy — no git remote",{"type":41,"tag":91,"props":1745,"children":1746},{"className":93,"code":1032,"language":95,"meta":96,"style":96},[1747],{"type":41,"tag":55,"props":1748,"children":1749},{"__ignoreMap":96},[1750],{"type":41,"tag":102,"props":1751,"children":1752},{"class":104,"line":105},[1753,1757,1761,1765,1769,1773,1777,1781,1785],{"type":41,"tag":102,"props":1754,"children":1755},{"style":109},[1756],{"type":46,"value":14},{"type":41,"tag":102,"props":1758,"children":1759},{"style":115},[1760],{"type":46,"value":486},{"type":41,"tag":102,"props":1762,"children":1763},{"style":115},[1764],{"type":46,"value":1052},{"type":41,"tag":102,"props":1766,"children":1767},{"style":160},[1768],{"type":46,"value":1057},{"type":41,"tag":102,"props":1770,"children":1771},{"style":115},[1772],{"type":46,"value":1062},{"type":41,"tag":102,"props":1774,"children":1775},{"style":212},[1776],{"type":46,"value":1067},{"type":41,"tag":102,"props":1778,"children":1779},{"style":160},[1780],{"type":46,"value":1072},{"type":41,"tag":102,"props":1782,"children":1783},{"style":115},[1784],{"type":46,"value":1005},{"type":41,"tag":102,"props":1786,"children":1787},{"style":115},[1788],{"type":46,"value":1010},{"type":41,"tag":49,"props":1790,"children":1791},{},[1792],{"type":46,"value":1141},{"type":41,"tag":91,"props":1794,"children":1795},{"className":93,"code":1144,"language":95,"meta":96,"style":96},[1796],{"type":41,"tag":55,"props":1797,"children":1798},{"__ignoreMap":96},[1799],{"type":41,"tag":102,"props":1800,"children":1801},{"class":104,"line":105},[1802,1806,1810,1814,1818,1822],{"type":41,"tag":102,"props":1803,"children":1804},{"style":109},[1805],{"type":46,"value":14},{"type":41,"tag":102,"props":1807,"children":1808},{"style":115},[1809],{"type":46,"value":1160},{"type":41,"tag":102,"props":1811,"children":1812},{"style":160},[1813],{"type":46,"value":1057},{"type":41,"tag":102,"props":1815,"children":1816},{"style":115},[1817],{"type":46,"value":1169},{"type":41,"tag":102,"props":1819,"children":1820},{"style":212},[1821],{"type":46,"value":1174},{"type":41,"tag":102,"props":1823,"children":1824},{"style":160},[1825],{"type":46,"value":1179},{"type":41,"tag":76,"props":1827,"children":1829},{"id":1828},"deploying-from-a-remote-repository-code-not-cloned-locally",[1830],{"type":46,"value":1831},"Deploying from a Remote Repository (code not cloned locally)",{"type":41,"tag":1568,"props":1833,"children":1834},{},[1835,1901,1951],{"type":41,"tag":1572,"props":1836,"children":1837},{},[1838,1840],{"type":46,"value":1839},"Clone the repository:\n",{"type":41,"tag":91,"props":1841,"children":1843},{"className":93,"code":1842,"language":95,"meta":96,"style":96},"git clone \u003Crepo-url>\ncd \u003Crepo-name>\n",[1844],{"type":41,"tag":55,"props":1845,"children":1846},{"__ignoreMap":96},[1847,1876],{"type":41,"tag":102,"props":1848,"children":1849},{"class":104,"line":105},[1850,1854,1859,1863,1868,1872],{"type":41,"tag":102,"props":1851,"children":1852},{"style":109},[1853],{"type":46,"value":1220},{"type":41,"tag":102,"props":1855,"children":1856},{"style":115},[1857],{"type":46,"value":1858}," clone",{"type":41,"tag":102,"props":1860,"children":1861},{"style":160},[1862],{"type":46,"value":1057},{"type":41,"tag":102,"props":1864,"children":1865},{"style":115},[1866],{"type":46,"value":1867},"repo-ur",{"type":41,"tag":102,"props":1869,"children":1870},{"style":212},[1871],{"type":46,"value":1174},{"type":41,"tag":102,"props":1873,"children":1874},{"style":160},[1875],{"type":46,"value":1179},{"type":41,"tag":102,"props":1877,"children":1878},{"class":104,"line":476},[1879,1884,1888,1893,1897],{"type":41,"tag":102,"props":1880,"children":1881},{"style":714},[1882],{"type":46,"value":1883},"cd",{"type":41,"tag":102,"props":1885,"children":1886},{"style":160},[1887],{"type":46,"value":1057},{"type":41,"tag":102,"props":1889,"children":1890},{"style":115},[1891],{"type":46,"value":1892},"repo-nam",{"type":41,"tag":102,"props":1894,"children":1895},{"style":212},[1896],{"type":46,"value":1493},{"type":41,"tag":102,"props":1898,"children":1899},{"style":160},[1900],{"type":46,"value":1179},{"type":41,"tag":1572,"props":1902,"children":1903},{},[1904,1906],{"type":46,"value":1905},"Link to Vercel:\n",{"type":41,"tag":91,"props":1907,"children":1908},{"className":93,"code":1320,"language":95,"meta":96,"style":96},[1909],{"type":41,"tag":55,"props":1910,"children":1911},{"__ignoreMap":96},[1912],{"type":41,"tag":102,"props":1913,"children":1914},{"class":104,"line":105},[1915,1919,1923,1927,1931,1935,1939,1943,1947],{"type":41,"tag":102,"props":1916,"children":1917},{"style":109},[1918],{"type":46,"value":14},{"type":41,"tag":102,"props":1920,"children":1921},{"style":115},[1922],{"type":46,"value":1336},{"type":41,"tag":102,"props":1924,"children":1925},{"style":115},[1926],{"type":46,"value":1341},{"type":41,"tag":102,"props":1928,"children":1929},{"style":115},[1930],{"type":46,"value":1052},{"type":41,"tag":102,"props":1932,"children":1933},{"style":160},[1934],{"type":46,"value":1057},{"type":41,"tag":102,"props":1936,"children":1937},{"style":115},[1938],{"type":46,"value":1062},{"type":41,"tag":102,"props":1940,"children":1941},{"style":212},[1942],{"type":46,"value":1067},{"type":41,"tag":102,"props":1944,"children":1945},{"style":160},[1946],{"type":46,"value":1072},{"type":41,"tag":102,"props":1948,"children":1949},{"style":115},[1950],{"type":46,"value":1366},{"type":41,"tag":1572,"props":1952,"children":1953},{},[1954],{"type":46,"value":1955},"Deploy via git push (if you have push access) or CLI deploy.",{"type":41,"tag":76,"props":1957,"children":1959},{"id":1958},"about-vercel-directory",[1960,1962,1967],{"type":46,"value":1961},"About ",{"type":41,"tag":55,"props":1963,"children":1965},{"className":1964},[],[1966],{"type":46,"value":802},{"type":46,"value":1968}," Directory",{"type":41,"tag":49,"props":1970,"children":1971},{},[1972],{"type":46,"value":1973},"A linked project has either:",{"type":41,"tag":1975,"props":1976,"children":1977},"ul",{},[1978,2008],{"type":41,"tag":1572,"props":1979,"children":1980},{},[1981,1986,1988,1993,1995,2001,2002,2007],{"type":41,"tag":55,"props":1982,"children":1984},{"className":1983},[],[1985],{"type":46,"value":1447},{"type":46,"value":1987}," — from ",{"type":41,"tag":55,"props":1989,"children":1991},{"className":1990},[],[1992],{"type":46,"value":585},{"type":46,"value":1994},". Contains ",{"type":41,"tag":55,"props":1996,"children":1998},{"className":1997},[],[1999],{"type":46,"value":2000},"projectId",{"type":46,"value":786},{"type":41,"tag":55,"props":2003,"children":2005},{"className":2004},[],[2006],{"type":46,"value":1532},{"type":46,"value":62},{"type":41,"tag":1572,"props":2009,"children":2010},{},[2011,2016,2017,2023,2024,2029,2031,2037,2039,2045],{"type":41,"tag":55,"props":2012,"children":2014},{"className":2013},[],[2015],{"type":46,"value":1377},{"type":46,"value":1987},{"type":41,"tag":55,"props":2018,"children":2020},{"className":2019},[],[2021],{"type":46,"value":2022},"vercel link --repo",{"type":46,"value":1994},{"type":41,"tag":55,"props":2025,"children":2027},{"className":2026},[],[2028],{"type":46,"value":1532},{"type":46,"value":2030},", ",{"type":41,"tag":55,"props":2032,"children":2034},{"className":2033},[],[2035],{"type":46,"value":2036},"remoteName",{"type":46,"value":2038},", and a ",{"type":41,"tag":55,"props":2040,"children":2042},{"className":2041},[],[2043],{"type":46,"value":2044},"projects",{"type":46,"value":2046}," map.",{"type":41,"tag":49,"props":2048,"children":2049},{},[2050,2052,2057,2059,2064],{"type":46,"value":2051},"Not needed when ",{"type":41,"tag":55,"props":2053,"children":2055},{"className":2054},[],[2056],{"type":46,"value":784},{"type":46,"value":2058}," + ",{"type":41,"tag":55,"props":2060,"children":2062},{"className":2061},[],[2063],{"type":46,"value":792},{"type":46,"value":2065}," are both set in the environment.",{"type":41,"tag":49,"props":2067,"children":2068},{},[2069,2074,2076,2082,2083,2088,2090,2096,2098,2104],{"type":41,"tag":429,"props":2070,"children":2071},{},[2072],{"type":46,"value":2073},"Do NOT",{"type":46,"value":2075}," run ",{"type":41,"tag":55,"props":2077,"children":2079},{"className":2078},[],[2080],{"type":46,"value":2081},"vercel project inspect",{"type":46,"value":1022},{"type":41,"tag":55,"props":2084,"children":2086},{"className":2085},[],[2087],{"type":46,"value":585},{"type":46,"value":2089}," in an unlinked directory to detect state — they will interactively prompt or silently link as a side-effect. ",{"type":41,"tag":55,"props":2091,"children":2093},{"className":2092},[],[2094],{"type":46,"value":2095},"vercel ls",{"type":46,"value":2097}," is safe (in an unlinked directory it defaults to showing all deployments for the scope). ",{"type":41,"tag":55,"props":2099,"children":2101},{"className":2100},[],[2102],{"type":46,"value":2103},"vercel whoami",{"type":46,"value":2105}," is safe anywhere.",{"type":41,"tag":64,"props":2107,"children":2109},{"id":2108},"managing-environment-variables",[2110],{"type":46,"value":2111},"Managing Environment Variables",{"type":41,"tag":91,"props":2113,"children":2115},{"className":93,"code":2114,"language":95,"meta":96,"style":96},"# Set for all environments\necho \"value\" | vercel env add VAR_NAME --scope \u003Cteam-slug>\n\n# Set for a specific environment (production, preview, development)\necho \"value\" | vercel env add VAR_NAME production --scope \u003Cteam-slug>\n\n# List environment variables\nvercel env ls --scope \u003Cteam-slug>\n\n# Pull env vars to local .env.local file\nvercel env pull --scope \u003Cteam-slug>\n\n# Remove a variable\nvercel env rm VAR_NAME --scope \u003Cteam-slug> -y\n",[2116],{"type":41,"tag":55,"props":2117,"children":2118},{"__ignoreMap":96},[2119,2127,2190,2197,2205,2269,2276,2285,2321,2329,2338,2375,2383,2392],{"type":41,"tag":102,"props":2120,"children":2121},{"class":104,"line":105},[2122],{"type":41,"tag":102,"props":2123,"children":2124},{"style":470},[2125],{"type":46,"value":2126},"# Set for all environments\n",{"type":41,"tag":102,"props":2128,"children":2129},{"class":104,"line":476},[2130,2134,2138,2143,2147,2151,2156,2161,2165,2170,2174,2178,2182,2186],{"type":41,"tag":102,"props":2131,"children":2132},{"style":714},[2133],{"type":46,"value":717},{"type":41,"tag":102,"props":2135,"children":2136},{"style":160},[2137],{"type":46,"value":496},{"type":41,"tag":102,"props":2139,"children":2140},{"style":115},[2141],{"type":46,"value":2142},"value",{"type":41,"tag":102,"props":2144,"children":2145},{"style":160},[2146],{"type":46,"value":547},{"type":41,"tag":102,"props":2148,"children":2149},{"style":160},[2150],{"type":46,"value":245},{"type":41,"tag":102,"props":2152,"children":2153},{"style":109},[2154],{"type":46,"value":2155}," vercel",{"type":41,"tag":102,"props":2157,"children":2158},{"style":115},[2159],{"type":46,"value":2160}," env",{"type":41,"tag":102,"props":2162,"children":2163},{"style":115},[2164],{"type":46,"value":1605},{"type":41,"tag":102,"props":2166,"children":2167},{"style":115},[2168],{"type":46,"value":2169}," VAR_NAME",{"type":41,"tag":102,"props":2171,"children":2172},{"style":115},[2173],{"type":46,"value":1052},{"type":41,"tag":102,"props":2175,"children":2176},{"style":160},[2177],{"type":46,"value":1057},{"type":41,"tag":102,"props":2179,"children":2180},{"style":115},[2181],{"type":46,"value":1062},{"type":41,"tag":102,"props":2183,"children":2184},{"style":212},[2185],{"type":46,"value":1067},{"type":41,"tag":102,"props":2187,"children":2188},{"style":160},[2189],{"type":46,"value":1179},{"type":41,"tag":102,"props":2191,"children":2192},{"class":104,"line":509},[2193],{"type":41,"tag":102,"props":2194,"children":2195},{"emptyLinePlaceholder":513},[2196],{"type":46,"value":516},{"type":41,"tag":102,"props":2198,"children":2199},{"class":104,"line":519},[2200],{"type":41,"tag":102,"props":2201,"children":2202},{"style":470},[2203],{"type":46,"value":2204},"# Set for a specific environment (production, preview, development)\n",{"type":41,"tag":102,"props":2206,"children":2207},{"class":104,"line":528},[2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2249,2253,2257,2261,2265],{"type":41,"tag":102,"props":2209,"children":2210},{"style":714},[2211],{"type":46,"value":717},{"type":41,"tag":102,"props":2213,"children":2214},{"style":160},[2215],{"type":46,"value":496},{"type":41,"tag":102,"props":2217,"children":2218},{"style":115},[2219],{"type":46,"value":2142},{"type":41,"tag":102,"props":2221,"children":2222},{"style":160},[2223],{"type":46,"value":547},{"type":41,"tag":102,"props":2225,"children":2226},{"style":160},[2227],{"type":46,"value":245},{"type":41,"tag":102,"props":2229,"children":2230},{"style":109},[2231],{"type":46,"value":2155},{"type":41,"tag":102,"props":2233,"children":2234},{"style":115},[2235],{"type":46,"value":2160},{"type":41,"tag":102,"props":2237,"children":2238},{"style":115},[2239],{"type":46,"value":1605},{"type":41,"tag":102,"props":2241,"children":2242},{"style":115},[2243],{"type":46,"value":2169},{"type":41,"tag":102,"props":2245,"children":2246},{"style":115},[2247],{"type":46,"value":2248}," production",{"type":41,"tag":102,"props":2250,"children":2251},{"style":115},[2252],{"type":46,"value":1052},{"type":41,"tag":102,"props":2254,"children":2255},{"style":160},[2256],{"type":46,"value":1057},{"type":41,"tag":102,"props":2258,"children":2259},{"style":115},[2260],{"type":46,"value":1062},{"type":41,"tag":102,"props":2262,"children":2263},{"style":212},[2264],{"type":46,"value":1067},{"type":41,"tag":102,"props":2266,"children":2267},{"style":160},[2268],{"type":46,"value":1179},{"type":41,"tag":102,"props":2270,"children":2271},{"class":104,"line":558},[2272],{"type":41,"tag":102,"props":2273,"children":2274},{"emptyLinePlaceholder":513},[2275],{"type":46,"value":516},{"type":41,"tag":102,"props":2277,"children":2279},{"class":104,"line":2278},7,[2280],{"type":41,"tag":102,"props":2281,"children":2282},{"style":470},[2283],{"type":46,"value":2284},"# List environment variables\n",{"type":41,"tag":102,"props":2286,"children":2288},{"class":104,"line":2287},8,[2289,2293,2297,2301,2305,2309,2313,2317],{"type":41,"tag":102,"props":2290,"children":2291},{"style":109},[2292],{"type":46,"value":14},{"type":41,"tag":102,"props":2294,"children":2295},{"style":115},[2296],{"type":46,"value":2160},{"type":41,"tag":102,"props":2298,"children":2299},{"style":115},[2300],{"type":46,"value":1695},{"type":41,"tag":102,"props":2302,"children":2303},{"style":115},[2304],{"type":46,"value":1052},{"type":41,"tag":102,"props":2306,"children":2307},{"style":160},[2308],{"type":46,"value":1057},{"type":41,"tag":102,"props":2310,"children":2311},{"style":115},[2312],{"type":46,"value":1062},{"type":41,"tag":102,"props":2314,"children":2315},{"style":212},[2316],{"type":46,"value":1067},{"type":41,"tag":102,"props":2318,"children":2319},{"style":160},[2320],{"type":46,"value":1179},{"type":41,"tag":102,"props":2322,"children":2324},{"class":104,"line":2323},9,[2325],{"type":41,"tag":102,"props":2326,"children":2327},{"emptyLinePlaceholder":513},[2328],{"type":46,"value":516},{"type":41,"tag":102,"props":2330,"children":2332},{"class":104,"line":2331},10,[2333],{"type":41,"tag":102,"props":2334,"children":2335},{"style":470},[2336],{"type":46,"value":2337},"# Pull env vars to local .env.local file\n",{"type":41,"tag":102,"props":2339,"children":2341},{"class":104,"line":2340},11,[2342,2346,2350,2355,2359,2363,2367,2371],{"type":41,"tag":102,"props":2343,"children":2344},{"style":109},[2345],{"type":46,"value":14},{"type":41,"tag":102,"props":2347,"children":2348},{"style":115},[2349],{"type":46,"value":2160},{"type":41,"tag":102,"props":2351,"children":2352},{"style":115},[2353],{"type":46,"value":2354}," pull",{"type":41,"tag":102,"props":2356,"children":2357},{"style":115},[2358],{"type":46,"value":1052},{"type":41,"tag":102,"props":2360,"children":2361},{"style":160},[2362],{"type":46,"value":1057},{"type":41,"tag":102,"props":2364,"children":2365},{"style":115},[2366],{"type":46,"value":1062},{"type":41,"tag":102,"props":2368,"children":2369},{"style":212},[2370],{"type":46,"value":1067},{"type":41,"tag":102,"props":2372,"children":2373},{"style":160},[2374],{"type":46,"value":1179},{"type":41,"tag":102,"props":2376,"children":2378},{"class":104,"line":2377},12,[2379],{"type":41,"tag":102,"props":2380,"children":2381},{"emptyLinePlaceholder":513},[2382],{"type":46,"value":516},{"type":41,"tag":102,"props":2384,"children":2386},{"class":104,"line":2385},13,[2387],{"type":41,"tag":102,"props":2388,"children":2389},{"style":470},[2390],{"type":46,"value":2391},"# Remove a variable\n",{"type":41,"tag":102,"props":2393,"children":2395},{"class":104,"line":2394},14,[2396,2400,2404,2409,2413,2417,2421,2425,2429,2433],{"type":41,"tag":102,"props":2397,"children":2398},{"style":109},[2399],{"type":46,"value":14},{"type":41,"tag":102,"props":2401,"children":2402},{"style":115},[2403],{"type":46,"value":2160},{"type":41,"tag":102,"props":2405,"children":2406},{"style":115},[2407],{"type":46,"value":2408}," rm",{"type":41,"tag":102,"props":2410,"children":2411},{"style":115},[2412],{"type":46,"value":2169},{"type":41,"tag":102,"props":2414,"children":2415},{"style":115},[2416],{"type":46,"value":1052},{"type":41,"tag":102,"props":2418,"children":2419},{"style":160},[2420],{"type":46,"value":1057},{"type":41,"tag":102,"props":2422,"children":2423},{"style":115},[2424],{"type":46,"value":1062},{"type":41,"tag":102,"props":2426,"children":2427},{"style":212},[2428],{"type":46,"value":1067},{"type":41,"tag":102,"props":2430,"children":2431},{"style":160},[2432],{"type":46,"value":1072},{"type":41,"tag":102,"props":2434,"children":2435},{"style":115},[2436],{"type":46,"value":1366},{"type":41,"tag":64,"props":2438,"children":2440},{"id":2439},"inspecting-deployments",[2441],{"type":46,"value":2442},"Inspecting Deployments",{"type":41,"tag":91,"props":2444,"children":2446},{"className":93,"code":2445,"language":95,"meta":96,"style":96},"# List recent deployments\nvercel ls --format json --scope \u003Cteam-slug>\n\n# Inspect a specific deployment\nvercel inspect \u003Cdeployment-url>\n\n# View build logs (requires Vercel CLI v35+)\nvercel inspect \u003Cdeployment-url> --logs\n\n# View runtime request logs (follows live by default; add --no-follow for a one-shot snapshot)\nvercel logs \u003Cdeployment-url>\n",[2447],{"type":41,"tag":55,"props":2448,"children":2449},{"__ignoreMap":96},[2450,2458,2497,2504,2512,2539,2546,2554,2586,2593,2601],{"type":41,"tag":102,"props":2451,"children":2452},{"class":104,"line":105},[2453],{"type":41,"tag":102,"props":2454,"children":2455},{"style":470},[2456],{"type":46,"value":2457},"# List recent deployments\n",{"type":41,"tag":102,"props":2459,"children":2460},{"class":104,"line":476},[2461,2465,2469,2473,2477,2481,2485,2489,2493],{"type":41,"tag":102,"props":2462,"children":2463},{"style":109},[2464],{"type":46,"value":14},{"type":41,"tag":102,"props":2466,"children":2467},{"style":115},[2468],{"type":46,"value":1695},{"type":41,"tag":102,"props":2470,"children":2471},{"style":115},[2472],{"type":46,"value":1700},{"type":41,"tag":102,"props":2474,"children":2475},{"style":115},[2476],{"type":46,"value":1705},{"type":41,"tag":102,"props":2478,"children":2479},{"style":115},[2480],{"type":46,"value":1052},{"type":41,"tag":102,"props":2482,"children":2483},{"style":160},[2484],{"type":46,"value":1057},{"type":41,"tag":102,"props":2486,"children":2487},{"style":115},[2488],{"type":46,"value":1062},{"type":41,"tag":102,"props":2490,"children":2491},{"style":212},[2492],{"type":46,"value":1067},{"type":41,"tag":102,"props":2494,"children":2495},{"style":160},[2496],{"type":46,"value":1179},{"type":41,"tag":102,"props":2498,"children":2499},{"class":104,"line":509},[2500],{"type":41,"tag":102,"props":2501,"children":2502},{"emptyLinePlaceholder":513},[2503],{"type":46,"value":516},{"type":41,"tag":102,"props":2505,"children":2506},{"class":104,"line":519},[2507],{"type":41,"tag":102,"props":2508,"children":2509},{"style":470},[2510],{"type":46,"value":2511},"# Inspect a specific deployment\n",{"type":41,"tag":102,"props":2513,"children":2514},{"class":104,"line":528},[2515,2519,2523,2527,2531,2535],{"type":41,"tag":102,"props":2516,"children":2517},{"style":109},[2518],{"type":46,"value":14},{"type":41,"tag":102,"props":2520,"children":2521},{"style":115},[2522],{"type":46,"value":1160},{"type":41,"tag":102,"props":2524,"children":2525},{"style":160},[2526],{"type":46,"value":1057},{"type":41,"tag":102,"props":2528,"children":2529},{"style":115},[2530],{"type":46,"value":1169},{"type":41,"tag":102,"props":2532,"children":2533},{"style":212},[2534],{"type":46,"value":1174},{"type":41,"tag":102,"props":2536,"children":2537},{"style":160},[2538],{"type":46,"value":1179},{"type":41,"tag":102,"props":2540,"children":2541},{"class":104,"line":558},[2542],{"type":41,"tag":102,"props":2543,"children":2544},{"emptyLinePlaceholder":513},[2545],{"type":46,"value":516},{"type":41,"tag":102,"props":2547,"children":2548},{"class":104,"line":2278},[2549],{"type":41,"tag":102,"props":2550,"children":2551},{"style":470},[2552],{"type":46,"value":2553},"# View build logs (requires Vercel CLI v35+)\n",{"type":41,"tag":102,"props":2555,"children":2556},{"class":104,"line":2287},[2557,2561,2565,2569,2573,2577,2581],{"type":41,"tag":102,"props":2558,"children":2559},{"style":109},[2560],{"type":46,"value":14},{"type":41,"tag":102,"props":2562,"children":2563},{"style":115},[2564],{"type":46,"value":1160},{"type":41,"tag":102,"props":2566,"children":2567},{"style":160},[2568],{"type":46,"value":1057},{"type":41,"tag":102,"props":2570,"children":2571},{"style":115},[2572],{"type":46,"value":1169},{"type":41,"tag":102,"props":2574,"children":2575},{"style":212},[2576],{"type":46,"value":1174},{"type":41,"tag":102,"props":2578,"children":2579},{"style":160},[2580],{"type":46,"value":1072},{"type":41,"tag":102,"props":2582,"children":2583},{"style":115},[2584],{"type":46,"value":2585}," --logs\n",{"type":41,"tag":102,"props":2587,"children":2588},{"class":104,"line":2323},[2589],{"type":41,"tag":102,"props":2590,"children":2591},{"emptyLinePlaceholder":513},[2592],{"type":46,"value":516},{"type":41,"tag":102,"props":2594,"children":2595},{"class":104,"line":2331},[2596],{"type":41,"tag":102,"props":2597,"children":2598},{"style":470},[2599],{"type":46,"value":2600},"# View runtime request logs (follows live by default; add --no-follow for a one-shot snapshot)\n",{"type":41,"tag":102,"props":2602,"children":2603},{"class":104,"line":2340},[2604,2608,2613,2617,2621,2625],{"type":41,"tag":102,"props":2605,"children":2606},{"style":109},[2607],{"type":46,"value":14},{"type":41,"tag":102,"props":2609,"children":2610},{"style":115},[2611],{"type":46,"value":2612}," logs",{"type":41,"tag":102,"props":2614,"children":2615},{"style":160},[2616],{"type":46,"value":1057},{"type":41,"tag":102,"props":2618,"children":2619},{"style":115},[2620],{"type":46,"value":1169},{"type":41,"tag":102,"props":2622,"children":2623},{"style":212},[2624],{"type":46,"value":1174},{"type":41,"tag":102,"props":2626,"children":2627},{"style":160},[2628],{"type":46,"value":1179},{"type":41,"tag":64,"props":2630,"children":2632},{"id":2631},"managing-domains",[2633],{"type":46,"value":2634},"Managing Domains",{"type":41,"tag":91,"props":2636,"children":2638},{"className":93,"code":2637,"language":95,"meta":96,"style":96},"# List domains\nvercel domains ls --scope \u003Cteam-slug>\n\n# Add a domain to the project — linked or env-linked directory (1 arg)\nvercel domains add \u003Cdomain> --scope \u003Cteam-slug>\n\n# Add a domain — unlinked directory (requires \u003Cproject> positional)\nvercel domains add \u003Cdomain> \u003Cproject> --scope \u003Cteam-slug>\n",[2639],{"type":41,"tag":55,"props":2640,"children":2641},{"__ignoreMap":96},[2642,2650,2686,2693,2701,2754,2761,2769],{"type":41,"tag":102,"props":2643,"children":2644},{"class":104,"line":105},[2645],{"type":41,"tag":102,"props":2646,"children":2647},{"style":470},[2648],{"type":46,"value":2649},"# List domains\n",{"type":41,"tag":102,"props":2651,"children":2652},{"class":104,"line":476},[2653,2657,2662,2666,2670,2674,2678,2682],{"type":41,"tag":102,"props":2654,"children":2655},{"style":109},[2656],{"type":46,"value":14},{"type":41,"tag":102,"props":2658,"children":2659},{"style":115},[2660],{"type":46,"value":2661}," domains",{"type":41,"tag":102,"props":2663,"children":2664},{"style":115},[2665],{"type":46,"value":1695},{"type":41,"tag":102,"props":2667,"children":2668},{"style":115},[2669],{"type":46,"value":1052},{"type":41,"tag":102,"props":2671,"children":2672},{"style":160},[2673],{"type":46,"value":1057},{"type":41,"tag":102,"props":2675,"children":2676},{"style":115},[2677],{"type":46,"value":1062},{"type":41,"tag":102,"props":2679,"children":2680},{"style":212},[2681],{"type":46,"value":1067},{"type":41,"tag":102,"props":2683,"children":2684},{"style":160},[2685],{"type":46,"value":1179},{"type":41,"tag":102,"props":2687,"children":2688},{"class":104,"line":509},[2689],{"type":41,"tag":102,"props":2690,"children":2691},{"emptyLinePlaceholder":513},[2692],{"type":46,"value":516},{"type":41,"tag":102,"props":2694,"children":2695},{"class":104,"line":519},[2696],{"type":41,"tag":102,"props":2697,"children":2698},{"style":470},[2699],{"type":46,"value":2700},"# Add a domain to the project — linked or env-linked directory (1 arg)\n",{"type":41,"tag":102,"props":2702,"children":2703},{"class":104,"line":528},[2704,2708,2712,2716,2720,2725,2730,2734,2738,2742,2746,2750],{"type":41,"tag":102,"props":2705,"children":2706},{"style":109},[2707],{"type":46,"value":14},{"type":41,"tag":102,"props":2709,"children":2710},{"style":115},[2711],{"type":46,"value":2661},{"type":41,"tag":102,"props":2713,"children":2714},{"style":115},[2715],{"type":46,"value":1605},{"type":41,"tag":102,"props":2717,"children":2718},{"style":160},[2719],{"type":46,"value":1057},{"type":41,"tag":102,"props":2721,"children":2722},{"style":115},[2723],{"type":46,"value":2724},"domai",{"type":41,"tag":102,"props":2726,"children":2727},{"style":212},[2728],{"type":46,"value":2729},"n",{"type":41,"tag":102,"props":2731,"children":2732},{"style":160},[2733],{"type":46,"value":1072},{"type":41,"tag":102,"props":2735,"children":2736},{"style":115},[2737],{"type":46,"value":1052},{"type":41,"tag":102,"props":2739,"children":2740},{"style":160},[2741],{"type":46,"value":1057},{"type":41,"tag":102,"props":2743,"children":2744},{"style":115},[2745],{"type":46,"value":1062},{"type":41,"tag":102,"props":2747,"children":2748},{"style":212},[2749],{"type":46,"value":1067},{"type":41,"tag":102,"props":2751,"children":2752},{"style":160},[2753],{"type":46,"value":1179},{"type":41,"tag":102,"props":2755,"children":2756},{"class":104,"line":558},[2757],{"type":41,"tag":102,"props":2758,"children":2759},{"emptyLinePlaceholder":513},[2760],{"type":46,"value":516},{"type":41,"tag":102,"props":2762,"children":2763},{"class":104,"line":2278},[2764],{"type":41,"tag":102,"props":2765,"children":2766},{"style":470},[2767],{"type":46,"value":2768},"# Add a domain — unlinked directory (requires \u003Cproject> positional)\n",{"type":41,"tag":102,"props":2770,"children":2771},{"class":104,"line":2287},[2772,2776,2780,2784,2788,2792,2796,2800,2804,2809,2814,2818,2822,2826,2830,2834],{"type":41,"tag":102,"props":2773,"children":2774},{"style":109},[2775],{"type":46,"value":14},{"type":41,"tag":102,"props":2777,"children":2778},{"style":115},[2779],{"type":46,"value":2661},{"type":41,"tag":102,"props":2781,"children":2782},{"style":115},[2783],{"type":46,"value":1605},{"type":41,"tag":102,"props":2785,"children":2786},{"style":160},[2787],{"type":46,"value":1057},{"type":41,"tag":102,"props":2789,"children":2790},{"style":115},[2791],{"type":46,"value":2724},{"type":41,"tag":102,"props":2793,"children":2794},{"style":212},[2795],{"type":46,"value":2729},{"type":41,"tag":102,"props":2797,"children":2798},{"style":160},[2799],{"type":46,"value":1072},{"type":41,"tag":102,"props":2801,"children":2802},{"style":160},[2803],{"type":46,"value":1057},{"type":41,"tag":102,"props":2805,"children":2806},{"style":115},[2807],{"type":46,"value":2808},"projec",{"type":41,"tag":102,"props":2810,"children":2811},{"style":212},[2812],{"type":46,"value":2813},"t",{"type":41,"tag":102,"props":2815,"children":2816},{"style":160},[2817],{"type":46,"value":1072},{"type":41,"tag":102,"props":2819,"children":2820},{"style":115},[2821],{"type":46,"value":1052},{"type":41,"tag":102,"props":2823,"children":2824},{"style":160},[2825],{"type":46,"value":1057},{"type":41,"tag":102,"props":2827,"children":2828},{"style":115},[2829],{"type":46,"value":1062},{"type":41,"tag":102,"props":2831,"children":2832},{"style":212},[2833],{"type":46,"value":1067},{"type":41,"tag":102,"props":2835,"children":2836},{"style":160},[2837],{"type":46,"value":1179},{"type":41,"tag":64,"props":2839,"children":2841},{"id":2840},"stripe-projects-plan-changes",[2842],{"type":46,"value":2843},"Stripe Projects Plan Changes",{"type":41,"tag":49,"props":2845,"children":2846},{},[2847,2849,2854],{"type":46,"value":2848},"If this project is managed by Stripe Projects. ",{"type":41,"tag":429,"props":2850,"children":2851},{},[2852],{"type":46,"value":2853},"Ask the user before running any paid or destructive plan change",{"type":46,"value":2855}," — upgrades bill a real card, downgrades remove seats.",{"type":41,"tag":49,"props":2857,"children":2858},{},[2859,2861,2867,2869,2875,2877,2883],{"type":46,"value":2860},"First run ",{"type":41,"tag":55,"props":2862,"children":2864},{"className":2863},[],[2865],{"type":46,"value":2866},"stripe projects status --json",{"type":46,"value":2868}," to confirm the Vercel resource's local name. The examples below assume the default (",{"type":41,"tag":55,"props":2870,"children":2872},{"className":2871},[],[2873],{"type":46,"value":2874},"vercel-plan",{"type":46,"value":2876},"); substitute the actual name if it was renamed at ",{"type":41,"tag":55,"props":2878,"children":2880},{"className":2879},[],[2881],{"type":46,"value":2882},"stripe projects add",{"type":46,"value":2884}," time.",{"type":41,"tag":1975,"props":2886,"children":2887},{},[2888,2914],{"type":41,"tag":1572,"props":2889,"children":2890},{},[2891,2896,2898,2904,2906,2912],{"type":41,"tag":429,"props":2892,"children":2893},{},[2894],{"type":46,"value":2895},"Upgrade to Pro:",{"type":46,"value":2897}," ",{"type":41,"tag":55,"props":2899,"children":2901},{"className":2900},[],[2902],{"type":46,"value":2903},"stripe projects add vercel\u002Fpro",{"type":46,"value":2905}," (or ",{"type":41,"tag":55,"props":2907,"children":2909},{"className":2908},[],[2910],{"type":46,"value":2911},"stripe projects upgrade vercel-plan pro",{"type":46,"value":2913},")",{"type":41,"tag":1572,"props":2915,"children":2916},{},[2917,2922,2923],{"type":41,"tag":429,"props":2918,"children":2919},{},[2920],{"type":46,"value":2921},"Downgrade to Hobby:",{"type":46,"value":2897},{"type":41,"tag":55,"props":2924,"children":2926},{"className":2925},[],[2927],{"type":46,"value":2928},"stripe projects downgrade vercel-plan hobby",{"type":41,"tag":76,"props":2930,"children":2932},{"id":2931},"what-pro-gives-you",[2933],{"type":46,"value":2934},"What Pro gives you",{"type":41,"tag":1975,"props":2936,"children":2937},{},[2938,2943,2948,2953,2958],{"type":41,"tag":1572,"props":2939,"children":2940},{},[2941],{"type":46,"value":2942},"$20\u002Fmonth platform fee, includes $20\u002Fmonth of usage credit.",{"type":41,"tag":1572,"props":2944,"children":2945},{},[2946],{"type":46,"value":2947},"Turbo build machines (30 vCPUs, 60 GB memory) by default for new projects — significantly faster builds than Hobby.",{"type":41,"tag":1572,"props":2949,"children":2950},{},[2951],{"type":46,"value":2952},"1 deploying seat + unlimited free Viewer seats (read-only collaborators, preview comments).",{"type":41,"tag":1572,"props":2954,"children":2955},{},[2956],{"type":46,"value":2957},"Higher included allocations (1 TB Fast Data Transfer, 10M Edge Requests per month).",{"type":41,"tag":1572,"props":2959,"children":2960},{},[2961],{"type":46,"value":2962},"Paid add-ons available: SAML SSO, HIPAA BAA, Flags Explorer, Observability Plus, Speed Insights, Web Analytics Plus.",{"type":41,"tag":49,"props":2964,"children":2965},{},[2966,2968],{"type":46,"value":2967},"Full details: ",{"type":41,"tag":2969,"props":2970,"children":2974},"a",{"href":2971,"rel":2972},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fplans\u002Fpro-plan",[2973],"nofollow",[2975],{"type":46,"value":2971},{"type":41,"tag":64,"props":2977,"children":2979},{"id":2978},"working-agreement",[2980],{"type":46,"value":2981},"Working Agreement",{"type":41,"tag":1975,"props":2983,"children":2984},{},[2985,3009,3026,3036,3046,3070,3080,3096],{"type":41,"tag":1572,"props":2986,"children":2987},{},[2988,3007],{"type":41,"tag":429,"props":2989,"children":2990},{},[2991,2993,2998,3000,3005],{"type":46,"value":2992},"Never pass ",{"type":41,"tag":55,"props":2994,"children":2996},{"className":2995},[],[2997],{"type":46,"value":87},{"type":46,"value":2999}," as a ",{"type":41,"tag":55,"props":3001,"children":3003},{"className":3002},[],[3004],{"type":46,"value":453},{"type":46,"value":3006}," flag.",{"type":46,"value":3008}," Export it as an environment variable and let the CLI read it natively.",{"type":41,"tag":1572,"props":3010,"children":3011},{},[3012,3017,3019,3024],{"type":41,"tag":429,"props":3013,"children":3014},{},[3015],{"type":46,"value":3016},"Check the environment for tokens before asking the user.",{"type":46,"value":3018}," Look in the current env and ",{"type":41,"tag":55,"props":3020,"children":3022},{"className":3021},[],[3023],{"type":46,"value":135},{"type":46,"value":3025}," files first.",{"type":41,"tag":1572,"props":3027,"children":3028},{},[3029,3034],{"type":41,"tag":429,"props":3030,"children":3031},{},[3032],{"type":46,"value":3033},"Default to preview deployments.",{"type":46,"value":3035}," Only deploy to production when explicitly asked.",{"type":41,"tag":1572,"props":3037,"children":3038},{},[3039,3044],{"type":41,"tag":429,"props":3040,"children":3041},{},[3042],{"type":46,"value":3043},"Ask before pushing to git.",{"type":46,"value":3045}," Never push commits without the user's approval.",{"type":41,"tag":1572,"props":3047,"children":3048},{},[3049,3061,3063,3068],{"type":41,"tag":429,"props":3050,"children":3051},{},[3052,3054,3059],{"type":46,"value":3053},"Do not modify ",{"type":41,"tag":55,"props":3055,"children":3057},{"className":3056},[],[3058],{"type":46,"value":802},{"type":46,"value":3060}," files directly.",{"type":46,"value":3062}," The CLI manages this directory. Reading them (e.g. to verify ",{"type":41,"tag":55,"props":3064,"children":3066},{"className":3065},[],[3067],{"type":46,"value":1532},{"type":46,"value":3069},") is fine.",{"type":41,"tag":1572,"props":3071,"children":3072},{},[3073,3078],{"type":41,"tag":429,"props":3074,"children":3075},{},[3076],{"type":46,"value":3077},"Do not curl\u002Ffetch deployed URLs to verify.",{"type":46,"value":3079}," Just return the link to the user.",{"type":41,"tag":1572,"props":3081,"children":3082},{},[3083,3094],{"type":41,"tag":429,"props":3084,"children":3085},{},[3086,3088],{"type":46,"value":3087},"Use ",{"type":41,"tag":55,"props":3089,"children":3091},{"className":3090},[],[3092],{"type":46,"value":3093},"--format json",{"type":46,"value":3095}," when structured output will help with follow-up steps.",{"type":41,"tag":1572,"props":3097,"children":3098},{},[3099,3109],{"type":41,"tag":429,"props":3100,"children":3101},{},[3102,3103],{"type":46,"value":3087},{"type":41,"tag":55,"props":3104,"children":3106},{"className":3105},[],[3107],{"type":46,"value":3108},"-y",{"type":46,"value":3110}," on commands that prompt for confirmation to avoid interactive blocking.",{"type":41,"tag":64,"props":3112,"children":3114},{"id":3113},"troubleshooting",[3115],{"type":46,"value":3116},"Troubleshooting",{"type":41,"tag":76,"props":3118,"children":3120},{"id":3119},"token-not-found",[3121],{"type":46,"value":3122},"Token not found",{"type":41,"tag":49,"props":3124,"children":3125},{},[3126,3128,3133],{"type":46,"value":3127},"Check the environment and any ",{"type":41,"tag":55,"props":3129,"children":3131},{"className":3130},[],[3132],{"type":46,"value":135},{"type":46,"value":3134}," files present:",{"type":41,"tag":91,"props":3136,"children":3138},{"className":93,"code":3137,"language":95,"meta":96,"style":96},"printenv | grep -i vercel\ngrep -i vercel .env 2>\u002Fdev\u002Fnull\n",[3139],{"type":41,"tag":55,"props":3140,"children":3141},{"__ignoreMap":96},[3142,3166],{"type":41,"tag":102,"props":3143,"children":3144},{"class":104,"line":105},[3145,3149,3153,3158,3162],{"type":41,"tag":102,"props":3146,"children":3147},{"style":109},[3148],{"type":46,"value":112},{"type":41,"tag":102,"props":3150,"children":3151},{"style":160},[3152],{"type":46,"value":245},{"type":41,"tag":102,"props":3154,"children":3155},{"style":109},[3156],{"type":46,"value":3157}," grep",{"type":41,"tag":102,"props":3159,"children":3160},{"style":115},[3161],{"type":46,"value":310},{"type":41,"tag":102,"props":3163,"children":3164},{"style":115},[3165],{"type":46,"value":928},{"type":41,"tag":102,"props":3167,"children":3168},{"class":104,"line":476},[3169,3173,3177,3181,3185,3189],{"type":41,"tag":102,"props":3170,"children":3171},{"style":109},[3172],{"type":46,"value":157},{"type":41,"tag":102,"props":3174,"children":3175},{"style":115},[3176],{"type":46,"value":310},{"type":41,"tag":102,"props":3178,"children":3179},{"style":115},[3180],{"type":46,"value":2155},{"type":41,"tag":102,"props":3182,"children":3183},{"style":115},[3184],{"type":46,"value":178},{"type":41,"tag":102,"props":3186,"children":3187},{"style":160},[3188],{"type":46,"value":183},{"type":41,"tag":102,"props":3190,"children":3191},{"style":115},[3192],{"type":46,"value":188},{"type":41,"tag":76,"props":3194,"children":3196},{"id":3195},"authentication-error",[3197],{"type":46,"value":3198},"Authentication error",{"type":41,"tag":49,"props":3200,"children":3201},{},[3202,3204,3210],{"type":46,"value":3203},"If the CLI fails with ",{"type":41,"tag":55,"props":3205,"children":3207},{"className":3206},[],[3208],{"type":46,"value":3209},"Authentication required",{"type":46,"value":346},{"type":41,"tag":1975,"props":3212,"children":3213},{},[3214,3219,3238],{"type":41,"tag":1572,"props":3215,"children":3216},{},[3217],{"type":46,"value":3218},"The token may be expired or invalid.",{"type":41,"tag":1572,"props":3220,"children":3221},{},[3222,3224,3229,3231,3236],{"type":46,"value":3223},"Verify: ",{"type":41,"tag":55,"props":3225,"children":3227},{"className":3226},[],[3228],{"type":46,"value":2103},{"type":46,"value":3230}," (uses ",{"type":41,"tag":55,"props":3232,"children":3234},{"className":3233},[],[3235],{"type":46,"value":87},{"type":46,"value":3237}," from environment).",{"type":41,"tag":1572,"props":3239,"children":3240},{},[3241],{"type":46,"value":3242},"Ask the user for a fresh token.",{"type":41,"tag":76,"props":3244,"children":3246},{"id":3245},"wrong-team",[3247],{"type":46,"value":3248},"Wrong team",{"type":41,"tag":49,"props":3250,"children":3251},{},[3252],{"type":46,"value":3253},"Verify the scope is correct:",{"type":41,"tag":91,"props":3255,"children":3257},{"className":93,"code":3256,"language":95,"meta":96,"style":96},"vercel whoami --scope \u003Cteam-slug>\n",[3258],{"type":41,"tag":55,"props":3259,"children":3260},{"__ignoreMap":96},[3261],{"type":41,"tag":102,"props":3262,"children":3263},{"class":104,"line":105},[3264,3268,3273,3277,3281,3285,3289],{"type":41,"tag":102,"props":3265,"children":3266},{"style":109},[3267],{"type":46,"value":14},{"type":41,"tag":102,"props":3269,"children":3270},{"style":115},[3271],{"type":46,"value":3272}," whoami",{"type":41,"tag":102,"props":3274,"children":3275},{"style":115},[3276],{"type":46,"value":1052},{"type":41,"tag":102,"props":3278,"children":3279},{"style":160},[3280],{"type":46,"value":1057},{"type":41,"tag":102,"props":3282,"children":3283},{"style":115},[3284],{"type":46,"value":1062},{"type":41,"tag":102,"props":3286,"children":3287},{"style":212},[3288],{"type":46,"value":1067},{"type":41,"tag":102,"props":3290,"children":3291},{"style":160},[3292],{"type":46,"value":1179},{"type":41,"tag":76,"props":3294,"children":3296},{"id":3295},"build-failure",[3297],{"type":46,"value":3298},"Build failure",{"type":41,"tag":49,"props":3300,"children":3301},{},[3302],{"type":46,"value":3303},"Check the build logs:",{"type":41,"tag":91,"props":3305,"children":3307},{"className":93,"code":3306,"language":95,"meta":96,"style":96},"vercel inspect \u003Cdeployment-url> --logs\n",[3308],{"type":41,"tag":55,"props":3309,"children":3310},{"__ignoreMap":96},[3311],{"type":41,"tag":102,"props":3312,"children":3313},{"class":104,"line":105},[3314,3318,3322,3326,3330,3334,3338],{"type":41,"tag":102,"props":3315,"children":3316},{"style":109},[3317],{"type":46,"value":14},{"type":41,"tag":102,"props":3319,"children":3320},{"style":115},[3321],{"type":46,"value":1160},{"type":41,"tag":102,"props":3323,"children":3324},{"style":160},[3325],{"type":46,"value":1057},{"type":41,"tag":102,"props":3327,"children":3328},{"style":115},[3329],{"type":46,"value":1169},{"type":41,"tag":102,"props":3331,"children":3332},{"style":212},[3333],{"type":46,"value":1174},{"type":41,"tag":102,"props":3335,"children":3336},{"style":160},[3337],{"type":46,"value":1072},{"type":41,"tag":102,"props":3339,"children":3340},{"style":115},[3341],{"type":46,"value":2585},{"type":41,"tag":49,"props":3343,"children":3344},{},[3345],{"type":46,"value":3346},"Common causes:",{"type":41,"tag":1975,"props":3348,"children":3349},{},[3350,3363,3375],{"type":41,"tag":1572,"props":3351,"children":3352},{},[3353,3355,3361],{"type":46,"value":3354},"Missing dependencies — ensure ",{"type":41,"tag":55,"props":3356,"children":3358},{"className":3357},[],[3359],{"type":46,"value":3360},"package.json",{"type":46,"value":3362}," is complete and committed.",{"type":41,"tag":1572,"props":3364,"children":3365},{},[3366,3368,3374],{"type":46,"value":3367},"Missing environment variables — add with ",{"type":41,"tag":55,"props":3369,"children":3371},{"className":3370},[],[3372],{"type":46,"value":3373},"vercel env add",{"type":46,"value":62},{"type":41,"tag":1572,"props":3376,"children":3377},{},[3378,3380,3386,3388,3393,3395,3400],{"type":46,"value":3379},"Framework misconfiguration — check ",{"type":41,"tag":55,"props":3381,"children":3383},{"className":3382},[],[3384],{"type":46,"value":3385},"vercel.json",{"type":46,"value":3387},". Vercel auto-detects frameworks (Next.js, Remix, Vite, etc.) from ",{"type":41,"tag":55,"props":3389,"children":3391},{"className":3390},[],[3392],{"type":46,"value":3360},{"type":46,"value":3394},"; override with ",{"type":41,"tag":55,"props":3396,"children":3398},{"className":3397},[],[3399],{"type":46,"value":3385},{"type":46,"value":3401}," if detection is wrong.",{"type":41,"tag":76,"props":3403,"children":3405},{"id":3404},"cli-not-installed",[3406],{"type":46,"value":3407},"CLI not installed",{"type":41,"tag":91,"props":3409,"children":3411},{"className":93,"code":3410,"language":95,"meta":96,"style":96},"npm install -g vercel\n",[3412],{"type":41,"tag":55,"props":3413,"children":3414},{"__ignoreMap":96},[3415],{"type":41,"tag":102,"props":3416,"children":3417},{"class":104,"line":105},[3418,3422,3426,3430],{"type":41,"tag":102,"props":3419,"children":3420},{"style":109},[3421],{"type":46,"value":913},{"type":41,"tag":102,"props":3423,"children":3424},{"style":115},[3425],{"type":46,"value":918},{"type":41,"tag":102,"props":3427,"children":3428},{"style":115},[3429],{"type":46,"value":923},{"type":41,"tag":102,"props":3431,"children":3432},{"style":115},[3433],{"type":46,"value":928},{"type":41,"tag":3435,"props":3436,"children":3437},"style",{},[3438],{"type":46,"value":3439},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3441,"total":3601},[3442,3460,3472,3484,3499,3516,3528,3541,3552,3561,3567,3586],{"slug":3443,"name":3443,"fn":3444,"description":3445,"org":3446,"tags":3447,"stars":3457,"repoUrl":3458,"updatedAt":3459},"agent-browser","automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3448,3451,3454],{"name":3449,"slug":3450,"type":15},"Agents","agents",{"name":3452,"slug":3453,"type":15},"Automation","automation",{"name":3455,"slug":3456,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":3461,"name":3461,"fn":3462,"description":3463,"org":3464,"tags":3465,"stars":3457,"repoUrl":3458,"updatedAt":3471},"agentcore","run browser automation on AWS Bedrock","Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include \"use agentcore\", \"run on AWS\", \"cloud browser with AWS\", \"bedrock browser\", \"agentcore session\", or any task requiring AWS-hosted browser automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3466,3467,3470],{"name":3452,"slug":3453,"type":15},{"name":3468,"slug":3469,"type":15},"AWS","aws",{"name":3455,"slug":3456,"type":15},"2026-07-17T06:08:33.665276",{"slug":3473,"name":3473,"fn":3474,"description":3475,"org":3476,"tags":3477,"stars":3457,"repoUrl":3458,"updatedAt":3483},"core","navigate and interact with web pages","Core agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3478,3479,3480],{"name":3449,"slug":3450,"type":15},{"name":3455,"slug":3456,"type":15},{"name":3481,"slug":3482,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":3485,"name":3485,"fn":3486,"description":3487,"org":3488,"tags":3489,"stars":3457,"repoUrl":3458,"updatedAt":3498},"derive-client","reverse engineer internal APIs from browser traffic","Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to \"derive a client\", \"build a CLI for \u003Csite>\", \"reverse engineer this site's API\", \"record network requests\", \"turn this site into an API\", or when the same site will be automated repeatedly and direct HTTP calls would beat driving the browser every time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3490,3493,3494,3495],{"name":3491,"slug":3492,"type":15},"API Development","api-development",{"name":3452,"slug":3453,"type":15},{"name":3455,"slug":3456,"type":15},{"name":3496,"slug":3497,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":3500,"name":3500,"fn":3501,"description":3502,"org":3503,"tags":3504,"stars":3457,"repoUrl":3458,"updatedAt":3515},"dogfood","perform exploratory testing on web applications","Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to \"dogfood\", \"QA\", \"exploratory test\", \"find issues\", \"bug hunt\", \"test this app\u002Fsite\u002Fplatform\", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3505,3506,3509,3512],{"name":3455,"slug":3456,"type":15},{"name":3507,"slug":3508,"type":15},"Debugging","debugging",{"name":3510,"slug":3511,"type":15},"QA","qa",{"name":3513,"slug":3514,"type":15},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":3517,"name":3517,"fn":3518,"description":3519,"org":3520,"tags":3521,"stars":3457,"repoUrl":3458,"updatedAt":3527},"electron","automate Electron desktop applications","Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include \"automate Slack app\", \"control VS Code\", \"interact with Discord app\", \"test this Electron app\", \"connect to desktop app\", or any task requiring automation of a native Electron application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3522,3523,3524],{"name":3449,"slug":3450,"type":15},{"name":3455,"slug":3456,"type":15},{"name":3525,"slug":3526,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":3529,"name":3529,"fn":3530,"description":3531,"org":3532,"tags":3533,"stars":3457,"repoUrl":3458,"updatedAt":3540},"slack","interact with Slack workspaces","Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include \"check my Slack\", \"what channels have unreads\", \"send a message to\", \"search Slack for\", \"extract from Slack\", \"find who said\", or any task requiring programmatic Slack interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3534,3535,3538],{"name":3455,"slug":3456,"type":15},{"name":3536,"slug":3537,"type":15},"Messaging","messaging",{"name":3539,"slug":3529,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":3542,"name":3542,"fn":3543,"description":3544,"org":3545,"tags":3546,"stars":3457,"repoUrl":3458,"updatedAt":3551},"vercel-sandbox","run browser automation in Vercel Sandbox","Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across commands, or wants ephemeral isolated browser environments. Triggers include \"Vercel Sandbox browser\", \"microVM Chrome\", \"agent-browser in sandbox\", \"browser automation on Vercel\", or any task requiring Chrome in a Vercel Sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3547,3548,3549,3550],{"name":3452,"slug":3453,"type":15},{"name":3455,"slug":3456,"type":15},{"name":3513,"slug":3514,"type":15},{"name":13,"slug":14,"type":15},"2026-07-17T06:08:28.349899",{"slug":3553,"name":3553,"fn":3554,"description":3555,"org":3556,"tags":3557,"stars":22,"repoUrl":23,"updatedAt":3560},"deploy-to-vercel","deploy applications 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\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3558,3559],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},"2026-07-17T06:08:41.18374",{"slug":4,"name":4,"fn":5,"description":6,"org":3562,"tags":3563,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3564,3565,3566],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"slug":3568,"name":3568,"fn":3569,"description":3570,"org":3571,"tags":3572,"stars":22,"repoUrl":23,"updatedAt":3585},"vercel-composition-patterns","implement scalable React composition patterns","React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3573,3576,3579,3582],{"name":3574,"slug":3575,"type":15},"Best Practices","best-practices",{"name":3577,"slug":3578,"type":15},"Frontend","frontend",{"name":3580,"slug":3581,"type":15},"React","react",{"name":3583,"slug":3584,"type":15},"UI Components","ui-components","2026-07-17T06:05:40.576913",{"slug":3587,"name":3587,"fn":3588,"description":3589,"org":3590,"tags":3591,"stars":22,"repoUrl":23,"updatedAt":3600},"vercel-optimize","optimize Vercel project performance and costs","Use for Vercel cost and performance optimization on deployed projects, especially Next.js, SvelteKit, Nuxt, and limited Astro apps. Collect Vercel metrics, usage, project config, and code scan results first; investigate only metric-backed candidates; produce ranked recommendations grounded in verified files and version-aware Vercel\u002Fframework docs. Trigger for Vercel bill reduction, slow or expensive routes, caching opportunities, Function Invocations, Build Minutes, Fast Data Transfer, Core Web Vitals, Bot Management, Fluid compute, or cost breakdown requests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3592,3595,3596,3599],{"name":3593,"slug":3594,"type":15},"Cost Optimization","cost-optimization",{"name":20,"slug":21,"type":15},{"name":3597,"slug":3598,"type":15},"Performance","performance",{"name":13,"slug":14,"type":15},"2026-07-17T06:04:08.327515",100,{"items":3603,"total":2323},[3604,3609,3615,3622,3629,3642,3659],{"slug":3553,"name":3553,"fn":3554,"description":3555,"org":3605,"tags":3606,"stars":22,"repoUrl":23,"updatedAt":3560},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3607,3608],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":3610,"tags":3611,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3612,3613,3614],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"slug":3568,"name":3568,"fn":3569,"description":3570,"org":3616,"tags":3617,"stars":22,"repoUrl":23,"updatedAt":3585},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3618,3619,3620,3621],{"name":3574,"slug":3575,"type":15},{"name":3577,"slug":3578,"type":15},{"name":3580,"slug":3581,"type":15},{"name":3583,"slug":3584,"type":15},{"slug":3587,"name":3587,"fn":3588,"description":3589,"org":3623,"tags":3624,"stars":22,"repoUrl":23,"updatedAt":3600},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3625,3626,3627,3628],{"name":3593,"slug":3594,"type":15},{"name":20,"slug":21,"type":15},{"name":3597,"slug":3598,"type":15},{"name":13,"slug":14,"type":15},{"slug":3630,"name":3630,"fn":3631,"description":3632,"org":3633,"tags":3634,"stars":22,"repoUrl":23,"updatedAt":3641},"vercel-react-best-practices","optimize React and Next.js performance","React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React\u002FNext.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3635,3636,3639,3640],{"name":3577,"slug":3578,"type":15},{"name":3637,"slug":3638,"type":15},"Next.js","next-js",{"name":3597,"slug":3598,"type":15},{"name":3580,"slug":3581,"type":15},"2026-07-17T06:08:41.518893",{"slug":3643,"name":3643,"fn":3644,"description":3645,"org":3646,"tags":3647,"stars":22,"repoUrl":23,"updatedAt":3658},"vercel-react-native-skills","build performant React Native mobile apps","React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3648,3651,3654,3655],{"name":3649,"slug":3650,"type":15},"Expo","expo",{"name":3652,"slug":3653,"type":15},"Mobile","mobile",{"name":3597,"slug":3598,"type":15},{"name":3656,"slug":3657,"type":15},"React Native","react-native","2026-07-17T06:04:08.681158",{"slug":3660,"name":3660,"fn":3661,"description":3662,"org":3663,"tags":3664,"stars":22,"repoUrl":23,"updatedAt":3670},"vercel-react-view-transitions","implement React View Transitions","Guide for implementing smooth, native-feeling animations using React's View Transition API (`\u003CViewTransition>` component, `addTransitionType`, and CSS view transition pseudo-elements). Use this skill whenever the user wants to add page transitions, animate route changes, create shared element animations, animate enter\u002Fexit of components, animate list reorder, implement directional (forward\u002Fback) navigation animations, or integrate view transitions in Next.js. Also use when the user mentions view transitions, `startViewTransition`, `ViewTransition`, transition types, or asks about animating between UI states in React without third-party animation libraries.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3665,3668,3669],{"name":3666,"slug":3667,"type":15},"Animation","animation",{"name":3577,"slug":3578,"type":15},{"name":3580,"slug":3581,"type":15},"2026-07-26T05:48:25.346984"]