[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-deploy-to-vercel":3,"mdc--d3l4m2-key":33,"related-repo-jetbrains-deploy-to-vercel":2248,"related-org-jetbrains-deploy-to-vercel":2372},{"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},"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":9},"jetbrains","JetBrains","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fjetbrains.png",[12,16,19],{"name":13,"slug":14,"type":15},"Vercel","vercel","tag",{"name":17,"slug":18,"type":15},"Deployment","deployment",{"name":20,"slug":21,"type":15},"Web Development","web-development",252,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills","2026-07-13T06:41:24.08674",null,17,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Curated agent skills collection verified by JetBrains","https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills\u002Ftree\u002FHEAD\u002Fvercel-deploy-claimable","---\nname: deploy-to-vercel\ndescription: 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\".\nmetadata:\n  short-description: \"Deploy apps and sites to Vercel\"\n  author: Vercel\n  version: \"3.0.0\"\n  source: https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills\u002Ftree\u002Fmain\u002Fskills\u002Fdeploy-to-vercel\n---\n\n# Deploy to Vercel\n\nDeploy any project to Vercel. **Always deploy as preview** (not production) unless the user explicitly asks for production.\n\nThe goal is to get the user into the best long-term setup: their project linked to Vercel with git-push deploys. Every method below tries to move the user closer to that state.\n\n## Step 1: Gather Project State\n\nRun all four checks before deciding which method to use:\n\n```bash\n# 1. Check for a git remote\ngit remote get-url origin 2>\u002Fdev\u002Fnull\n\n# 2. Check if locally linked to a Vercel project (either file means linked)\ncat .vercel\u002Fproject.json 2>\u002Fdev\u002Fnull || cat .vercel\u002Frepo.json 2>\u002Fdev\u002Fnull\n\n# 3. Check if the Vercel CLI is installed and authenticated\nvercel whoami 2>\u002Fdev\u002Fnull\n\n# 4. List available teams (if authenticated)\nvercel teams list --format json 2>\u002Fdev\u002Fnull\n```\n\n### Team selection\n\nIf the user belongs to multiple teams, present all available team slugs as a bulleted list and ask which one to deploy to. Once the user picks a team, proceed immediately to the next step — do not ask for additional confirmation.\n\nPass the team slug via `--scope` on all subsequent CLI commands (`vercel deploy`, `vercel link`, `vercel inspect`, etc.):\n\n```bash\nvercel deploy [path] -y --no-wait --scope \u003Cteam-slug>\n```\n\nIf the project is already linked (`.vercel\u002Fproject.json` or `.vercel\u002Frepo.json` exists), the `orgId` in those files determines the team — no need to ask again. If there is only one team (or just a personal account), skip the prompt and use it directly.\n\n**About the `.vercel\u002F` directory:** A linked project has either:\n- `.vercel\u002Fproject.json` — created by `vercel link` (single project linking). Contains `projectId` and `orgId`.\n- `.vercel\u002Frepo.json` — created by `vercel link --repo` (repo-based linking). Contains `orgId`, `remoteName`, and a `projects` array mapping directories to Vercel project IDs.\n\nEither file means the project is linked. Check for both.\n\n**Do NOT** use `vercel project inspect`, `vercel ls`, or `vercel link` to detect state in an unlinked directory — without a `.vercel\u002F` config, they will interactively prompt (or with `--yes`, silently link as a side-effect). Only `vercel whoami` is safe to run anywhere.\n\n## Step 2: Choose a Deploy Method\n\n### Linked (`.vercel\u002F` exists) + has git remote → Git Push\n\nThis is the ideal state. The project is linked and has git integration.\n\n1. **Ask the user before pushing.** Never push without explicit approval:\n   ```\n   This project is connected to Vercel via git. I can commit and push to\n   trigger a deployment. Want me to proceed?\n   ```\n\n2. **Commit and push:**\n   ```bash\n   git add .\n   git commit -m \"deploy: \u003Cdescription of changes>\"\n   git push\n   ```\n   Vercel automatically builds from the push. Non-production branches get preview deployments; the production branch (usually `main`) gets a production deployment.\n\n3. **Retrieve the preview URL.** If the CLI is authenticated:\n   ```bash\n   sleep 5\n   vercel ls --format json\n   ```\n   The JSON output has a `deployments` array. Find the latest entry — its `url` field is the preview URL.\n\n   If the CLI is not authenticated, tell the user to check the Vercel dashboard or the commit status checks on their git provider for the preview URL.\n\n---\n\n### Linked (`.vercel\u002F` exists) + no git remote → `vercel deploy`\n\nThe project is linked but there's no git repo. Deploy directly with the CLI.\n\n```bash\nvercel deploy [path] -y --no-wait\n```\n\nUse `--no-wait` so the CLI returns immediately with the deployment URL instead of blocking until the build finishes (builds can take a while). Then check on the deployment status with:\n\n```bash\nvercel inspect \u003Cdeployment-url>\n```\n\nFor production deploys (only if user explicitly asks):\n```bash\nvercel deploy [path] --prod -y --no-wait\n```\n\n---\n\n### Not linked + CLI is authenticated → Link first, then deploy\n\nThe CLI is working but the project isn't linked yet. This is the opportunity to get the user into the best state.\n\n1. **Ask the user which team to deploy to.** Present the team slugs from Step 1 as a bulleted list. If there's only one team (or just a personal account), skip this step.\n\n2. **Once a team is selected, proceed directly to linking.** Tell the user what will happen but do not ask for separate confirmation:\n   ```\n   Linking this project to \u003Cteam name> on Vercel. This will create a Vercel\n   project to deploy to and enable automatic deployments on future git pushes.\n   ```\n\n3. **If a git remote exists**, use repo-based linking with the selected team scope:\n   ```bash\n   vercel link --repo --scope \u003Cteam-slug>\n   ```\n   This reads the git remote URL and matches it to existing Vercel projects that deploy from that repo. It creates `.vercel\u002Frepo.json`. This is much more reliable than `vercel link` (without `--repo`), which tries to match by directory name and often fails when the local folder and Vercel project are named differently.\n\n   **If there is no git remote**, fall back to standard linking:\n   ```bash\n   vercel link --scope \u003Cteam-slug>\n   ```\n   This prompts the user to select or create a project. It creates `.vercel\u002Fproject.json`.\n\n4. **Then deploy using the best available method:**\n   - If a git remote exists → commit and push (see git push method above)\n   - If no git remote → `vercel deploy [path] -y --no-wait --scope \u003Cteam-slug>`, then `vercel inspect \u003Curl>` to check status\n\n---\n\n### Not linked + CLI not authenticated → Install, auth, link, deploy\n\nThe Vercel CLI isn't set up at all.\n\n1. **Install the CLI (if not already installed):**\n   ```bash\n   npm install -g vercel\n   ```\n\n2. **Authenticate:**\n   ```bash\n   vercel login\n   ```\n   The user completes auth in their browser. If running in a non-interactive environment where login is not possible, skip to the **no-auth fallback** below.\n\n3. **Ask which team to deploy to** — present team slugs from `vercel teams list --format json` as a bulleted list. If only one team \u002F personal account, skip. Once selected, proceed immediately.\n\n4. **Link the project** with the selected team scope (use `--repo` if a git remote exists, plain `vercel link` otherwise):\n   ```bash\n   vercel link --repo --scope \u003Cteam-slug>   # if git remote exists\n   vercel link --scope \u003Cteam-slug>          # if no git remote\n   ```\n\n5. **Deploy** using the best available method (git push if remote exists, otherwise `vercel deploy -y --no-wait --scope \u003Cteam-slug>`, then `vercel inspect \u003Curl>` to check status).\n\n---\n\n### No-Auth Fallback — claude.ai sandbox\n\n**When to use:** Last resort when the CLI can't be installed or authenticated in the claude.ai sandbox. This requires no authentication — it returns a **Preview URL** (live site) and a **Claim URL** (transfer to your Vercel account).\n\n```bash\nbash \u002Fmnt\u002Fskills\u002Fuser\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh [path]\n```\n\n**Arguments:**\n- `path` - Directory to deploy, or a `.tgz` file (defaults to current directory)\n\n**Examples:**\n```bash\n# Deploy current directory\nbash \u002Fmnt\u002Fskills\u002Fuser\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh\n\n# Deploy specific project\nbash \u002Fmnt\u002Fskills\u002Fuser\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh \u002Fpath\u002Fto\u002Fproject\n\n# Deploy existing tarball\nbash \u002Fmnt\u002Fskills\u002Fuser\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh \u002Fpath\u002Fto\u002Fproject.tgz\n```\n\nThe script auto-detects the framework from `package.json`, packages the project (excluding `node_modules`, `.git`, `.env`), uploads it, and waits for the build to complete.\n\n**Tell the user:** \"Your deployment is ready at [previewUrl]. Claim it at [claimUrl] to manage your deployment.\"\n\n---\n\n### No-Auth Fallback — Codex sandbox\n\n**When to use:** In the Codex sandbox where the CLI may not be authenticated. Codex runs in a sandboxed environment by default — try the CLI first, and fall back to the deploy script if auth fails.\n\n1. **Check whether the Vercel CLI is installed** (no escalation needed for this check):\n   ```bash\n   command -v vercel\n   ```\n\n2. **If `vercel` is installed**, try deploying with the CLI:\n   ```bash\n   vercel deploy [path] -y --no-wait\n   ```\n\n3. **If `vercel` is not installed, or the CLI fails with \"No existing credentials found\"**, use the fallback script:\n   ```bash\n   skill_dir=\"\u003Cpath-to-skill>\"\n\n   # Deploy current directory\n   bash \"$skill_dir\u002Fresources\u002Fdeploy-codex.sh\"\n\n   # Deploy specific project\n   bash \"$skill_dir\u002Fresources\u002Fdeploy-codex.sh\" \u002Fpath\u002Fto\u002Fproject\n\n   # Deploy existing tarball\n   bash \"$skill_dir\u002Fresources\u002Fdeploy-codex.sh\" \u002Fpath\u002Fto\u002Fproject.tgz\n   ```\n\nThe script handles framework detection, packaging, and deployment. It waits for the build to complete and returns JSON with `previewUrl` and `claimUrl`.\n\n**Tell the user:** \"Your deployment is ready at [previewUrl]. Claim it at [claimUrl] to manage your deployment.\"\n\n**Escalated network access:** Only escalate the actual deploy command if sandboxing blocks the network call (`sandbox_permissions=require_escalated`). Do **not** escalate the `command -v vercel` check.\n\n---\n\n## Agent-Specific Notes\n\n### Claude Code \u002F terminal-based agents\n\nYou have full shell access. Do NOT use the `\u002Fmnt\u002Fskills\u002F` path. Follow the decision flow above using the CLI directly.\n\nFor the no-auth fallback, run the deploy script from the skill's installed location:\n```bash\nbash ~\u002F.claude\u002Fskills\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh [path]\n```\nThe path may vary depending on where the user installed the skill.\n\n### Sandboxed environments (claude.ai)\n\nYou likely cannot run `vercel login` or `git push`. Go directly to the **no-auth fallback — claude.ai sandbox**.\n\n### Codex\n\nCodex runs in a sandbox. Check if the CLI is available first, then fall back to the deploy script. Go to the **no-auth fallback — Codex sandbox**.\n\n---\n\n## Output\n\nAlways show the user the deployment URL.\n\n- **Git push:** Use `vercel ls --format json` to find the preview URL. If the CLI isn't authenticated, tell the user to check the Vercel dashboard or commit status checks.\n- **CLI deploy:** Show the URL returned by `vercel deploy --no-wait`. Use `vercel inspect \u003Curl>` to check build status and report it to the user.\n- **No-auth fallback:** Show both the preview URL and the claim URL:\n  ```\n  Deployment successful!\n\n  Preview URL: https:\u002F\u002Fmy-app-abc123.vercel.app\n  Claim URL:   https:\u002F\u002Fvercel.com\u002Fclaim-deployment?code=...\n\n  View your site at the Preview URL.\n  To transfer this deployment to your Vercel account, visit the Claim URL.\n  ```\n\n**Do not** curl or fetch the deployed URL to verify it works. Just return the link.\n\n---\n\n## Troubleshooting\n\n### Network Egress Error (claude.ai)\n\nIf deployment fails due to network restrictions on claude.ai, tell the user:\n\n```\nDeployment failed due to network restrictions. To fix this:\n\n1. Go to https:\u002F\u002Fclaude.ai\u002Fsettings\u002Fcapabilities\n2. Add *.vercel.com to the allowed domains\n3. Try deploying again\n```\n\n### Escalated Network Access (Codex \u002F sandboxed environments)\n\nIf deployment fails due to network issues (timeouts, DNS errors, connection resets) in a sandboxed environment, rerun with escalated permissions (`sandbox_permissions=require_escalated`). Do not escalate the initial CLI availability check — only escalate the actual deploy command.\n\nExample guidance to the user:\n```\nThe deploy needs escalated network access to deploy to Vercel. I can rerun\nthe command with escalated permissions — want me to proceed?\n```\n\n### CLI Auth Failure\n\nIf `vercel login` or `vercel deploy` fails with authentication errors, fall back to the no-auth deploy script (claude.ai or Codex variant, depending on the environment).\n",{"data":34,"body":39},{"name":4,"description":6,"metadata":35},{"short-description":36,"author":13,"version":37,"source":38},"Deploy apps and sites to Vercel","3.0.0","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills\u002Ftree\u002Fmain\u002Fskills\u002Fdeploy-to-vercel",{"type":40,"children":41},"root",[42,50,64,69,76,81,298,305,310,346,386,415,433,509,514,569,575,588,593,785,789,806,811,834,847,885,890,913,916,922,927,1139,1142,1148,1153,1383,1386,1392,1416,1440,1448,1470,1478,1567,1602,1626,1629,1635,1644,1891,1908,1926,1959,1962,1968,1974,1987,1992,2015,2020,2026,2052,2058,2069,2072,2078,2083,2148,2158,2161,2167,2173,2178,2187,2193,2205,2210,2219,2225,2242],{"type":43,"tag":44,"props":45,"children":46},"element","h1",{"id":4},[47],{"type":48,"value":49},"text","Deploy to Vercel",{"type":43,"tag":51,"props":52,"children":53},"p",{},[54,56,62],{"type":48,"value":55},"Deploy any project to Vercel. ",{"type":43,"tag":57,"props":58,"children":59},"strong",{},[60],{"type":48,"value":61},"Always deploy as preview",{"type":48,"value":63}," (not production) unless the user explicitly asks for production.",{"type":43,"tag":51,"props":65,"children":66},{},[67],{"type":48,"value":68},"The goal is to get the user into the best long-term setup: their project linked to Vercel with git-push deploys. Every method below tries to move the user closer to that state.",{"type":43,"tag":70,"props":71,"children":73},"h2",{"id":72},"step-1-gather-project-state",[74],{"type":48,"value":75},"Step 1: Gather Project State",{"type":43,"tag":51,"props":77,"children":78},{},[79],{"type":48,"value":80},"Run all four checks before deciding which method to use:",{"type":43,"tag":82,"props":83,"children":88},"pre",{"className":84,"code":85,"language":86,"meta":87,"style":87},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# 1. Check for a git remote\ngit remote get-url origin 2>\u002Fdev\u002Fnull\n\n# 2. Check if locally linked to a Vercel project (either file means linked)\ncat .vercel\u002Fproject.json 2>\u002Fdev\u002Fnull || cat .vercel\u002Frepo.json 2>\u002Fdev\u002Fnull\n\n# 3. Check if the Vercel CLI is installed and authenticated\nvercel whoami 2>\u002Fdev\u002Fnull\n\n# 4. List available teams (if authenticated)\nvercel teams list --format json 2>\u002Fdev\u002Fnull\n","bash","",[89],{"type":43,"tag":90,"props":91,"children":92},"code",{"__ignoreMap":87},[93,105,142,152,161,207,215,224,245,253,262],{"type":43,"tag":94,"props":95,"children":98},"span",{"class":96,"line":97},"line",1,[99],{"type":43,"tag":94,"props":100,"children":102},{"style":101},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[103],{"type":48,"value":104},"# 1. Check for a git remote\n",{"type":43,"tag":94,"props":106,"children":108},{"class":96,"line":107},2,[109,115,121,126,131,137],{"type":43,"tag":94,"props":110,"children":112},{"style":111},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[113],{"type":48,"value":114},"git",{"type":43,"tag":94,"props":116,"children":118},{"style":117},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[119],{"type":48,"value":120}," remote",{"type":43,"tag":94,"props":122,"children":123},{"style":117},[124],{"type":48,"value":125}," get-url",{"type":43,"tag":94,"props":127,"children":128},{"style":117},[129],{"type":48,"value":130}," origin",{"type":43,"tag":94,"props":132,"children":134},{"style":133},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[135],{"type":48,"value":136}," 2>",{"type":43,"tag":94,"props":138,"children":139},{"style":117},[140],{"type":48,"value":141},"\u002Fdev\u002Fnull\n",{"type":43,"tag":94,"props":143,"children":145},{"class":96,"line":144},3,[146],{"type":43,"tag":94,"props":147,"children":149},{"emptyLinePlaceholder":148},true,[150],{"type":48,"value":151},"\n",{"type":43,"tag":94,"props":153,"children":155},{"class":96,"line":154},4,[156],{"type":43,"tag":94,"props":157,"children":158},{"style":101},[159],{"type":48,"value":160},"# 2. Check if locally linked to a Vercel project (either file means linked)\n",{"type":43,"tag":94,"props":162,"children":164},{"class":96,"line":163},5,[165,170,175,179,184,189,194,199,203],{"type":43,"tag":94,"props":166,"children":167},{"style":111},[168],{"type":48,"value":169},"cat",{"type":43,"tag":94,"props":171,"children":172},{"style":117},[173],{"type":48,"value":174}," .vercel\u002Fproject.json",{"type":43,"tag":94,"props":176,"children":177},{"style":133},[178],{"type":48,"value":136},{"type":43,"tag":94,"props":180,"children":181},{"style":117},[182],{"type":48,"value":183},"\u002Fdev\u002Fnull",{"type":43,"tag":94,"props":185,"children":186},{"style":133},[187],{"type":48,"value":188}," ||",{"type":43,"tag":94,"props":190,"children":191},{"style":111},[192],{"type":48,"value":193}," cat",{"type":43,"tag":94,"props":195,"children":196},{"style":117},[197],{"type":48,"value":198}," .vercel\u002Frepo.json",{"type":43,"tag":94,"props":200,"children":201},{"style":133},[202],{"type":48,"value":136},{"type":43,"tag":94,"props":204,"children":205},{"style":117},[206],{"type":48,"value":141},{"type":43,"tag":94,"props":208,"children":210},{"class":96,"line":209},6,[211],{"type":43,"tag":94,"props":212,"children":213},{"emptyLinePlaceholder":148},[214],{"type":48,"value":151},{"type":43,"tag":94,"props":216,"children":218},{"class":96,"line":217},7,[219],{"type":43,"tag":94,"props":220,"children":221},{"style":101},[222],{"type":48,"value":223},"# 3. Check if the Vercel CLI is installed and authenticated\n",{"type":43,"tag":94,"props":225,"children":227},{"class":96,"line":226},8,[228,232,237,241],{"type":43,"tag":94,"props":229,"children":230},{"style":111},[231],{"type":48,"value":14},{"type":43,"tag":94,"props":233,"children":234},{"style":117},[235],{"type":48,"value":236}," whoami",{"type":43,"tag":94,"props":238,"children":239},{"style":133},[240],{"type":48,"value":136},{"type":43,"tag":94,"props":242,"children":243},{"style":117},[244],{"type":48,"value":141},{"type":43,"tag":94,"props":246,"children":248},{"class":96,"line":247},9,[249],{"type":43,"tag":94,"props":250,"children":251},{"emptyLinePlaceholder":148},[252],{"type":48,"value":151},{"type":43,"tag":94,"props":254,"children":256},{"class":96,"line":255},10,[257],{"type":43,"tag":94,"props":258,"children":259},{"style":101},[260],{"type":48,"value":261},"# 4. List available teams (if authenticated)\n",{"type":43,"tag":94,"props":263,"children":265},{"class":96,"line":264},11,[266,270,275,280,285,290,294],{"type":43,"tag":94,"props":267,"children":268},{"style":111},[269],{"type":48,"value":14},{"type":43,"tag":94,"props":271,"children":272},{"style":117},[273],{"type":48,"value":274}," teams",{"type":43,"tag":94,"props":276,"children":277},{"style":117},[278],{"type":48,"value":279}," list",{"type":43,"tag":94,"props":281,"children":282},{"style":117},[283],{"type":48,"value":284}," --format",{"type":43,"tag":94,"props":286,"children":287},{"style":117},[288],{"type":48,"value":289}," json",{"type":43,"tag":94,"props":291,"children":292},{"style":133},[293],{"type":48,"value":136},{"type":43,"tag":94,"props":295,"children":296},{"style":117},[297],{"type":48,"value":141},{"type":43,"tag":299,"props":300,"children":302},"h3",{"id":301},"team-selection",[303],{"type":48,"value":304},"Team selection",{"type":43,"tag":51,"props":306,"children":307},{},[308],{"type":48,"value":309},"If the user belongs to multiple teams, present all available team slugs as a bulleted list and ask which one to deploy to. Once the user picks a team, proceed immediately to the next step — do not ask for additional confirmation.",{"type":43,"tag":51,"props":311,"children":312},{},[313,315,321,323,329,331,337,338,344],{"type":48,"value":314},"Pass the team slug via ",{"type":43,"tag":90,"props":316,"children":318},{"className":317},[],[319],{"type":48,"value":320},"--scope",{"type":48,"value":322}," on all subsequent CLI commands (",{"type":43,"tag":90,"props":324,"children":326},{"className":325},[],[327],{"type":48,"value":328},"vercel deploy",{"type":48,"value":330},", ",{"type":43,"tag":90,"props":332,"children":334},{"className":333},[],[335],{"type":48,"value":336},"vercel link",{"type":48,"value":330},{"type":43,"tag":90,"props":339,"children":341},{"className":340},[],[342],{"type":48,"value":343},"vercel inspect",{"type":48,"value":345},", etc.):",{"type":43,"tag":82,"props":347,"children":349},{"className":84,"code":348,"language":86,"meta":87,"style":87},"vercel deploy [path] -y --no-wait --scope \u003Cteam-slug>\n",[350],{"type":43,"tag":90,"props":351,"children":352},{"__ignoreMap":87},[353],{"type":43,"tag":94,"props":354,"children":355},{"class":96,"line":97},[356,360,365,371,376,381],{"type":43,"tag":94,"props":357,"children":358},{"style":111},[359],{"type":48,"value":14},{"type":43,"tag":94,"props":361,"children":362},{"style":117},[363],{"type":48,"value":364}," deploy",{"type":43,"tag":94,"props":366,"children":368},{"style":367},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[369],{"type":48,"value":370}," [path] -y --no-wait --scope ",{"type":43,"tag":94,"props":372,"children":373},{"style":133},[374],{"type":48,"value":375},"\u003C",{"type":43,"tag":94,"props":377,"children":378},{"style":367},[379],{"type":48,"value":380},"team-slug",{"type":43,"tag":94,"props":382,"children":383},{"style":133},[384],{"type":48,"value":385},">\n",{"type":43,"tag":51,"props":387,"children":388},{},[389,391,397,399,405,407,413],{"type":48,"value":390},"If the project is already linked (",{"type":43,"tag":90,"props":392,"children":394},{"className":393},[],[395],{"type":48,"value":396},".vercel\u002Fproject.json",{"type":48,"value":398}," or ",{"type":43,"tag":90,"props":400,"children":402},{"className":401},[],[403],{"type":48,"value":404},".vercel\u002Frepo.json",{"type":48,"value":406}," exists), the ",{"type":43,"tag":90,"props":408,"children":410},{"className":409},[],[411],{"type":48,"value":412},"orgId",{"type":48,"value":414}," in those files determines the team — no need to ask again. If there is only one team (or just a personal account), skip the prompt and use it directly.",{"type":43,"tag":51,"props":416,"children":417},{},[418,431],{"type":43,"tag":57,"props":419,"children":420},{},[421,423,429],{"type":48,"value":422},"About the ",{"type":43,"tag":90,"props":424,"children":426},{"className":425},[],[427],{"type":48,"value":428},".vercel\u002F",{"type":48,"value":430}," directory:",{"type":48,"value":432}," A linked project has either:",{"type":43,"tag":434,"props":435,"children":436},"ul",{},[437,470],{"type":43,"tag":438,"props":439,"children":440},"li",{},[441,446,448,453,455,461,463,468],{"type":43,"tag":90,"props":442,"children":444},{"className":443},[],[445],{"type":48,"value":396},{"type":48,"value":447}," — created by ",{"type":43,"tag":90,"props":449,"children":451},{"className":450},[],[452],{"type":48,"value":336},{"type":48,"value":454}," (single project linking). Contains ",{"type":43,"tag":90,"props":456,"children":458},{"className":457},[],[459],{"type":48,"value":460},"projectId",{"type":48,"value":462}," and ",{"type":43,"tag":90,"props":464,"children":466},{"className":465},[],[467],{"type":48,"value":412},{"type":48,"value":469},".",{"type":43,"tag":438,"props":471,"children":472},{},[473,478,479,485,487,492,493,499,501,507],{"type":43,"tag":90,"props":474,"children":476},{"className":475},[],[477],{"type":48,"value":404},{"type":48,"value":447},{"type":43,"tag":90,"props":480,"children":482},{"className":481},[],[483],{"type":48,"value":484},"vercel link --repo",{"type":48,"value":486}," (repo-based linking). Contains ",{"type":43,"tag":90,"props":488,"children":490},{"className":489},[],[491],{"type":48,"value":412},{"type":48,"value":330},{"type":43,"tag":90,"props":494,"children":496},{"className":495},[],[497],{"type":48,"value":498},"remoteName",{"type":48,"value":500},", and a ",{"type":43,"tag":90,"props":502,"children":504},{"className":503},[],[505],{"type":48,"value":506},"projects",{"type":48,"value":508}," array mapping directories to Vercel project IDs.",{"type":43,"tag":51,"props":510,"children":511},{},[512],{"type":48,"value":513},"Either file means the project is linked. Check for both.",{"type":43,"tag":51,"props":515,"children":516},{},[517,522,524,530,531,537,539,544,546,551,553,559,561,567],{"type":43,"tag":57,"props":518,"children":519},{},[520],{"type":48,"value":521},"Do NOT",{"type":48,"value":523}," use ",{"type":43,"tag":90,"props":525,"children":527},{"className":526},[],[528],{"type":48,"value":529},"vercel project inspect",{"type":48,"value":330},{"type":43,"tag":90,"props":532,"children":534},{"className":533},[],[535],{"type":48,"value":536},"vercel ls",{"type":48,"value":538},", or ",{"type":43,"tag":90,"props":540,"children":542},{"className":541},[],[543],{"type":48,"value":336},{"type":48,"value":545}," to detect state in an unlinked directory — without a ",{"type":43,"tag":90,"props":547,"children":549},{"className":548},[],[550],{"type":48,"value":428},{"type":48,"value":552}," config, they will interactively prompt (or with ",{"type":43,"tag":90,"props":554,"children":556},{"className":555},[],[557],{"type":48,"value":558},"--yes",{"type":48,"value":560},", silently link as a side-effect). Only ",{"type":43,"tag":90,"props":562,"children":564},{"className":563},[],[565],{"type":48,"value":566},"vercel whoami",{"type":48,"value":568}," is safe to run anywhere.",{"type":43,"tag":70,"props":570,"children":572},{"id":571},"step-2-choose-a-deploy-method",[573],{"type":48,"value":574},"Step 2: Choose a Deploy Method",{"type":43,"tag":299,"props":576,"children":578},{"id":577},"linked-vercel-exists-has-git-remote-git-push",[579,581,586],{"type":48,"value":580},"Linked (",{"type":43,"tag":90,"props":582,"children":584},{"className":583},[],[585],{"type":48,"value":428},{"type":48,"value":587}," exists) + has git remote → Git Push",{"type":43,"tag":51,"props":589,"children":590},{},[591],{"type":48,"value":592},"This is the ideal state. The project is linked and has git integration.",{"type":43,"tag":594,"props":595,"children":596},"ol",{},[597,617,707],{"type":43,"tag":438,"props":598,"children":599},{},[600,605,607],{"type":43,"tag":57,"props":601,"children":602},{},[603],{"type":48,"value":604},"Ask the user before pushing.",{"type":48,"value":606}," Never push without explicit approval:",{"type":43,"tag":82,"props":608,"children":612},{"className":609,"code":611,"language":48},[610],"language-text","This project is connected to Vercel via git. I can commit and push to\ntrigger a deployment. Want me to proceed?\n",[613],{"type":43,"tag":90,"props":614,"children":615},{"__ignoreMap":87},[616],{"type":48,"value":611},{"type":43,"tag":438,"props":618,"children":619},{},[620,625,693,697,699,705],{"type":43,"tag":57,"props":621,"children":622},{},[623],{"type":48,"value":624},"Commit and push:",{"type":43,"tag":82,"props":626,"children":628},{"className":84,"code":627,"language":86,"meta":87,"style":87},"git add .\ngit commit -m \"deploy: \u003Cdescription of changes>\"\ngit push\n",[629],{"type":43,"tag":90,"props":630,"children":631},{"__ignoreMap":87},[632,649,681],{"type":43,"tag":94,"props":633,"children":634},{"class":96,"line":97},[635,639,644],{"type":43,"tag":94,"props":636,"children":637},{"style":111},[638],{"type":48,"value":114},{"type":43,"tag":94,"props":640,"children":641},{"style":117},[642],{"type":48,"value":643}," add",{"type":43,"tag":94,"props":645,"children":646},{"style":117},[647],{"type":48,"value":648}," .\n",{"type":43,"tag":94,"props":650,"children":651},{"class":96,"line":107},[652,656,661,666,671,676],{"type":43,"tag":94,"props":653,"children":654},{"style":111},[655],{"type":48,"value":114},{"type":43,"tag":94,"props":657,"children":658},{"style":117},[659],{"type":48,"value":660}," commit",{"type":43,"tag":94,"props":662,"children":663},{"style":117},[664],{"type":48,"value":665}," -m",{"type":43,"tag":94,"props":667,"children":668},{"style":133},[669],{"type":48,"value":670}," \"",{"type":43,"tag":94,"props":672,"children":673},{"style":117},[674],{"type":48,"value":675},"deploy: \u003Cdescription of changes>",{"type":43,"tag":94,"props":677,"children":678},{"style":133},[679],{"type":48,"value":680},"\"\n",{"type":43,"tag":94,"props":682,"children":683},{"class":96,"line":144},[684,688],{"type":43,"tag":94,"props":685,"children":686},{"style":111},[687],{"type":48,"value":114},{"type":43,"tag":94,"props":689,"children":690},{"style":117},[691],{"type":48,"value":692}," push\n",{"type":43,"tag":694,"props":695,"children":696},"br",{},[],{"type":48,"value":698},"Vercel automatically builds from the push. Non-production branches get preview deployments; the production branch (usually ",{"type":43,"tag":90,"props":700,"children":702},{"className":701},[],[703],{"type":48,"value":704},"main",{"type":48,"value":706},") gets a production deployment.",{"type":43,"tag":438,"props":708,"children":709},{},[710,715,717,759,762,764,770,772,778,780,783],{"type":43,"tag":57,"props":711,"children":712},{},[713],{"type":48,"value":714},"Retrieve the preview URL.",{"type":48,"value":716}," If the CLI is authenticated:",{"type":43,"tag":82,"props":718,"children":720},{"className":84,"code":719,"language":86,"meta":87,"style":87},"sleep 5\nvercel ls --format json\n",[721],{"type":43,"tag":90,"props":722,"children":723},{"__ignoreMap":87},[724,738],{"type":43,"tag":94,"props":725,"children":726},{"class":96,"line":97},[727,732],{"type":43,"tag":94,"props":728,"children":729},{"style":111},[730],{"type":48,"value":731},"sleep",{"type":43,"tag":94,"props":733,"children":735},{"style":734},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[736],{"type":48,"value":737}," 5\n",{"type":43,"tag":94,"props":739,"children":740},{"class":96,"line":107},[741,745,750,754],{"type":43,"tag":94,"props":742,"children":743},{"style":111},[744],{"type":48,"value":14},{"type":43,"tag":94,"props":746,"children":747},{"style":117},[748],{"type":48,"value":749}," ls",{"type":43,"tag":94,"props":751,"children":752},{"style":117},[753],{"type":48,"value":284},{"type":43,"tag":94,"props":755,"children":756},{"style":117},[757],{"type":48,"value":758}," json\n",{"type":43,"tag":694,"props":760,"children":761},{},[],{"type":48,"value":763},"The JSON output has a ",{"type":43,"tag":90,"props":765,"children":767},{"className":766},[],[768],{"type":48,"value":769},"deployments",{"type":48,"value":771}," array. Find the latest entry — its ",{"type":43,"tag":90,"props":773,"children":775},{"className":774},[],[776],{"type":48,"value":777},"url",{"type":48,"value":779}," field is the preview URL.",{"type":43,"tag":694,"props":781,"children":782},{},[],{"type":48,"value":784},"If the CLI is not authenticated, tell the user to check the Vercel dashboard or the commit status checks on their git provider for the preview URL.",{"type":43,"tag":786,"props":787,"children":788},"hr",{},[],{"type":43,"tag":299,"props":790,"children":792},{"id":791},"linked-vercel-exists-no-git-remote-vercel-deploy",[793,794,799,801],{"type":48,"value":580},{"type":43,"tag":90,"props":795,"children":797},{"className":796},[],[798],{"type":48,"value":428},{"type":48,"value":800}," exists) + no git remote → ",{"type":43,"tag":90,"props":802,"children":804},{"className":803},[],[805],{"type":48,"value":328},{"type":43,"tag":51,"props":807,"children":808},{},[809],{"type":48,"value":810},"The project is linked but there's no git repo. Deploy directly with the CLI.",{"type":43,"tag":82,"props":812,"children":814},{"className":84,"code":813,"language":86,"meta":87,"style":87},"vercel deploy [path] -y --no-wait\n",[815],{"type":43,"tag":90,"props":816,"children":817},{"__ignoreMap":87},[818],{"type":43,"tag":94,"props":819,"children":820},{"class":96,"line":97},[821,825,829],{"type":43,"tag":94,"props":822,"children":823},{"style":111},[824],{"type":48,"value":14},{"type":43,"tag":94,"props":826,"children":827},{"style":117},[828],{"type":48,"value":364},{"type":43,"tag":94,"props":830,"children":831},{"style":367},[832],{"type":48,"value":833}," [path] -y --no-wait\n",{"type":43,"tag":51,"props":835,"children":836},{},[837,839,845],{"type":48,"value":838},"Use ",{"type":43,"tag":90,"props":840,"children":842},{"className":841},[],[843],{"type":48,"value":844},"--no-wait",{"type":48,"value":846}," so the CLI returns immediately with the deployment URL instead of blocking until the build finishes (builds can take a while). Then check on the deployment status with:",{"type":43,"tag":82,"props":848,"children":850},{"className":84,"code":849,"language":86,"meta":87,"style":87},"vercel inspect \u003Cdeployment-url>\n",[851],{"type":43,"tag":90,"props":852,"children":853},{"__ignoreMap":87},[854],{"type":43,"tag":94,"props":855,"children":856},{"class":96,"line":97},[857,861,866,871,876,881],{"type":43,"tag":94,"props":858,"children":859},{"style":111},[860],{"type":48,"value":14},{"type":43,"tag":94,"props":862,"children":863},{"style":117},[864],{"type":48,"value":865}," inspect",{"type":43,"tag":94,"props":867,"children":868},{"style":133},[869],{"type":48,"value":870}," \u003C",{"type":43,"tag":94,"props":872,"children":873},{"style":117},[874],{"type":48,"value":875},"deployment-ur",{"type":43,"tag":94,"props":877,"children":878},{"style":367},[879],{"type":48,"value":880},"l",{"type":43,"tag":94,"props":882,"children":883},{"style":133},[884],{"type":48,"value":385},{"type":43,"tag":51,"props":886,"children":887},{},[888],{"type":48,"value":889},"For production deploys (only if user explicitly asks):",{"type":43,"tag":82,"props":891,"children":893},{"className":84,"code":892,"language":86,"meta":87,"style":87},"vercel deploy [path] --prod -y --no-wait\n",[894],{"type":43,"tag":90,"props":895,"children":896},{"__ignoreMap":87},[897],{"type":43,"tag":94,"props":898,"children":899},{"class":96,"line":97},[900,904,908],{"type":43,"tag":94,"props":901,"children":902},{"style":111},[903],{"type":48,"value":14},{"type":43,"tag":94,"props":905,"children":906},{"style":117},[907],{"type":48,"value":364},{"type":43,"tag":94,"props":909,"children":910},{"style":367},[911],{"type":48,"value":912}," [path] --prod -y --no-wait\n",{"type":43,"tag":786,"props":914,"children":915},{},[],{"type":43,"tag":299,"props":917,"children":919},{"id":918},"not-linked-cli-is-authenticated-link-first-then-deploy",[920],{"type":48,"value":921},"Not linked + CLI is authenticated → Link first, then deploy",{"type":43,"tag":51,"props":923,"children":924},{},[925],{"type":48,"value":926},"The CLI is working but the project isn't linked yet. This is the opportunity to get the user into the best state.",{"type":43,"tag":594,"props":928,"children":929},{},[930,940,959,1102],{"type":43,"tag":438,"props":931,"children":932},{},[933,938],{"type":43,"tag":57,"props":934,"children":935},{},[936],{"type":48,"value":937},"Ask the user which team to deploy to.",{"type":48,"value":939}," Present the team slugs from Step 1 as a bulleted list. If there's only one team (or just a personal account), skip this step.",{"type":43,"tag":438,"props":941,"children":942},{},[943,948,950],{"type":43,"tag":57,"props":944,"children":945},{},[946],{"type":48,"value":947},"Once a team is selected, proceed directly to linking.",{"type":48,"value":949}," Tell the user what will happen but do not ask for separate confirmation:",{"type":43,"tag":82,"props":951,"children":954},{"className":952,"code":953,"language":48},[610],"Linking this project to \u003Cteam name> on Vercel. This will create a Vercel\nproject to deploy to and enable automatic deployments on future git pushes.\n",[955],{"type":43,"tag":90,"props":956,"children":957},{"__ignoreMap":87},[958],{"type":48,"value":953},{"type":43,"tag":438,"props":960,"children":961},{},[962,967,969,1016,1019,1021,1026,1028,1033,1035,1041,1043,1046,1051,1053,1091,1094,1096,1101],{"type":43,"tag":57,"props":963,"children":964},{},[965],{"type":48,"value":966},"If a git remote exists",{"type":48,"value":968},", use repo-based linking with the selected team scope:",{"type":43,"tag":82,"props":970,"children":972},{"className":84,"code":971,"language":86,"meta":87,"style":87},"vercel link --repo --scope \u003Cteam-slug>\n",[973],{"type":43,"tag":90,"props":974,"children":975},{"__ignoreMap":87},[976],{"type":43,"tag":94,"props":977,"children":978},{"class":96,"line":97},[979,983,988,993,998,1002,1007,1012],{"type":43,"tag":94,"props":980,"children":981},{"style":111},[982],{"type":48,"value":14},{"type":43,"tag":94,"props":984,"children":985},{"style":117},[986],{"type":48,"value":987}," link",{"type":43,"tag":94,"props":989,"children":990},{"style":117},[991],{"type":48,"value":992}," --repo",{"type":43,"tag":94,"props":994,"children":995},{"style":117},[996],{"type":48,"value":997}," --scope",{"type":43,"tag":94,"props":999,"children":1000},{"style":133},[1001],{"type":48,"value":870},{"type":43,"tag":94,"props":1003,"children":1004},{"style":117},[1005],{"type":48,"value":1006},"team-slu",{"type":43,"tag":94,"props":1008,"children":1009},{"style":367},[1010],{"type":48,"value":1011},"g",{"type":43,"tag":94,"props":1013,"children":1014},{"style":133},[1015],{"type":48,"value":385},{"type":43,"tag":694,"props":1017,"children":1018},{},[],{"type":48,"value":1020},"This reads the git remote URL and matches it to existing Vercel projects that deploy from that repo. It creates ",{"type":43,"tag":90,"props":1022,"children":1024},{"className":1023},[],[1025],{"type":48,"value":404},{"type":48,"value":1027},". This is much more reliable than ",{"type":43,"tag":90,"props":1029,"children":1031},{"className":1030},[],[1032],{"type":48,"value":336},{"type":48,"value":1034}," (without ",{"type":43,"tag":90,"props":1036,"children":1038},{"className":1037},[],[1039],{"type":48,"value":1040},"--repo",{"type":48,"value":1042},"), which tries to match by directory name and often fails when the local folder and Vercel project are named differently.",{"type":43,"tag":694,"props":1044,"children":1045},{},[],{"type":43,"tag":57,"props":1047,"children":1048},{},[1049],{"type":48,"value":1050},"If there is no git remote",{"type":48,"value":1052},", fall back to standard linking:",{"type":43,"tag":82,"props":1054,"children":1056},{"className":84,"code":1055,"language":86,"meta":87,"style":87},"vercel link --scope \u003Cteam-slug>\n",[1057],{"type":43,"tag":90,"props":1058,"children":1059},{"__ignoreMap":87},[1060],{"type":43,"tag":94,"props":1061,"children":1062},{"class":96,"line":97},[1063,1067,1071,1075,1079,1083,1087],{"type":43,"tag":94,"props":1064,"children":1065},{"style":111},[1066],{"type":48,"value":14},{"type":43,"tag":94,"props":1068,"children":1069},{"style":117},[1070],{"type":48,"value":987},{"type":43,"tag":94,"props":1072,"children":1073},{"style":117},[1074],{"type":48,"value":997},{"type":43,"tag":94,"props":1076,"children":1077},{"style":133},[1078],{"type":48,"value":870},{"type":43,"tag":94,"props":1080,"children":1081},{"style":117},[1082],{"type":48,"value":1006},{"type":43,"tag":94,"props":1084,"children":1085},{"style":367},[1086],{"type":48,"value":1011},{"type":43,"tag":94,"props":1088,"children":1089},{"style":133},[1090],{"type":48,"value":385},{"type":43,"tag":694,"props":1092,"children":1093},{},[],{"type":48,"value":1095},"This prompts the user to select or create a project. It creates ",{"type":43,"tag":90,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":48,"value":396},{"type":48,"value":469},{"type":43,"tag":438,"props":1103,"children":1104},{},[1105,1110],{"type":43,"tag":57,"props":1106,"children":1107},{},[1108],{"type":48,"value":1109},"Then deploy using the best available method:",{"type":43,"tag":434,"props":1111,"children":1112},{},[1113,1118],{"type":43,"tag":438,"props":1114,"children":1115},{},[1116],{"type":48,"value":1117},"If a git remote exists → commit and push (see git push method above)",{"type":43,"tag":438,"props":1119,"children":1120},{},[1121,1123,1129,1131,1137],{"type":48,"value":1122},"If no git remote → ",{"type":43,"tag":90,"props":1124,"children":1126},{"className":1125},[],[1127],{"type":48,"value":1128},"vercel deploy [path] -y --no-wait --scope \u003Cteam-slug>",{"type":48,"value":1130},", then ",{"type":43,"tag":90,"props":1132,"children":1134},{"className":1133},[],[1135],{"type":48,"value":1136},"vercel inspect \u003Curl>",{"type":48,"value":1138}," to check status",{"type":43,"tag":786,"props":1140,"children":1141},{},[],{"type":43,"tag":299,"props":1143,"children":1145},{"id":1144},"not-linked-cli-not-authenticated-install-auth-link-deploy",[1146],{"type":48,"value":1147},"Not linked + CLI not authenticated → Install, auth, link, deploy",{"type":43,"tag":51,"props":1149,"children":1150},{},[1151],{"type":48,"value":1152},"The Vercel CLI isn't set up at all.",{"type":43,"tag":594,"props":1154,"children":1155},{},[1156,1194,1233,1251,1359],{"type":43,"tag":438,"props":1157,"children":1158},{},[1159,1164],{"type":43,"tag":57,"props":1160,"children":1161},{},[1162],{"type":48,"value":1163},"Install the CLI (if not already installed):",{"type":43,"tag":82,"props":1165,"children":1167},{"className":84,"code":1166,"language":86,"meta":87,"style":87},"npm install -g vercel\n",[1168],{"type":43,"tag":90,"props":1169,"children":1170},{"__ignoreMap":87},[1171],{"type":43,"tag":94,"props":1172,"children":1173},{"class":96,"line":97},[1174,1179,1184,1189],{"type":43,"tag":94,"props":1175,"children":1176},{"style":111},[1177],{"type":48,"value":1178},"npm",{"type":43,"tag":94,"props":1180,"children":1181},{"style":117},[1182],{"type":48,"value":1183}," install",{"type":43,"tag":94,"props":1185,"children":1186},{"style":117},[1187],{"type":48,"value":1188}," -g",{"type":43,"tag":94,"props":1190,"children":1191},{"style":117},[1192],{"type":48,"value":1193}," vercel\n",{"type":43,"tag":438,"props":1195,"children":1196},{},[1197,1202,1221,1224,1226,1231],{"type":43,"tag":57,"props":1198,"children":1199},{},[1200],{"type":48,"value":1201},"Authenticate:",{"type":43,"tag":82,"props":1203,"children":1205},{"className":84,"code":1204,"language":86,"meta":87,"style":87},"vercel login\n",[1206],{"type":43,"tag":90,"props":1207,"children":1208},{"__ignoreMap":87},[1209],{"type":43,"tag":94,"props":1210,"children":1211},{"class":96,"line":97},[1212,1216],{"type":43,"tag":94,"props":1213,"children":1214},{"style":111},[1215],{"type":48,"value":14},{"type":43,"tag":94,"props":1217,"children":1218},{"style":117},[1219],{"type":48,"value":1220}," login\n",{"type":43,"tag":694,"props":1222,"children":1223},{},[],{"type":48,"value":1225},"The user completes auth in their browser. If running in a non-interactive environment where login is not possible, skip to the ",{"type":43,"tag":57,"props":1227,"children":1228},{},[1229],{"type":48,"value":1230},"no-auth fallback",{"type":48,"value":1232}," below.",{"type":43,"tag":438,"props":1234,"children":1235},{},[1236,1241,1243,1249],{"type":43,"tag":57,"props":1237,"children":1238},{},[1239],{"type":48,"value":1240},"Ask which team to deploy to",{"type":48,"value":1242}," — present team slugs from ",{"type":43,"tag":90,"props":1244,"children":1246},{"className":1245},[],[1247],{"type":48,"value":1248},"vercel teams list --format json",{"type":48,"value":1250}," as a bulleted list. If only one team \u002F personal account, skip. Once selected, proceed immediately.",{"type":43,"tag":438,"props":1252,"children":1253},{},[1254,1259,1261,1266,1268,1273,1275],{"type":43,"tag":57,"props":1255,"children":1256},{},[1257],{"type":48,"value":1258},"Link the project",{"type":48,"value":1260}," with the selected team scope (use ",{"type":43,"tag":90,"props":1262,"children":1264},{"className":1263},[],[1265],{"type":48,"value":1040},{"type":48,"value":1267}," if a git remote exists, plain ",{"type":43,"tag":90,"props":1269,"children":1271},{"className":1270},[],[1272],{"type":48,"value":336},{"type":48,"value":1274}," otherwise):",{"type":43,"tag":82,"props":1276,"children":1278},{"className":84,"code":1277,"language":86,"meta":87,"style":87},"vercel link --repo --scope \u003Cteam-slug>   # if git remote exists\nvercel link --scope \u003Cteam-slug>          # if no git remote\n",[1279],{"type":43,"tag":90,"props":1280,"children":1281},{"__ignoreMap":87},[1282,1323],{"type":43,"tag":94,"props":1283,"children":1284},{"class":96,"line":97},[1285,1289,1293,1297,1301,1305,1309,1313,1318],{"type":43,"tag":94,"props":1286,"children":1287},{"style":111},[1288],{"type":48,"value":14},{"type":43,"tag":94,"props":1290,"children":1291},{"style":117},[1292],{"type":48,"value":987},{"type":43,"tag":94,"props":1294,"children":1295},{"style":117},[1296],{"type":48,"value":992},{"type":43,"tag":94,"props":1298,"children":1299},{"style":117},[1300],{"type":48,"value":997},{"type":43,"tag":94,"props":1302,"children":1303},{"style":133},[1304],{"type":48,"value":870},{"type":43,"tag":94,"props":1306,"children":1307},{"style":117},[1308],{"type":48,"value":1006},{"type":43,"tag":94,"props":1310,"children":1311},{"style":367},[1312],{"type":48,"value":1011},{"type":43,"tag":94,"props":1314,"children":1315},{"style":133},[1316],{"type":48,"value":1317},">",{"type":43,"tag":94,"props":1319,"children":1320},{"style":101},[1321],{"type":48,"value":1322},"   # if git remote exists\n",{"type":43,"tag":94,"props":1324,"children":1325},{"class":96,"line":107},[1326,1330,1334,1338,1342,1346,1350,1354],{"type":43,"tag":94,"props":1327,"children":1328},{"style":111},[1329],{"type":48,"value":14},{"type":43,"tag":94,"props":1331,"children":1332},{"style":117},[1333],{"type":48,"value":987},{"type":43,"tag":94,"props":1335,"children":1336},{"style":117},[1337],{"type":48,"value":997},{"type":43,"tag":94,"props":1339,"children":1340},{"style":133},[1341],{"type":48,"value":870},{"type":43,"tag":94,"props":1343,"children":1344},{"style":117},[1345],{"type":48,"value":1006},{"type":43,"tag":94,"props":1347,"children":1348},{"style":367},[1349],{"type":48,"value":1011},{"type":43,"tag":94,"props":1351,"children":1352},{"style":133},[1353],{"type":48,"value":1317},{"type":43,"tag":94,"props":1355,"children":1356},{"style":101},[1357],{"type":48,"value":1358},"          # if no git remote\n",{"type":43,"tag":438,"props":1360,"children":1361},{},[1362,1367,1369,1375,1376,1381],{"type":43,"tag":57,"props":1363,"children":1364},{},[1365],{"type":48,"value":1366},"Deploy",{"type":48,"value":1368}," using the best available method (git push if remote exists, otherwise ",{"type":43,"tag":90,"props":1370,"children":1372},{"className":1371},[],[1373],{"type":48,"value":1374},"vercel deploy -y --no-wait --scope \u003Cteam-slug>",{"type":48,"value":1130},{"type":43,"tag":90,"props":1377,"children":1379},{"className":1378},[],[1380],{"type":48,"value":1136},{"type":48,"value":1382}," to check status).",{"type":43,"tag":786,"props":1384,"children":1385},{},[],{"type":43,"tag":299,"props":1387,"children":1389},{"id":1388},"no-auth-fallback-claudeai-sandbox",[1390],{"type":48,"value":1391},"No-Auth Fallback — claude.ai sandbox",{"type":43,"tag":51,"props":1393,"children":1394},{},[1395,1400,1402,1407,1409,1414],{"type":43,"tag":57,"props":1396,"children":1397},{},[1398],{"type":48,"value":1399},"When to use:",{"type":48,"value":1401}," Last resort when the CLI can't be installed or authenticated in the claude.ai sandbox. This requires no authentication — it returns a ",{"type":43,"tag":57,"props":1403,"children":1404},{},[1405],{"type":48,"value":1406},"Preview URL",{"type":48,"value":1408}," (live site) and a ",{"type":43,"tag":57,"props":1410,"children":1411},{},[1412],{"type":48,"value":1413},"Claim URL",{"type":48,"value":1415}," (transfer to your Vercel account).",{"type":43,"tag":82,"props":1417,"children":1419},{"className":84,"code":1418,"language":86,"meta":87,"style":87},"bash \u002Fmnt\u002Fskills\u002Fuser\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh [path]\n",[1420],{"type":43,"tag":90,"props":1421,"children":1422},{"__ignoreMap":87},[1423],{"type":43,"tag":94,"props":1424,"children":1425},{"class":96,"line":97},[1426,1430,1435],{"type":43,"tag":94,"props":1427,"children":1428},{"style":111},[1429],{"type":48,"value":86},{"type":43,"tag":94,"props":1431,"children":1432},{"style":117},[1433],{"type":48,"value":1434}," \u002Fmnt\u002Fskills\u002Fuser\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh",{"type":43,"tag":94,"props":1436,"children":1437},{"style":367},[1438],{"type":48,"value":1439}," [path]\n",{"type":43,"tag":51,"props":1441,"children":1442},{},[1443],{"type":43,"tag":57,"props":1444,"children":1445},{},[1446],{"type":48,"value":1447},"Arguments:",{"type":43,"tag":434,"props":1449,"children":1450},{},[1451],{"type":43,"tag":438,"props":1452,"children":1453},{},[1454,1460,1462,1468],{"type":43,"tag":90,"props":1455,"children":1457},{"className":1456},[],[1458],{"type":48,"value":1459},"path",{"type":48,"value":1461}," - Directory to deploy, or a ",{"type":43,"tag":90,"props":1463,"children":1465},{"className":1464},[],[1466],{"type":48,"value":1467},".tgz",{"type":48,"value":1469}," file (defaults to current directory)",{"type":43,"tag":51,"props":1471,"children":1472},{},[1473],{"type":43,"tag":57,"props":1474,"children":1475},{},[1476],{"type":48,"value":1477},"Examples:",{"type":43,"tag":82,"props":1479,"children":1481},{"className":84,"code":1480,"language":86,"meta":87,"style":87},"# Deploy current directory\nbash \u002Fmnt\u002Fskills\u002Fuser\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh\n\n# Deploy specific project\nbash \u002Fmnt\u002Fskills\u002Fuser\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh \u002Fpath\u002Fto\u002Fproject\n\n# Deploy existing tarball\nbash \u002Fmnt\u002Fskills\u002Fuser\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh \u002Fpath\u002Fto\u002Fproject.tgz\n",[1482],{"type":43,"tag":90,"props":1483,"children":1484},{"__ignoreMap":87},[1485,1493,1505,1512,1520,1536,1543,1551],{"type":43,"tag":94,"props":1486,"children":1487},{"class":96,"line":97},[1488],{"type":43,"tag":94,"props":1489,"children":1490},{"style":101},[1491],{"type":48,"value":1492},"# Deploy current directory\n",{"type":43,"tag":94,"props":1494,"children":1495},{"class":96,"line":107},[1496,1500],{"type":43,"tag":94,"props":1497,"children":1498},{"style":111},[1499],{"type":48,"value":86},{"type":43,"tag":94,"props":1501,"children":1502},{"style":117},[1503],{"type":48,"value":1504}," \u002Fmnt\u002Fskills\u002Fuser\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh\n",{"type":43,"tag":94,"props":1506,"children":1507},{"class":96,"line":144},[1508],{"type":43,"tag":94,"props":1509,"children":1510},{"emptyLinePlaceholder":148},[1511],{"type":48,"value":151},{"type":43,"tag":94,"props":1513,"children":1514},{"class":96,"line":154},[1515],{"type":43,"tag":94,"props":1516,"children":1517},{"style":101},[1518],{"type":48,"value":1519},"# Deploy specific project\n",{"type":43,"tag":94,"props":1521,"children":1522},{"class":96,"line":163},[1523,1527,1531],{"type":43,"tag":94,"props":1524,"children":1525},{"style":111},[1526],{"type":48,"value":86},{"type":43,"tag":94,"props":1528,"children":1529},{"style":117},[1530],{"type":48,"value":1434},{"type":43,"tag":94,"props":1532,"children":1533},{"style":117},[1534],{"type":48,"value":1535}," \u002Fpath\u002Fto\u002Fproject\n",{"type":43,"tag":94,"props":1537,"children":1538},{"class":96,"line":209},[1539],{"type":43,"tag":94,"props":1540,"children":1541},{"emptyLinePlaceholder":148},[1542],{"type":48,"value":151},{"type":43,"tag":94,"props":1544,"children":1545},{"class":96,"line":217},[1546],{"type":43,"tag":94,"props":1547,"children":1548},{"style":101},[1549],{"type":48,"value":1550},"# Deploy existing tarball\n",{"type":43,"tag":94,"props":1552,"children":1553},{"class":96,"line":226},[1554,1558,1562],{"type":43,"tag":94,"props":1555,"children":1556},{"style":111},[1557],{"type":48,"value":86},{"type":43,"tag":94,"props":1559,"children":1560},{"style":117},[1561],{"type":48,"value":1434},{"type":43,"tag":94,"props":1563,"children":1564},{"style":117},[1565],{"type":48,"value":1566}," \u002Fpath\u002Fto\u002Fproject.tgz\n",{"type":43,"tag":51,"props":1568,"children":1569},{},[1570,1572,1578,1580,1586,1587,1593,1594,1600],{"type":48,"value":1571},"The script auto-detects the framework from ",{"type":43,"tag":90,"props":1573,"children":1575},{"className":1574},[],[1576],{"type":48,"value":1577},"package.json",{"type":48,"value":1579},", packages the project (excluding ",{"type":43,"tag":90,"props":1581,"children":1583},{"className":1582},[],[1584],{"type":48,"value":1585},"node_modules",{"type":48,"value":330},{"type":43,"tag":90,"props":1588,"children":1590},{"className":1589},[],[1591],{"type":48,"value":1592},".git",{"type":48,"value":330},{"type":43,"tag":90,"props":1595,"children":1597},{"className":1596},[],[1598],{"type":48,"value":1599},".env",{"type":48,"value":1601},"), uploads it, and waits for the build to complete.",{"type":43,"tag":51,"props":1603,"children":1604},{},[1605,1610,1612,1617,1619,1624],{"type":43,"tag":57,"props":1606,"children":1607},{},[1608],{"type":48,"value":1609},"Tell the user:",{"type":48,"value":1611}," \"Your deployment is ready at ",{"type":43,"tag":94,"props":1613,"children":1614},{},[1615],{"type":48,"value":1616},"previewUrl",{"type":48,"value":1618},". Claim it at ",{"type":43,"tag":94,"props":1620,"children":1621},{},[1622],{"type":48,"value":1623},"claimUrl",{"type":48,"value":1625}," to manage your deployment.\"",{"type":43,"tag":786,"props":1627,"children":1628},{},[],{"type":43,"tag":299,"props":1630,"children":1632},{"id":1631},"no-auth-fallback-codex-sandbox",[1633],{"type":48,"value":1634},"No-Auth Fallback — Codex sandbox",{"type":43,"tag":51,"props":1636,"children":1637},{},[1638,1642],{"type":43,"tag":57,"props":1639,"children":1640},{},[1641],{"type":48,"value":1399},{"type":48,"value":1643}," In the Codex sandbox where the CLI may not be authenticated. Codex runs in a sandboxed environment by default — try the CLI first, and fall back to the deploy script if auth fails.",{"type":43,"tag":594,"props":1645,"children":1646},{},[1647,1682,1720],{"type":43,"tag":438,"props":1648,"children":1649},{},[1650,1655,1657],{"type":43,"tag":57,"props":1651,"children":1652},{},[1653],{"type":48,"value":1654},"Check whether the Vercel CLI is installed",{"type":48,"value":1656}," (no escalation needed for this check):",{"type":43,"tag":82,"props":1658,"children":1660},{"className":84,"code":1659,"language":86,"meta":87,"style":87},"command -v vercel\n",[1661],{"type":43,"tag":90,"props":1662,"children":1663},{"__ignoreMap":87},[1664],{"type":43,"tag":94,"props":1665,"children":1666},{"class":96,"line":97},[1667,1673,1678],{"type":43,"tag":94,"props":1668,"children":1670},{"style":1669},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1671],{"type":48,"value":1672},"command",{"type":43,"tag":94,"props":1674,"children":1675},{"style":117},[1676],{"type":48,"value":1677}," -v",{"type":43,"tag":94,"props":1679,"children":1680},{"style":117},[1681],{"type":48,"value":1193},{"type":43,"tag":438,"props":1683,"children":1684},{},[1685,1697,1699],{"type":43,"tag":57,"props":1686,"children":1687},{},[1688,1690,1695],{"type":48,"value":1689},"If ",{"type":43,"tag":90,"props":1691,"children":1693},{"className":1692},[],[1694],{"type":48,"value":14},{"type":48,"value":1696}," is installed",{"type":48,"value":1698},", try deploying with the CLI:",{"type":43,"tag":82,"props":1700,"children":1701},{"className":84,"code":813,"language":86,"meta":87,"style":87},[1702],{"type":43,"tag":90,"props":1703,"children":1704},{"__ignoreMap":87},[1705],{"type":43,"tag":94,"props":1706,"children":1707},{"class":96,"line":97},[1708,1712,1716],{"type":43,"tag":94,"props":1709,"children":1710},{"style":111},[1711],{"type":48,"value":14},{"type":43,"tag":94,"props":1713,"children":1714},{"style":117},[1715],{"type":48,"value":364},{"type":43,"tag":94,"props":1717,"children":1718},{"style":367},[1719],{"type":48,"value":833},{"type":43,"tag":438,"props":1721,"children":1722},{},[1723,1734,1736],{"type":43,"tag":57,"props":1724,"children":1725},{},[1726,1727,1732],{"type":48,"value":1689},{"type":43,"tag":90,"props":1728,"children":1730},{"className":1729},[],[1731],{"type":48,"value":14},{"type":48,"value":1733}," is not installed, or the CLI fails with \"No existing credentials found\"",{"type":48,"value":1735},", use the fallback script:",{"type":43,"tag":82,"props":1737,"children":1739},{"className":84,"code":1738,"language":86,"meta":87,"style":87},"skill_dir=\"\u003Cpath-to-skill>\"\n\n# Deploy current directory\nbash \"$skill_dir\u002Fresources\u002Fdeploy-codex.sh\"\n\n# Deploy specific project\nbash \"$skill_dir\u002Fresources\u002Fdeploy-codex.sh\" \u002Fpath\u002Fto\u002Fproject\n\n# Deploy existing tarball\nbash \"$skill_dir\u002Fresources\u002Fdeploy-codex.sh\" \u002Fpath\u002Fto\u002Fproject.tgz\n",[1740],{"type":43,"tag":90,"props":1741,"children":1742},{"__ignoreMap":87},[1743,1770,1777,1784,1809,1816,1823,1850,1857,1864],{"type":43,"tag":94,"props":1744,"children":1745},{"class":96,"line":97},[1746,1751,1756,1761,1766],{"type":43,"tag":94,"props":1747,"children":1748},{"style":367},[1749],{"type":48,"value":1750},"skill_dir",{"type":43,"tag":94,"props":1752,"children":1753},{"style":133},[1754],{"type":48,"value":1755},"=",{"type":43,"tag":94,"props":1757,"children":1758},{"style":133},[1759],{"type":48,"value":1760},"\"",{"type":43,"tag":94,"props":1762,"children":1763},{"style":117},[1764],{"type":48,"value":1765},"\u003Cpath-to-skill>",{"type":43,"tag":94,"props":1767,"children":1768},{"style":133},[1769],{"type":48,"value":680},{"type":43,"tag":94,"props":1771,"children":1772},{"class":96,"line":107},[1773],{"type":43,"tag":94,"props":1774,"children":1775},{"emptyLinePlaceholder":148},[1776],{"type":48,"value":151},{"type":43,"tag":94,"props":1778,"children":1779},{"class":96,"line":144},[1780],{"type":43,"tag":94,"props":1781,"children":1782},{"style":101},[1783],{"type":48,"value":1492},{"type":43,"tag":94,"props":1785,"children":1786},{"class":96,"line":154},[1787,1791,1795,1800,1805],{"type":43,"tag":94,"props":1788,"children":1789},{"style":111},[1790],{"type":48,"value":86},{"type":43,"tag":94,"props":1792,"children":1793},{"style":133},[1794],{"type":48,"value":670},{"type":43,"tag":94,"props":1796,"children":1797},{"style":367},[1798],{"type":48,"value":1799},"$skill_dir",{"type":43,"tag":94,"props":1801,"children":1802},{"style":117},[1803],{"type":48,"value":1804},"\u002Fresources\u002Fdeploy-codex.sh",{"type":43,"tag":94,"props":1806,"children":1807},{"style":133},[1808],{"type":48,"value":680},{"type":43,"tag":94,"props":1810,"children":1811},{"class":96,"line":163},[1812],{"type":43,"tag":94,"props":1813,"children":1814},{"emptyLinePlaceholder":148},[1815],{"type":48,"value":151},{"type":43,"tag":94,"props":1817,"children":1818},{"class":96,"line":209},[1819],{"type":43,"tag":94,"props":1820,"children":1821},{"style":101},[1822],{"type":48,"value":1519},{"type":43,"tag":94,"props":1824,"children":1825},{"class":96,"line":217},[1826,1830,1834,1838,1842,1846],{"type":43,"tag":94,"props":1827,"children":1828},{"style":111},[1829],{"type":48,"value":86},{"type":43,"tag":94,"props":1831,"children":1832},{"style":133},[1833],{"type":48,"value":670},{"type":43,"tag":94,"props":1835,"children":1836},{"style":367},[1837],{"type":48,"value":1799},{"type":43,"tag":94,"props":1839,"children":1840},{"style":117},[1841],{"type":48,"value":1804},{"type":43,"tag":94,"props":1843,"children":1844},{"style":133},[1845],{"type":48,"value":1760},{"type":43,"tag":94,"props":1847,"children":1848},{"style":117},[1849],{"type":48,"value":1535},{"type":43,"tag":94,"props":1851,"children":1852},{"class":96,"line":226},[1853],{"type":43,"tag":94,"props":1854,"children":1855},{"emptyLinePlaceholder":148},[1856],{"type":48,"value":151},{"type":43,"tag":94,"props":1858,"children":1859},{"class":96,"line":247},[1860],{"type":43,"tag":94,"props":1861,"children":1862},{"style":101},[1863],{"type":48,"value":1550},{"type":43,"tag":94,"props":1865,"children":1866},{"class":96,"line":255},[1867,1871,1875,1879,1883,1887],{"type":43,"tag":94,"props":1868,"children":1869},{"style":111},[1870],{"type":48,"value":86},{"type":43,"tag":94,"props":1872,"children":1873},{"style":133},[1874],{"type":48,"value":670},{"type":43,"tag":94,"props":1876,"children":1877},{"style":367},[1878],{"type":48,"value":1799},{"type":43,"tag":94,"props":1880,"children":1881},{"style":117},[1882],{"type":48,"value":1804},{"type":43,"tag":94,"props":1884,"children":1885},{"style":133},[1886],{"type":48,"value":1760},{"type":43,"tag":94,"props":1888,"children":1889},{"style":117},[1890],{"type":48,"value":1566},{"type":43,"tag":51,"props":1892,"children":1893},{},[1894,1896,1901,1902,1907],{"type":48,"value":1895},"The script handles framework detection, packaging, and deployment. It waits for the build to complete and returns JSON with ",{"type":43,"tag":90,"props":1897,"children":1899},{"className":1898},[],[1900],{"type":48,"value":1616},{"type":48,"value":462},{"type":43,"tag":90,"props":1903,"children":1905},{"className":1904},[],[1906],{"type":48,"value":1623},{"type":48,"value":469},{"type":43,"tag":51,"props":1909,"children":1910},{},[1911,1915,1916,1920,1921,1925],{"type":43,"tag":57,"props":1912,"children":1913},{},[1914],{"type":48,"value":1609},{"type":48,"value":1611},{"type":43,"tag":94,"props":1917,"children":1918},{},[1919],{"type":48,"value":1616},{"type":48,"value":1618},{"type":43,"tag":94,"props":1922,"children":1923},{},[1924],{"type":48,"value":1623},{"type":48,"value":1625},{"type":43,"tag":51,"props":1927,"children":1928},{},[1929,1934,1936,1942,1944,1949,1951,1957],{"type":43,"tag":57,"props":1930,"children":1931},{},[1932],{"type":48,"value":1933},"Escalated network access:",{"type":48,"value":1935}," Only escalate the actual deploy command if sandboxing blocks the network call (",{"type":43,"tag":90,"props":1937,"children":1939},{"className":1938},[],[1940],{"type":48,"value":1941},"sandbox_permissions=require_escalated",{"type":48,"value":1943},"). Do ",{"type":43,"tag":57,"props":1945,"children":1946},{},[1947],{"type":48,"value":1948},"not",{"type":48,"value":1950}," escalate the ",{"type":43,"tag":90,"props":1952,"children":1954},{"className":1953},[],[1955],{"type":48,"value":1956},"command -v vercel",{"type":48,"value":1958}," check.",{"type":43,"tag":786,"props":1960,"children":1961},{},[],{"type":43,"tag":70,"props":1963,"children":1965},{"id":1964},"agent-specific-notes",[1966],{"type":48,"value":1967},"Agent-Specific Notes",{"type":43,"tag":299,"props":1969,"children":1971},{"id":1970},"claude-code-terminal-based-agents",[1972],{"type":48,"value":1973},"Claude Code \u002F terminal-based agents",{"type":43,"tag":51,"props":1975,"children":1976},{},[1977,1979,1985],{"type":48,"value":1978},"You have full shell access. Do NOT use the ",{"type":43,"tag":90,"props":1980,"children":1982},{"className":1981},[],[1983],{"type":48,"value":1984},"\u002Fmnt\u002Fskills\u002F",{"type":48,"value":1986}," path. Follow the decision flow above using the CLI directly.",{"type":43,"tag":51,"props":1988,"children":1989},{},[1990],{"type":48,"value":1991},"For the no-auth fallback, run the deploy script from the skill's installed location:",{"type":43,"tag":82,"props":1993,"children":1995},{"className":84,"code":1994,"language":86,"meta":87,"style":87},"bash ~\u002F.claude\u002Fskills\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh [path]\n",[1996],{"type":43,"tag":90,"props":1997,"children":1998},{"__ignoreMap":87},[1999],{"type":43,"tag":94,"props":2000,"children":2001},{"class":96,"line":97},[2002,2006,2011],{"type":43,"tag":94,"props":2003,"children":2004},{"style":111},[2005],{"type":48,"value":86},{"type":43,"tag":94,"props":2007,"children":2008},{"style":117},[2009],{"type":48,"value":2010}," ~\u002F.claude\u002Fskills\u002Fdeploy-to-vercel\u002Fresources\u002Fdeploy.sh",{"type":43,"tag":94,"props":2012,"children":2013},{"style":367},[2014],{"type":48,"value":1439},{"type":43,"tag":51,"props":2016,"children":2017},{},[2018],{"type":48,"value":2019},"The path may vary depending on where the user installed the skill.",{"type":43,"tag":299,"props":2021,"children":2023},{"id":2022},"sandboxed-environments-claudeai",[2024],{"type":48,"value":2025},"Sandboxed environments (claude.ai)",{"type":43,"tag":51,"props":2027,"children":2028},{},[2029,2031,2037,2038,2044,2046,2051],{"type":48,"value":2030},"You likely cannot run ",{"type":43,"tag":90,"props":2032,"children":2034},{"className":2033},[],[2035],{"type":48,"value":2036},"vercel login",{"type":48,"value":398},{"type":43,"tag":90,"props":2039,"children":2041},{"className":2040},[],[2042],{"type":48,"value":2043},"git push",{"type":48,"value":2045},". Go directly to the ",{"type":43,"tag":57,"props":2047,"children":2048},{},[2049],{"type":48,"value":2050},"no-auth fallback — claude.ai sandbox",{"type":48,"value":469},{"type":43,"tag":299,"props":2053,"children":2055},{"id":2054},"codex",[2056],{"type":48,"value":2057},"Codex",{"type":43,"tag":51,"props":2059,"children":2060},{},[2061,2063,2068],{"type":48,"value":2062},"Codex runs in a sandbox. Check if the CLI is available first, then fall back to the deploy script. Go to the ",{"type":43,"tag":57,"props":2064,"children":2065},{},[2066],{"type":48,"value":2067},"no-auth fallback — Codex sandbox",{"type":48,"value":469},{"type":43,"tag":786,"props":2070,"children":2071},{},[],{"type":43,"tag":70,"props":2073,"children":2075},{"id":2074},"output",[2076],{"type":48,"value":2077},"Output",{"type":43,"tag":51,"props":2079,"children":2080},{},[2081],{"type":48,"value":2082},"Always show the user the deployment URL.",{"type":43,"tag":434,"props":2084,"children":2085},{},[2086,2104,2129],{"type":43,"tag":438,"props":2087,"children":2088},{},[2089,2094,2096,2102],{"type":43,"tag":57,"props":2090,"children":2091},{},[2092],{"type":48,"value":2093},"Git push:",{"type":48,"value":2095}," Use ",{"type":43,"tag":90,"props":2097,"children":2099},{"className":2098},[],[2100],{"type":48,"value":2101},"vercel ls --format json",{"type":48,"value":2103}," to find the preview URL. If the CLI isn't authenticated, tell the user to check the Vercel dashboard or commit status checks.",{"type":43,"tag":438,"props":2105,"children":2106},{},[2107,2112,2114,2120,2122,2127],{"type":43,"tag":57,"props":2108,"children":2109},{},[2110],{"type":48,"value":2111},"CLI deploy:",{"type":48,"value":2113}," Show the URL returned by ",{"type":43,"tag":90,"props":2115,"children":2117},{"className":2116},[],[2118],{"type":48,"value":2119},"vercel deploy --no-wait",{"type":48,"value":2121},". Use ",{"type":43,"tag":90,"props":2123,"children":2125},{"className":2124},[],[2126],{"type":48,"value":1136},{"type":48,"value":2128}," to check build status and report it to the user.",{"type":43,"tag":438,"props":2130,"children":2131},{},[2132,2137,2139],{"type":43,"tag":57,"props":2133,"children":2134},{},[2135],{"type":48,"value":2136},"No-auth fallback:",{"type":48,"value":2138}," Show both the preview URL and the claim URL:\n",{"type":43,"tag":82,"props":2140,"children":2143},{"className":2141,"code":2142,"language":48},[610],"Deployment successful!\n\nPreview URL: https:\u002F\u002Fmy-app-abc123.vercel.app\nClaim URL:   https:\u002F\u002Fvercel.com\u002Fclaim-deployment?code=...\n\nView your site at the Preview URL.\nTo transfer this deployment to your Vercel account, visit the Claim URL.\n",[2144],{"type":43,"tag":90,"props":2145,"children":2146},{"__ignoreMap":87},[2147],{"type":48,"value":2142},{"type":43,"tag":51,"props":2149,"children":2150},{},[2151,2156],{"type":43,"tag":57,"props":2152,"children":2153},{},[2154],{"type":48,"value":2155},"Do not",{"type":48,"value":2157}," curl or fetch the deployed URL to verify it works. Just return the link.",{"type":43,"tag":786,"props":2159,"children":2160},{},[],{"type":43,"tag":70,"props":2162,"children":2164},{"id":2163},"troubleshooting",[2165],{"type":48,"value":2166},"Troubleshooting",{"type":43,"tag":299,"props":2168,"children":2170},{"id":2169},"network-egress-error-claudeai",[2171],{"type":48,"value":2172},"Network Egress Error (claude.ai)",{"type":43,"tag":51,"props":2174,"children":2175},{},[2176],{"type":48,"value":2177},"If deployment fails due to network restrictions on claude.ai, tell the user:",{"type":43,"tag":82,"props":2179,"children":2182},{"className":2180,"code":2181,"language":48},[610],"Deployment failed due to network restrictions. To fix this:\n\n1. Go to https:\u002F\u002Fclaude.ai\u002Fsettings\u002Fcapabilities\n2. Add *.vercel.com to the allowed domains\n3. Try deploying again\n",[2183],{"type":43,"tag":90,"props":2184,"children":2185},{"__ignoreMap":87},[2186],{"type":48,"value":2181},{"type":43,"tag":299,"props":2188,"children":2190},{"id":2189},"escalated-network-access-codex-sandboxed-environments",[2191],{"type":48,"value":2192},"Escalated Network Access (Codex \u002F sandboxed environments)",{"type":43,"tag":51,"props":2194,"children":2195},{},[2196,2198,2203],{"type":48,"value":2197},"If deployment fails due to network issues (timeouts, DNS errors, connection resets) in a sandboxed environment, rerun with escalated permissions (",{"type":43,"tag":90,"props":2199,"children":2201},{"className":2200},[],[2202],{"type":48,"value":1941},{"type":48,"value":2204},"). Do not escalate the initial CLI availability check — only escalate the actual deploy command.",{"type":43,"tag":51,"props":2206,"children":2207},{},[2208],{"type":48,"value":2209},"Example guidance to the user:",{"type":43,"tag":82,"props":2211,"children":2214},{"className":2212,"code":2213,"language":48},[610],"The deploy needs escalated network access to deploy to Vercel. I can rerun\nthe command with escalated permissions — want me to proceed?\n",[2215],{"type":43,"tag":90,"props":2216,"children":2217},{"__ignoreMap":87},[2218],{"type":48,"value":2213},{"type":43,"tag":299,"props":2220,"children":2222},{"id":2221},"cli-auth-failure",[2223],{"type":48,"value":2224},"CLI Auth Failure",{"type":43,"tag":51,"props":2226,"children":2227},{},[2228,2229,2234,2235,2240],{"type":48,"value":1689},{"type":43,"tag":90,"props":2230,"children":2232},{"className":2231},[],[2233],{"type":48,"value":2036},{"type":48,"value":398},{"type":43,"tag":90,"props":2236,"children":2238},{"className":2237},[],[2239],{"type":48,"value":328},{"type":48,"value":2241}," fails with authentication errors, fall back to the no-auth deploy script (claude.ai or Codex variant, depending on the environment).",{"type":43,"tag":2243,"props":2244,"children":2245},"style",{},[2246],{"type":48,"value":2247},"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":2249,"total":2371},[2250,2269,2286,2302,2317,2338,2355],{"slug":2251,"name":2251,"fn":2252,"description":2253,"org":2254,"tags":2255,"stars":22,"repoUrl":23,"updatedAt":2268},"algorithmic-art","create generative art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2256,2259,2262,2265],{"name":2257,"slug":2258,"type":15},"Creative","creative",{"name":2260,"slug":2261,"type":15},"Generative Art","generative-art",{"name":2263,"slug":2264,"type":15},"Graphics","graphics",{"name":2266,"slug":2267,"type":15},"JavaScript","javascript","2026-07-13T06:41:35.540127",{"slug":2270,"name":2270,"fn":2271,"description":2272,"org":2273,"tags":2274,"stars":22,"repoUrl":23,"updatedAt":2285},"antfu","configure JavaScript projects with Anthony Fu's tools","Anthony Fu's opinionated tooling and conventions for JavaScript\u002FTypeScript projects. Use when setting up new projects, configuring ESLint\u002FPrettier alternatives, monorepos, library publishing, or when the user mentions Anthony Fu's preferences.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2275,2278,2281,2282],{"name":2276,"slug":2277,"type":15},"Best Practices","best-practices",{"name":2279,"slug":2280,"type":15},"Engineering","engineering",{"name":2266,"slug":2267,"type":15},{"name":2283,"slug":2284,"type":15},"TypeScript","typescript","2026-07-13T06:43:13.153309",{"slug":2287,"name":2287,"fn":2288,"description":2289,"org":2290,"tags":2291,"stars":22,"repoUrl":23,"updatedAt":2301},"brand-guidelines","apply Anthropic brand guidelines","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2292,2295,2298],{"name":2293,"slug":2294,"type":15},"Branding","branding",{"name":2296,"slug":2297,"type":15},"Design","design",{"name":2299,"slug":2300,"type":15},"Typography","typography","2026-07-13T06:43:06.077629",{"slug":2303,"name":2303,"fn":2304,"description":2305,"org":2306,"tags":2307,"stars":22,"repoUrl":23,"updatedAt":2316},"canvas-design","create visual art and design assets","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2308,2309,2310,2313],{"name":2257,"slug":2258,"type":15},{"name":2296,"slug":2297,"type":15},{"name":2311,"slug":2312,"type":15},"Images","images",{"name":2314,"slug":2315,"type":15},"PDF","pdf","2026-07-13T06:39:58.803113",{"slug":2318,"name":2318,"fn":2319,"description":2320,"org":2321,"tags":2322,"stars":22,"repoUrl":23,"updatedAt":2337},"ci-cd-containerization-advisor","design CI\u002FCD pipelines for Kotlin applications","Design reproducible build, image, and deployment pipelines for Kotlin plus Spring applications, including CI verification, layered containers, rollout safety, and deployment-time migration coordination. Use when creating or improving Dockerfiles, CI workflows, image hardening, Kubernetes manifests, release gates, or deployment strategies for Spring Boot services, especially where build reproducibility and operational safety matter.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2323,2326,2329,2330,2331,2334],{"name":2324,"slug":2325,"type":15},"CI\u002FCD","ci-cd",{"name":2327,"slug":2328,"type":15},"Containers","containers",{"name":17,"slug":18,"type":15},{"name":2279,"slug":2280,"type":15},{"name":2332,"slug":2333,"type":15},"Kotlin","kotlin",{"name":2335,"slug":2336,"type":15},"Spring","spring","2026-07-13T06:41:47.83899",{"slug":2339,"name":2339,"fn":2340,"description":2341,"org":2342,"tags":2343,"stars":22,"repoUrl":23,"updatedAt":2354},"cloudflare-deploy","deploy applications to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2344,2347,2350,2353],{"name":2345,"slug":2346,"type":15},"Cloudflare","cloudflare",{"name":2348,"slug":2349,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2351,"slug":2352,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":17,"slug":18,"type":15},"2026-07-17T06:04:42.853896",{"slug":2356,"name":2356,"fn":2357,"description":2358,"org":2359,"tags":2360,"stars":22,"repoUrl":23,"updatedAt":2370},"compose-ui-control","interact with Compose Desktop applications","Control a running Compose Desktop application via HTTP. Use when you need to interact with UI elements, click buttons, enter text, wait for elements to appear, or capture screenshots in a Compose Desktop app that has compose-ui-test-server enabled.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2361,2364,2367],{"name":2362,"slug":2363,"type":15},"Automation","automation",{"name":2365,"slug":2366,"type":15},"Desktop","desktop",{"name":2368,"slug":2369,"type":15},"UI Components","ui-components","2026-07-13T06:40:38.798626",128,{"items":2373,"total":2498},[2374,2390,2399,2408,2419,2429,2438,2447,2456,2466,2475,2488],{"slug":2375,"name":2375,"fn":2376,"description":2377,"org":2378,"tags":2379,"stars":2387,"repoUrl":2388,"updatedAt":2389},"mps-aspect-accessories","configure JetBrains MPS module dependencies","Wire MPS module and model dependencies, used languages, used devkits, extended languages, runtime solutions, accessory models, and language\u002Fdependency versions. Use when adding\u002Fremoving module dependencies, importing languages or devkits into a model, declaring runtime solutions, or shipping accessory content visible to consumers without explicit import.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2380,2383,2386],{"name":2381,"slug":2382,"type":15},"Architecture","architecture",{"name":2384,"slug":2385,"type":15},"Configuration","configuration",{"name":2279,"slug":2280,"type":15},1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":2391,"name":2391,"fn":2392,"description":2393,"org":2394,"tags":2395,"stars":2387,"repoUrl":2388,"updatedAt":2398},"mps-aspect-actions","define and edit MPS node factories","Use when defining or editing MPS node factories (the \"actions\" aspect) — `NodeFactories` roots, per-concept `NodeFactory` setup functions that initialize a freshly created node and optionally copy data from a replaced `sampleNode`, plus the actions aspect's `CopyPasteHandlers` and `PasteWrappers` roots. Reach for this skill when a substitution, side transform, completion replacement, or `add new initialized(...)` should preserve fields from the node it is replacing, or when defaults set in a constructor are not enough.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2396,2397],{"name":2381,"slug":2382,"type":15},{"name":2279,"slug":2280,"type":15},"2026-07-17T06:04:48.066901",{"slug":2400,"name":2400,"fn":2401,"description":2402,"org":2403,"tags":2404,"stars":2387,"repoUrl":2388,"updatedAt":2407},"mps-aspect-behavior","define and edit MPS concept behavior","Use when defining or editing MPS `ConceptBehavior` — per-concept methods (non-virtual \u002F virtual \u002F abstract \u002F static \u002F virtual static), constructors, virtual dispatch (MRO), super and interface-default calls (`super\u003CInterface>.method`), overriding methods from `lang.core.behavior` interfaces such as `ScopeProvider.getScope` \u002F `INamedConcept.getName` \u002F `BaseConcept.getPresentation`, calling sibling methods (`LocalBehaviorMethodCall`) and behavior methods from other aspects via `node.method(...)`. Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fbehavior.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2405,2406],{"name":2381,"slug":2382,"type":15},{"name":2279,"slug":2280,"type":15},"2026-07-13T06:45:21.757084",{"slug":2409,"name":2409,"fn":2410,"description":2411,"org":2412,"tags":2413,"stars":2387,"repoUrl":2388,"updatedAt":2418},"mps-aspect-constraints","define JetBrains MPS language constraints","Use when defining or editing MPS language constraints — property validators \u002F setters \u002F getters, referent search scopes (imperative or inherited via `ScopeProvider.getScope`), `referentSetHandler` side effects, default-scope blocks, `canBeChild` \u002F `canBeParent` \u002F `canBeAncestor` \u002F `canBeRoot` placement rules, `defaultConcreteConcept` for abstract concepts, `set \u003Cread-only>` and `{name}` aliasing, and scope helpers (`SimpleRoleScope`, `ListScope`, `CompositeScope`, `HidingByNameScope`). Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fconstraints.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2414,2415],{"name":2381,"slug":2382,"type":15},{"name":2416,"slug":2417,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":2420,"name":2420,"fn":2421,"description":2422,"org":2423,"tags":2424,"stars":2387,"repoUrl":2388,"updatedAt":2428},"mps-aspect-dataflow","define and debug MPS dataflow builders","Use when defining or debugging MPS dataflow builders for a concept — control\u002Fdata flow declarations that drive reachability analysis and variable-use checking. Covers DataFlowBuilderDeclaration, BuilderBlock, emit instructions (code for, jump, ifjump, label, read, write, ret, mayBeUnreachable), positions (AfterPosition, BeforePosition, LabelPosition), the jetbrains.mps.lang.dataFlow language, the NodeParameter implicit, BL+smodel usage inside builder bodies, and IBuilderMode for advanced analyses such as nullable\u002Fnon-null tracking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2425],{"name":2426,"slug":2427,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":2430,"name":2430,"fn":2431,"description":2432,"org":2433,"tags":2434,"stars":2387,"repoUrl":2388,"updatedAt":2437},"mps-aspect-editor","define MPS editor layouts","Use when creating or changing MPS editor definitions — the overall workflow from scaffolding a `ConceptEditorDeclaration` through componentizing reusable `EditorComponentDeclaration`s, refining cell models and cell layouts, applying style sheets and indent-layout style items, wiring smart references, leveraging inheritance via super-concepts and interfaces, inspecting (`print_node_json`, `show_node_representation`) and validating (`check_root_node_problems`). Covers `jetbrains.mps.lang.editor` cell models (`CellModel_RefNode`\u002F`CellModel_RefNodeList`\u002F`CellModel_RefCell`\u002F`CellModel_Property`\u002F`CellModel_Constant`), layout choices, and JSON blueprints for common editor shapes. For the non-layout side (action maps, keymaps, transformation\u002Fsubstitute menus) use `mps-aspect-editor-menus-and-keymaps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2435,2436],{"name":2296,"slug":2297,"type":15},{"name":2368,"slug":2369,"type":15},"2026-07-23T05:41:56.638151",{"slug":2439,"name":2439,"fn":2440,"description":2441,"org":2442,"tags":2443,"stars":2387,"repoUrl":2388,"updatedAt":2446},"mps-aspect-editor-menus-and-keymaps","author MPS editor menus and keymaps","Use when authoring the **non-layout** parts of the MPS editor aspect — what happens when the user types, presses a key, triggers completion, pastes, or invokes a context action. Covers action maps (`CellActionMapDeclaration`), cell keymaps (`CellKeyMapDeclaration`), transformation menus (`TransformationMenu_Default` \u002F `_Named` \u002F `_Contribution`), substitute menus (`SubstituteMenu_Default` \u002F `SubstituteMenu` \u002F contributions), side transforms (LEFT\u002FRIGHT), legacy cell menus, paste wrappers and copy-paste handlers (in the actions language), completion styling, reference presentation, two-step deletion, and the editor selection API. Trigger terms: `actionMap`, `keyMap`, `delete_action_id`, `transformationMenu`, `substituteMenu`, `Ctrl+Space`, `Ctrl+Alt+B`, side transform, paste wrapper, completion styling, `PasteWrappers`, `CopyPasteHandlers`. For the **layout** side (cells, layouts, style sheets) use `mps-aspect-editor` instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2444,2445],{"name":2279,"slug":2280,"type":15},{"name":2368,"slug":2369,"type":15},"2026-07-23T05:41:49.666535",{"slug":2448,"name":2448,"fn":2449,"description":2450,"org":2451,"tags":2452,"stars":2387,"repoUrl":2388,"updatedAt":2455},"mps-aspect-generation-plan","modify MPS generation plans","Use when defining or modifying an MPS generation plan — explicit ordering of generators, checkpoints for cross-model reference resolution, forks for parallel branches, IncludePlan composition, conditional PlanContribution activation, ParameterEquals\u002FConceptListSelector fork selectors, and InitModelAttributes for targetFacet routing. Apply when working with @genplan models, the jetbrains.mps.lang.generator.plan language, attaching plans via DevKits or the Custom generation facet, or debugging cross-model mapping label resolution.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2453,2454],{"name":2381,"slug":2382,"type":15},{"name":2279,"slug":2280,"type":15},"2026-07-13T06:44:59.507855",{"slug":2457,"name":2457,"fn":2458,"description":2459,"org":2460,"tags":2461,"stars":2387,"repoUrl":2388,"updatedAt":2465},"mps-aspect-generator","define JetBrains MPS generator rules","Use when defining or modifying MPS generators — author a generator module, add or edit root\u002Freduction\u002Fweaving\u002Fpattern mapping rules, attach template macros ($COPY_SRC, $LOOP, $IF, $PROPERTY, $REF, $SWITCH, $MAP_SRC, $WEAVE, $INSERT, $LABEL, $TRACE, $VAR), wire mapping labels, build template switches, write pre\u002Fpost mapping scripts, navigate `genContext`, or debug \"rule didn't fire\", missing references, empty output, infinite reduction loops, and generated-Java compile failures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2462,2463,2464],{"name":2381,"slug":2382,"type":15},{"name":2416,"slug":2417,"type":15},{"name":2279,"slug":2280,"type":15},"2026-07-17T06:06:58.042999",{"slug":2467,"name":2467,"fn":2468,"description":2469,"org":2470,"tags":2471,"stars":2387,"repoUrl":2388,"updatedAt":2474},"mps-aspect-intentions","define and edit MPS intentions","Use when defining or editing MPS intentions (the Alt+Enter context-action aspect) — adding `IntentionDeclaration` roots, parameterized or surround-with variants, description\u002FisApplicable\u002Fexecute blocks, child-filter functions, factory-initialized AST splicing, or debugging why an intention is not offered. Lives in the language's `intentions` model and uses `jetbrains.mps.lang.intentions`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2472,2473],{"name":2381,"slug":2382,"type":15},{"name":2279,"slug":2280,"type":15},"2026-07-23T05:41:48.692899",{"slug":2476,"name":2476,"fn":2477,"description":2478,"org":2479,"tags":2480,"stars":2387,"repoUrl":2388,"updatedAt":2487},"mps-aspect-migrations","author and debug MPS migration scripts","Use when authoring or debugging MPS migration scripts that upgrade user models after a language definition changes — covers jetbrains.mps.lang.migration (MigrationScript class-based, PureMigrationScript declarative, MoveConcept\u002FMoveContainmentLink\u002FMoveReferenceLink\u002FMoveProperty, ordering via OrderDependency, data exchange via putData\u002FgetData, RefactoringLog, ConceptMigrationReference) and jetbrains.mps.lang.script Enhancement Scripts (MigrationScript with MigrationScriptPart_Instance, ExtractInterfaceMigration, FactoryMigrationScriptPart, CommentMigrationScriptPart) — when a model needs version-gated upgrade, concept rename or removal, link or property rename, instance-level transformation, or composition of migration steps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2481,2484],{"name":2482,"slug":2483,"type":15},"Debugging","debugging",{"name":2485,"slug":2486,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":2489,"name":2489,"fn":2490,"description":2491,"org":2492,"tags":2493,"stars":2387,"repoUrl":2388,"updatedAt":2497},"mps-aspect-structure-concepts","define concepts in MPS structure aspect","Define concepts, interface concepts, enumerations, and constrained data types in an MPS language's `structure` aspect. Covers smart-reference detection, alias rules, cardinality, INamedConcept usage, bulk creation, and the full `mps_mcp_alter_structure` \u002F `mps_mcp_query_structure` reference. Use when authoring or modifying a language's structure model.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2494],{"name":2495,"slug":2496,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188]