[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-deployments-cicd":3,"mdc-vxhreq-key":33,"related-repo-openai-deployments-cicd":3114,"related-org-openai-deployments-cicd":3236},{"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},"deployments-cicd","manage Vercel deployments and CI\u002FCD workflows","Vercel deployment and CI\u002FCD expert guidance. Use when deploying, promoting, rolling back, inspecting deployments, building with --prebuilt, or configuring CI workflow files for Vercel.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.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},"CI\u002FCD","ci-cd",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:41:05.97091",null,465,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fvercel\u002Fskills\u002Fdeployments-cicd","---\nname: deployments-cicd\ndescription: Vercel deployment and CI\u002FCD expert guidance. Use when deploying, promoting, rolling back, inspecting deployments, building with --prebuilt, or configuring CI workflow files for Vercel.\nmetadata:\n  priority: 6\n  docs:\n    - \"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fdeployments\u002Foverview\"\n    - \"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fgit\"\n  sitemap: \"https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml\"\n  pathPatterns:\n    - '.github\u002Fworkflows\u002F*.yml'\n    - '.github\u002Fworkflows\u002F*.yaml'\n    - '.gitlab-ci.yml'\n    - 'bitbucket-pipelines.yml'\n    - 'vercel.json'\n    - 'apps\u002F*\u002Fvercel.json'\n  bashPatterns:\n    - '\\bvercel\\s+deploy\\b'\n    - '\\bvercel\\s+--prod\\b'\n    - '\\bvercel\\s+promote\\b'\n    - '\\bvercel\\s+rollback\\b'\n    - '\\bvercel\\s+inspect\\b'\n    - '\\bvercel\\s+build\\b'\n    - '\\bvercel\\s+deploy\\s+--prebuilt\\b'\n---\n\n# Vercel Deployments & CI\u002FCD\n\nYou are an expert in Vercel deployment workflows — `vercel deploy`, `vercel promote`, `vercel rollback`, `vercel inspect`, `vercel build`, and CI\u002FCD pipeline integration with GitHub Actions, GitLab CI, and Bitbucket Pipelines.\n\n## Deployment Commands\n\n### Preview Deployment\n\n```bash\n# Deploy from project root (creates preview URL)\nvercel\n\n# Equivalent explicit form\nvercel deploy\n```\n\nPreview deployments are created automatically for every push to a non-production branch when using Git integration. They provide a unique URL for testing.\n\n### Production Deployment\n\n```bash\n# Deploy directly to production\nvercel --prod\nvercel deploy --prod\n\n# Force a new deployment (skip cache)\nvercel --prod --force\n```\n\n### Build Locally, Deploy Build Output\n\n```bash\n# Build locally (uses development env vars by default)\nvercel build\n\n# Build with production env vars\nvercel build --prod\n\n# Deploy only the build output (no remote build)\nvercel deploy --prebuilt\nvercel deploy --prebuilt --prod\n```\n\n**When to use `--prebuilt`:** Custom CI pipelines where you control the build step, need build caching at the CI level, or need to run tests between build and deploy.\n\n### Promote & Rollback\n\n```bash\n# Promote a preview deployment to production\nvercel promote \u003Cdeployment-url-or-id>\n\n# Rollback to the previous production deployment\nvercel rollback\n\n# Rollback to a specific deployment\nvercel rollback \u003Cdeployment-url-or-id>\n```\n\n**Promote vs deploy --prod:** `promote` is instant — it re-points the production alias without rebuilding. Use it when a preview deployment has been validated and is ready for production.\n\n### Inspect Deployments\n\n```bash\n# View deployment details (build info, functions, metadata)\nvercel inspect \u003Cdeployment-url>\n\n# List recent deployments\nvercel ls\n\n# View logs for a deployment\nvercel logs \u003Cdeployment-url>\nvercel logs \u003Cdeployment-url> --follow\n```\n\n## CI\u002FCD Integration\n\n### Required Environment Variables\n\nEvery CI pipeline needs these three variables:\n\n```bash\nVERCEL_TOKEN=\u003Cyour-token>        # Personal or team token\nVERCEL_ORG_ID=\u003Corg-id>           # From .vercel\u002Fproject.json\nVERCEL_PROJECT_ID=\u003Cproject-id>   # From .vercel\u002Fproject.json\n```\n\nSet these as secrets in your CI provider. Never commit them to source control.\n\n### GitHub Actions\n\n```yaml\nname: Deploy to Vercel\non:\n  push:\n    branches: [main]\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions\u002Fcheckout@v4\n\n      - name: Install Vercel CLI\n        run: npm install -g vercel\n\n      - name: Pull Vercel Environment\n        run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}\n\n      - name: Build\n        run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}\n\n      - name: Deploy\n        run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}\n```\n\n### OIDC Federation (Secure Backend Access)\n\nVercel OIDC federation is for **secure backend access** — letting your deployed Vercel functions authenticate with third-party services (AWS, GCP, HashiCorp Vault) without storing long-lived secrets. It does **not** replace `VERCEL_TOKEN` for CLI deployments.\n\n**What OIDC does:** Your Vercel function requests a short-lived OIDC token from Vercel at runtime, then exchanges it with an external provider's STS\u002Ftoken endpoint for scoped credentials.\n\n**What OIDC does not do:** Authenticate the Vercel CLI in CI pipelines. All `vercel pull`, `vercel build`, and `vercel deploy` commands still require `--token=${{ secrets.VERCEL_TOKEN }}`.\n\n**When to use OIDC:**\n- Serverless functions that need to call AWS APIs (S3, DynamoDB, SQS)\n- Functions authenticating to GCP services via Workload Identity Federation\n- Any runtime service-to-service auth where you want to avoid storing static secrets in Vercel env vars\n\n### GitLab CI\n\n```yaml\ndeploy:\n  image: node:20\n  stage: deploy\n  script:\n    - npm install -g vercel\n    - vercel pull --yes --environment=production --token=$VERCEL_TOKEN\n    - vercel build --prod --token=$VERCEL_TOKEN\n    - vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN\n  only:\n    - main\n```\n\n### Bitbucket Pipelines\n\n```yaml\npipelines:\n  branches:\n    main:\n      - step:\n          name: Deploy to Vercel\n          image: node:20\n          script:\n            - npm install -g vercel\n            - vercel pull --yes --environment=production --token=$VERCEL_TOKEN\n            - vercel build --prod --token=$VERCEL_TOKEN\n            - vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN\n```\n\n## Common CI Patterns\n\n### Preview Deployments on PRs\n\n```yaml\n# GitHub Actions\non:\n  pull_request:\n    types: [opened, synchronize]\n\njobs:\n  preview:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions\u002Fcheckout@v4\n      - run: npm install -g vercel\n      - run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}\n      - run: vercel build --token=${{ secrets.VERCEL_TOKEN }}\n      - id: deploy\n        run: echo \"url=$(vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }})\" >> $GITHUB_OUTPUT\n      - name: Comment PR\n        uses: actions\u002Fgithub-script@v7\n        with:\n          script: |\n            github.rest.issues.createComment({\n              issue_number: context.issue.number,\n              owner: context.repo.owner,\n              repo: context.repo.repo,\n              body: `Preview: ${{ steps.deploy.outputs.url }}`\n            })\n```\n\n### Promote After Tests Pass\n\n```yaml\njobs:\n  deploy-preview:\n    # ... deploy preview ...\n    outputs:\n      url: ${{ steps.deploy.outputs.url }}\n\n  e2e-tests:\n    needs: deploy-preview\n    runs-on: ubuntu-latest\n    steps:\n      - run: npx playwright test --base-url=${{ needs.deploy-preview.outputs.url }}\n\n  promote:\n    needs: [deploy-preview, e2e-tests]\n    runs-on: ubuntu-latest\n    if: github.ref == 'refs\u002Fheads\u002Fmain'\n    steps:\n      - run: npm install -g vercel\n      - run: vercel promote ${{ needs.deploy-preview.outputs.url }} --token=${{ secrets.VERCEL_TOKEN }}\n```\n\n## Global CLI Flags for CI\n\n| Flag | Purpose |\n|------|---------|\n| `--token \u003Ctoken>` | Authenticate (required in CI) |\n| `--yes` \u002F `-y` | Skip confirmation prompts |\n| `--scope \u003Cteam>` | Execute as a specific team |\n| `--cwd \u003Cdir>` | Set working directory |\n\n## Best Practices\n\n1. **Always use `--prebuilt` in CI** — separates build from deploy, enables build caching and test gates\n2. **Use `vercel pull` before build** — ensures correct env vars and project settings\n3. **Prefer `promote` over re-deploy** — instant, no rebuild, same artifact\n4. **Use OIDC federation for runtime backend access** — lets Vercel functions auth to AWS\u002FGCP without static secrets (does not replace `VERCEL_TOKEN` for CLI)\n5. **Pin the Vercel CLI version in CI** — `npm install -g vercel@latest` can break unexpectedly\n6. **Add `--yes` flag in CI** — prevents interactive prompts from hanging pipelines\n\n## Deployment Strategy Matrix\n\n| Scenario | Strategy | Commands |\n|----------|----------|----------|\n| Standard team workflow | Git-push deploy | Push to main\u002Ffeature branches |\n| Custom CI\u002FCD (Actions, CircleCI) | Prebuilt deploy | `vercel build && vercel deploy --prebuilt` |\n| Monorepo with Turborepo | Affected + remote cache | `turbo run build --affected --remote-cache` |\n| Preview for every PR | Default behavior | Auto-creates preview URL per branch |\n| Promote preview to production | CLI promotion | `vercel promote \u003Curl>` |\n| Atomic deploys with DB migrations | Two-phase | Run migration → verify → `vercel promote` |\n| Edge-first architecture | Edge Functions | Set `runtime: 'edge'` in route config |\n\n## Common Build Errors\n\n| Error | Cause | Fix |\n|-------|-------|-----|\n| `ERR_PNPM_OUTDATED_LOCKFILE` | Lockfile doesn't match package.json | Run `pnpm install`, commit lockfile |\n| `NEXT_NOT_FOUND` | Root directory misconfigured | Set `rootDirectory` in Project Settings |\n| `Invalid next.config.js` | Config syntax error | Validate config locally with `next build` |\n| `functions\u002Fapi\u002F*.js` mismatch | Wrong file structure | Move to `app\u002Fapi\u002F` directory (App Router) |\n| `Error: EPERM` | File permission issue in build | Don't `chmod` in build scripts; use postinstall |\n\n## Deploy Summary Format\n\nPresent a structured deploy result block:\n\n```\n## Deploy Result\n- **URL**: \u003Cdeployment-url>\n- **Target**: production | preview\n- **Status**: READY | ERROR | BUILDING | QUEUED\n- **Commit**: \u003Cshort-sha>\n- **Framework**: \u003Cdetected-framework>\n- **Build Duration**: \u003Cduration>\n```\n\nIf the deployment failed, append:\n\n```\n- **Error**: \u003Csummary of failure from logs>\n```\n\nFor production deploys, also include:\n\n```\n### Post-Deploy Observability\n- **Error scan**: \u003CN errors found \u002F clean> (scanned via vercel logs --level error --since 1h)\n- **Drains**: \u003CN configured \u002F none>\n- **Monitoring**: \u003Cactive \u002F gaps identified>\n```\n\n## Deploy Next Steps\n\nBased on the deployment outcome:\n\n- **Success (preview)** → \"Visit the preview URL to verify. When ready, run `\u002Fdeploy prod` to promote to production.\"\n- **Success (production)** → \"Your production site is live. Run `\u002Fstatus` to see the full project overview.\"\n- **Build error** → \"Check the build logs above. Common fixes: verify `build` script in package.json, check for missing env vars with `\u002Fenv list`, ensure dependencies are installed.\"\n- **Missing env vars** → \"Run `\u002Fenv pull` to sync environment variables locally, or `\u002Fenv list` to review what's configured on Vercel.\"\n- **Monorepo issues** → \"Ensure the correct project root is configured in Vercel project settings. Check `vercel.json` for `rootDirectory`.\"\n- **Post-deploy errors detected** → \"Review errors above. Check `vercel logs \u003Curl> --level error` for details. If drains are configured, correlate with external monitoring.\"\n- **No monitoring configured** → \"Set up drains or install an error tracking integration before the next production deploy. Run `\u002Fstatus` for a full observability diagnostic.\"\n\n## Official Documentation\n\n- [Deployments](https:\u002F\u002Fvercel.com\u002Fdocs\u002Fdeployments)\n- [Vercel CLI](https:\u002F\u002Fvercel.com\u002Fdocs\u002Fcli)\n- [GitHub Actions](https:\u002F\u002Fvercel.com\u002Fdocs\u002Fdeployments\u002Fgit\u002Fvercel-for-github)\n- [GitLab CI](https:\u002F\u002Fvercel.com\u002Fdocs\u002Fdeployments\u002Fgit\u002Fvercel-for-gitlab)\n- [Bitbucket Pipelines](https:\u002F\u002Fvercel.com\u002Fdocs\u002Fdeployments\u002Fgit\u002Fvercel-for-bitbucket)\n- [OIDC Federation](https:\u002F\u002Fvercel.com\u002Fdocs\u002Foidc)\n",{"data":34,"body":56},{"name":4,"description":6,"metadata":35},{"priority":36,"docs":37,"sitemap":40,"pathPatterns":41,"bashPatterns":48},6,[38,39],"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fdeployments\u002Foverview","https:\u002F\u002Fvercel.com\u002Fdocs\u002Fgit","https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml",[42,43,44,45,46,47],".github\u002Fworkflows\u002F*.yml",".github\u002Fworkflows\u002F*.yaml",".gitlab-ci.yml","bitbucket-pipelines.yml","vercel.json","apps\u002F*\u002Fvercel.json",[49,50,51,52,53,54,55],"\\bvercel\\s+deploy\\b","\\bvercel\\s+--prod\\b","\\bvercel\\s+promote\\b","\\bvercel\\s+rollback\\b","\\bvercel\\s+inspect\\b","\\bvercel\\s+build\\b","\\bvercel\\s+deploy\\s+--prebuilt\\b",{"type":57,"children":58},"root",[59,68,112,119,126,192,197,203,278,284,396,415,421,540,558,564,712,718,724,729,815,820,826,1175,1181,1207,1217,1256,1264,1284,1290,1426,1432,1580,1586,1592,1953,1959,2242,2248,2352,2358,2465,2471,2649,2655,2831,2837,2842,2852,2857,2866,2871,2880,2886,2891,3040,3046,3108],{"type":60,"tag":61,"props":62,"children":64},"element","h1",{"id":63},"vercel-deployments-cicd",[65],{"type":66,"value":67},"text","Vercel Deployments & CI\u002FCD",{"type":60,"tag":69,"props":70,"children":71},"p",{},[72,74,81,83,89,90,96,97,103,104,110],{"type":66,"value":73},"You are an expert in Vercel deployment workflows — ",{"type":60,"tag":75,"props":76,"children":78},"code",{"className":77},[],[79],{"type":66,"value":80},"vercel deploy",{"type":66,"value":82},", ",{"type":60,"tag":75,"props":84,"children":86},{"className":85},[],[87],{"type":66,"value":88},"vercel promote",{"type":66,"value":82},{"type":60,"tag":75,"props":91,"children":93},{"className":92},[],[94],{"type":66,"value":95},"vercel rollback",{"type":66,"value":82},{"type":60,"tag":75,"props":98,"children":100},{"className":99},[],[101],{"type":66,"value":102},"vercel inspect",{"type":66,"value":82},{"type":60,"tag":75,"props":105,"children":107},{"className":106},[],[108],{"type":66,"value":109},"vercel build",{"type":66,"value":111},", and CI\u002FCD pipeline integration with GitHub Actions, GitLab CI, and Bitbucket Pipelines.",{"type":60,"tag":113,"props":114,"children":116},"h2",{"id":115},"deployment-commands",[117],{"type":66,"value":118},"Deployment Commands",{"type":60,"tag":120,"props":121,"children":123},"h3",{"id":122},"preview-deployment",[124],{"type":66,"value":125},"Preview Deployment",{"type":60,"tag":127,"props":128,"children":133},"pre",{"className":129,"code":130,"language":131,"meta":132,"style":132},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Deploy from project root (creates preview URL)\nvercel\n\n# Equivalent explicit form\nvercel deploy\n","bash","",[134],{"type":60,"tag":75,"props":135,"children":136},{"__ignoreMap":132},[137,149,159,169,178],{"type":60,"tag":138,"props":139,"children":142},"span",{"class":140,"line":141},"line",1,[143],{"type":60,"tag":138,"props":144,"children":146},{"style":145},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[147],{"type":66,"value":148},"# Deploy from project root (creates preview URL)\n",{"type":60,"tag":138,"props":150,"children":152},{"class":140,"line":151},2,[153],{"type":60,"tag":138,"props":154,"children":156},{"style":155},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[157],{"type":66,"value":158},"vercel\n",{"type":60,"tag":138,"props":160,"children":162},{"class":140,"line":161},3,[163],{"type":60,"tag":138,"props":164,"children":166},{"emptyLinePlaceholder":165},true,[167],{"type":66,"value":168},"\n",{"type":60,"tag":138,"props":170,"children":172},{"class":140,"line":171},4,[173],{"type":60,"tag":138,"props":174,"children":175},{"style":145},[176],{"type":66,"value":177},"# Equivalent explicit form\n",{"type":60,"tag":138,"props":179,"children":181},{"class":140,"line":180},5,[182,186],{"type":60,"tag":138,"props":183,"children":184},{"style":155},[185],{"type":66,"value":14},{"type":60,"tag":138,"props":187,"children":189},{"style":188},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[190],{"type":66,"value":191}," deploy\n",{"type":60,"tag":69,"props":193,"children":194},{},[195],{"type":66,"value":196},"Preview deployments are created automatically for every push to a non-production branch when using Git integration. They provide a unique URL for testing.",{"type":60,"tag":120,"props":198,"children":200},{"id":199},"production-deployment",[201],{"type":66,"value":202},"Production Deployment",{"type":60,"tag":127,"props":204,"children":206},{"className":129,"code":205,"language":131,"meta":132,"style":132},"# Deploy directly to production\nvercel --prod\nvercel deploy --prod\n\n# Force a new deployment (skip cache)\nvercel --prod --force\n",[207],{"type":60,"tag":75,"props":208,"children":209},{"__ignoreMap":132},[210,218,230,246,253,261],{"type":60,"tag":138,"props":211,"children":212},{"class":140,"line":141},[213],{"type":60,"tag":138,"props":214,"children":215},{"style":145},[216],{"type":66,"value":217},"# Deploy directly to production\n",{"type":60,"tag":138,"props":219,"children":220},{"class":140,"line":151},[221,225],{"type":60,"tag":138,"props":222,"children":223},{"style":155},[224],{"type":66,"value":14},{"type":60,"tag":138,"props":226,"children":227},{"style":188},[228],{"type":66,"value":229}," --prod\n",{"type":60,"tag":138,"props":231,"children":232},{"class":140,"line":161},[233,237,242],{"type":60,"tag":138,"props":234,"children":235},{"style":155},[236],{"type":66,"value":14},{"type":60,"tag":138,"props":238,"children":239},{"style":188},[240],{"type":66,"value":241}," deploy",{"type":60,"tag":138,"props":243,"children":244},{"style":188},[245],{"type":66,"value":229},{"type":60,"tag":138,"props":247,"children":248},{"class":140,"line":171},[249],{"type":60,"tag":138,"props":250,"children":251},{"emptyLinePlaceholder":165},[252],{"type":66,"value":168},{"type":60,"tag":138,"props":254,"children":255},{"class":140,"line":180},[256],{"type":60,"tag":138,"props":257,"children":258},{"style":145},[259],{"type":66,"value":260},"# Force a new deployment (skip cache)\n",{"type":60,"tag":138,"props":262,"children":263},{"class":140,"line":36},[264,268,273],{"type":60,"tag":138,"props":265,"children":266},{"style":155},[267],{"type":66,"value":14},{"type":60,"tag":138,"props":269,"children":270},{"style":188},[271],{"type":66,"value":272}," --prod",{"type":60,"tag":138,"props":274,"children":275},{"style":188},[276],{"type":66,"value":277}," --force\n",{"type":60,"tag":120,"props":279,"children":281},{"id":280},"build-locally-deploy-build-output",[282],{"type":66,"value":283},"Build Locally, Deploy Build Output",{"type":60,"tag":127,"props":285,"children":287},{"className":129,"code":286,"language":131,"meta":132,"style":132},"# Build locally (uses development env vars by default)\nvercel build\n\n# Build with production env vars\nvercel build --prod\n\n# Deploy only the build output (no remote build)\nvercel deploy --prebuilt\nvercel deploy --prebuilt --prod\n",[288],{"type":60,"tag":75,"props":289,"children":290},{"__ignoreMap":132},[291,299,311,318,326,342,349,358,375],{"type":60,"tag":138,"props":292,"children":293},{"class":140,"line":141},[294],{"type":60,"tag":138,"props":295,"children":296},{"style":145},[297],{"type":66,"value":298},"# Build locally (uses development env vars by default)\n",{"type":60,"tag":138,"props":300,"children":301},{"class":140,"line":151},[302,306],{"type":60,"tag":138,"props":303,"children":304},{"style":155},[305],{"type":66,"value":14},{"type":60,"tag":138,"props":307,"children":308},{"style":188},[309],{"type":66,"value":310}," build\n",{"type":60,"tag":138,"props":312,"children":313},{"class":140,"line":161},[314],{"type":60,"tag":138,"props":315,"children":316},{"emptyLinePlaceholder":165},[317],{"type":66,"value":168},{"type":60,"tag":138,"props":319,"children":320},{"class":140,"line":171},[321],{"type":60,"tag":138,"props":322,"children":323},{"style":145},[324],{"type":66,"value":325},"# Build with production env vars\n",{"type":60,"tag":138,"props":327,"children":328},{"class":140,"line":180},[329,333,338],{"type":60,"tag":138,"props":330,"children":331},{"style":155},[332],{"type":66,"value":14},{"type":60,"tag":138,"props":334,"children":335},{"style":188},[336],{"type":66,"value":337}," build",{"type":60,"tag":138,"props":339,"children":340},{"style":188},[341],{"type":66,"value":229},{"type":60,"tag":138,"props":343,"children":344},{"class":140,"line":36},[345],{"type":60,"tag":138,"props":346,"children":347},{"emptyLinePlaceholder":165},[348],{"type":66,"value":168},{"type":60,"tag":138,"props":350,"children":352},{"class":140,"line":351},7,[353],{"type":60,"tag":138,"props":354,"children":355},{"style":145},[356],{"type":66,"value":357},"# Deploy only the build output (no remote build)\n",{"type":60,"tag":138,"props":359,"children":361},{"class":140,"line":360},8,[362,366,370],{"type":60,"tag":138,"props":363,"children":364},{"style":155},[365],{"type":66,"value":14},{"type":60,"tag":138,"props":367,"children":368},{"style":188},[369],{"type":66,"value":241},{"type":60,"tag":138,"props":371,"children":372},{"style":188},[373],{"type":66,"value":374}," --prebuilt\n",{"type":60,"tag":138,"props":376,"children":378},{"class":140,"line":377},9,[379,383,387,392],{"type":60,"tag":138,"props":380,"children":381},{"style":155},[382],{"type":66,"value":14},{"type":60,"tag":138,"props":384,"children":385},{"style":188},[386],{"type":66,"value":241},{"type":60,"tag":138,"props":388,"children":389},{"style":188},[390],{"type":66,"value":391}," --prebuilt",{"type":60,"tag":138,"props":393,"children":394},{"style":188},[395],{"type":66,"value":229},{"type":60,"tag":69,"props":397,"children":398},{},[399,413],{"type":60,"tag":400,"props":401,"children":402},"strong",{},[403,405,411],{"type":66,"value":404},"When to use ",{"type":60,"tag":75,"props":406,"children":408},{"className":407},[],[409],{"type":66,"value":410},"--prebuilt",{"type":66,"value":412},":",{"type":66,"value":414}," Custom CI pipelines where you control the build step, need build caching at the CI level, or need to run tests between build and deploy.",{"type":60,"tag":120,"props":416,"children":418},{"id":417},"promote-rollback",[419],{"type":66,"value":420},"Promote & Rollback",{"type":60,"tag":127,"props":422,"children":424},{"className":129,"code":423,"language":131,"meta":132,"style":132},"# Promote a preview deployment to production\nvercel promote \u003Cdeployment-url-or-id>\n\n# Rollback to the previous production deployment\nvercel rollback\n\n# Rollback to a specific deployment\nvercel rollback \u003Cdeployment-url-or-id>\n",[425],{"type":60,"tag":75,"props":426,"children":427},{"__ignoreMap":132},[428,436,470,477,485,497,504,512],{"type":60,"tag":138,"props":429,"children":430},{"class":140,"line":141},[431],{"type":60,"tag":138,"props":432,"children":433},{"style":145},[434],{"type":66,"value":435},"# Promote a preview deployment to production\n",{"type":60,"tag":138,"props":437,"children":438},{"class":140,"line":151},[439,443,448,454,459,465],{"type":60,"tag":138,"props":440,"children":441},{"style":155},[442],{"type":66,"value":14},{"type":60,"tag":138,"props":444,"children":445},{"style":188},[446],{"type":66,"value":447}," promote",{"type":60,"tag":138,"props":449,"children":451},{"style":450},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[452],{"type":66,"value":453}," \u003C",{"type":60,"tag":138,"props":455,"children":456},{"style":188},[457],{"type":66,"value":458},"deployment-url-or-i",{"type":60,"tag":138,"props":460,"children":462},{"style":461},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[463],{"type":66,"value":464},"d",{"type":60,"tag":138,"props":466,"children":467},{"style":450},[468],{"type":66,"value":469},">\n",{"type":60,"tag":138,"props":471,"children":472},{"class":140,"line":161},[473],{"type":60,"tag":138,"props":474,"children":475},{"emptyLinePlaceholder":165},[476],{"type":66,"value":168},{"type":60,"tag":138,"props":478,"children":479},{"class":140,"line":171},[480],{"type":60,"tag":138,"props":481,"children":482},{"style":145},[483],{"type":66,"value":484},"# Rollback to the previous production deployment\n",{"type":60,"tag":138,"props":486,"children":487},{"class":140,"line":180},[488,492],{"type":60,"tag":138,"props":489,"children":490},{"style":155},[491],{"type":66,"value":14},{"type":60,"tag":138,"props":493,"children":494},{"style":188},[495],{"type":66,"value":496}," rollback\n",{"type":60,"tag":138,"props":498,"children":499},{"class":140,"line":36},[500],{"type":60,"tag":138,"props":501,"children":502},{"emptyLinePlaceholder":165},[503],{"type":66,"value":168},{"type":60,"tag":138,"props":505,"children":506},{"class":140,"line":351},[507],{"type":60,"tag":138,"props":508,"children":509},{"style":145},[510],{"type":66,"value":511},"# Rollback to a specific deployment\n",{"type":60,"tag":138,"props":513,"children":514},{"class":140,"line":360},[515,519,524,528,532,536],{"type":60,"tag":138,"props":516,"children":517},{"style":155},[518],{"type":66,"value":14},{"type":60,"tag":138,"props":520,"children":521},{"style":188},[522],{"type":66,"value":523}," rollback",{"type":60,"tag":138,"props":525,"children":526},{"style":450},[527],{"type":66,"value":453},{"type":60,"tag":138,"props":529,"children":530},{"style":188},[531],{"type":66,"value":458},{"type":60,"tag":138,"props":533,"children":534},{"style":461},[535],{"type":66,"value":464},{"type":60,"tag":138,"props":537,"children":538},{"style":450},[539],{"type":66,"value":469},{"type":60,"tag":69,"props":541,"children":542},{},[543,548,550,556],{"type":60,"tag":400,"props":544,"children":545},{},[546],{"type":66,"value":547},"Promote vs deploy --prod:",{"type":66,"value":549}," ",{"type":60,"tag":75,"props":551,"children":553},{"className":552},[],[554],{"type":66,"value":555},"promote",{"type":66,"value":557}," is instant — it re-points the production alias without rebuilding. Use it when a preview deployment has been validated and is ready for production.",{"type":60,"tag":120,"props":559,"children":561},{"id":560},"inspect-deployments",[562],{"type":66,"value":563},"Inspect Deployments",{"type":60,"tag":127,"props":565,"children":567},{"className":129,"code":566,"language":131,"meta":132,"style":132},"# View deployment details (build info, functions, metadata)\nvercel inspect \u003Cdeployment-url>\n\n# List recent deployments\nvercel ls\n\n# View logs for a deployment\nvercel logs \u003Cdeployment-url>\nvercel logs \u003Cdeployment-url> --follow\n",[568],{"type":60,"tag":75,"props":569,"children":570},{"__ignoreMap":132},[571,579,609,616,624,636,643,651,679],{"type":60,"tag":138,"props":572,"children":573},{"class":140,"line":141},[574],{"type":60,"tag":138,"props":575,"children":576},{"style":145},[577],{"type":66,"value":578},"# View deployment details (build info, functions, metadata)\n",{"type":60,"tag":138,"props":580,"children":581},{"class":140,"line":151},[582,586,591,595,600,605],{"type":60,"tag":138,"props":583,"children":584},{"style":155},[585],{"type":66,"value":14},{"type":60,"tag":138,"props":587,"children":588},{"style":188},[589],{"type":66,"value":590}," inspect",{"type":60,"tag":138,"props":592,"children":593},{"style":450},[594],{"type":66,"value":453},{"type":60,"tag":138,"props":596,"children":597},{"style":188},[598],{"type":66,"value":599},"deployment-ur",{"type":60,"tag":138,"props":601,"children":602},{"style":461},[603],{"type":66,"value":604},"l",{"type":60,"tag":138,"props":606,"children":607},{"style":450},[608],{"type":66,"value":469},{"type":60,"tag":138,"props":610,"children":611},{"class":140,"line":161},[612],{"type":60,"tag":138,"props":613,"children":614},{"emptyLinePlaceholder":165},[615],{"type":66,"value":168},{"type":60,"tag":138,"props":617,"children":618},{"class":140,"line":171},[619],{"type":60,"tag":138,"props":620,"children":621},{"style":145},[622],{"type":66,"value":623},"# List recent deployments\n",{"type":60,"tag":138,"props":625,"children":626},{"class":140,"line":180},[627,631],{"type":60,"tag":138,"props":628,"children":629},{"style":155},[630],{"type":66,"value":14},{"type":60,"tag":138,"props":632,"children":633},{"style":188},[634],{"type":66,"value":635}," ls\n",{"type":60,"tag":138,"props":637,"children":638},{"class":140,"line":36},[639],{"type":60,"tag":138,"props":640,"children":641},{"emptyLinePlaceholder":165},[642],{"type":66,"value":168},{"type":60,"tag":138,"props":644,"children":645},{"class":140,"line":351},[646],{"type":60,"tag":138,"props":647,"children":648},{"style":145},[649],{"type":66,"value":650},"# View logs for a deployment\n",{"type":60,"tag":138,"props":652,"children":653},{"class":140,"line":360},[654,658,663,667,671,675],{"type":60,"tag":138,"props":655,"children":656},{"style":155},[657],{"type":66,"value":14},{"type":60,"tag":138,"props":659,"children":660},{"style":188},[661],{"type":66,"value":662}," logs",{"type":60,"tag":138,"props":664,"children":665},{"style":450},[666],{"type":66,"value":453},{"type":60,"tag":138,"props":668,"children":669},{"style":188},[670],{"type":66,"value":599},{"type":60,"tag":138,"props":672,"children":673},{"style":461},[674],{"type":66,"value":604},{"type":60,"tag":138,"props":676,"children":677},{"style":450},[678],{"type":66,"value":469},{"type":60,"tag":138,"props":680,"children":681},{"class":140,"line":377},[682,686,690,694,698,702,707],{"type":60,"tag":138,"props":683,"children":684},{"style":155},[685],{"type":66,"value":14},{"type":60,"tag":138,"props":687,"children":688},{"style":188},[689],{"type":66,"value":662},{"type":60,"tag":138,"props":691,"children":692},{"style":450},[693],{"type":66,"value":453},{"type":60,"tag":138,"props":695,"children":696},{"style":188},[697],{"type":66,"value":599},{"type":60,"tag":138,"props":699,"children":700},{"style":461},[701],{"type":66,"value":604},{"type":60,"tag":138,"props":703,"children":704},{"style":450},[705],{"type":66,"value":706},">",{"type":60,"tag":138,"props":708,"children":709},{"style":188},[710],{"type":66,"value":711}," --follow\n",{"type":60,"tag":113,"props":713,"children":715},{"id":714},"cicd-integration",[716],{"type":66,"value":717},"CI\u002FCD Integration",{"type":60,"tag":120,"props":719,"children":721},{"id":720},"required-environment-variables",[722],{"type":66,"value":723},"Required Environment Variables",{"type":60,"tag":69,"props":725,"children":726},{},[727],{"type":66,"value":728},"Every CI pipeline needs these three variables:",{"type":60,"tag":127,"props":730,"children":732},{"className":129,"code":731,"language":131,"meta":132,"style":132},"VERCEL_TOKEN=\u003Cyour-token>        # Personal or team token\nVERCEL_ORG_ID=\u003Corg-id>           # From .vercel\u002Fproject.json\nVERCEL_PROJECT_ID=\u003Cproject-id>   # From .vercel\u002Fproject.json\n",[733],{"type":60,"tag":75,"props":734,"children":735},{"__ignoreMap":132},[736,763,789],{"type":60,"tag":138,"props":737,"children":738},{"class":140,"line":141},[739,744,749,754,758],{"type":60,"tag":138,"props":740,"children":741},{"style":461},[742],{"type":66,"value":743},"VERCEL_TOKEN",{"type":60,"tag":138,"props":745,"children":746},{"style":450},[747],{"type":66,"value":748},"=\u003C",{"type":60,"tag":138,"props":750,"children":751},{"style":188},[752],{"type":66,"value":753},"your-token",{"type":60,"tag":138,"props":755,"children":756},{"style":450},[757],{"type":66,"value":706},{"type":60,"tag":138,"props":759,"children":760},{"style":145},[761],{"type":66,"value":762},"        # Personal or team token\n",{"type":60,"tag":138,"props":764,"children":765},{"class":140,"line":151},[766,771,775,780,784],{"type":60,"tag":138,"props":767,"children":768},{"style":461},[769],{"type":66,"value":770},"VERCEL_ORG_ID",{"type":60,"tag":138,"props":772,"children":773},{"style":450},[774],{"type":66,"value":748},{"type":60,"tag":138,"props":776,"children":777},{"style":188},[778],{"type":66,"value":779},"org-id",{"type":60,"tag":138,"props":781,"children":782},{"style":450},[783],{"type":66,"value":706},{"type":60,"tag":138,"props":785,"children":786},{"style":145},[787],{"type":66,"value":788},"           # From .vercel\u002Fproject.json\n",{"type":60,"tag":138,"props":790,"children":791},{"class":140,"line":161},[792,797,801,806,810],{"type":60,"tag":138,"props":793,"children":794},{"style":461},[795],{"type":66,"value":796},"VERCEL_PROJECT_ID",{"type":60,"tag":138,"props":798,"children":799},{"style":450},[800],{"type":66,"value":748},{"type":60,"tag":138,"props":802,"children":803},{"style":188},[804],{"type":66,"value":805},"project-id",{"type":60,"tag":138,"props":807,"children":808},{"style":450},[809],{"type":66,"value":706},{"type":60,"tag":138,"props":811,"children":812},{"style":145},[813],{"type":66,"value":814},"   # From .vercel\u002Fproject.json\n",{"type":60,"tag":69,"props":816,"children":817},{},[818],{"type":66,"value":819},"Set these as secrets in your CI provider. Never commit them to source control.",{"type":60,"tag":120,"props":821,"children":823},{"id":822},"github-actions",[824],{"type":66,"value":825},"GitHub Actions",{"type":60,"tag":127,"props":827,"children":831},{"className":828,"code":829,"language":830,"meta":132,"style":132},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","name: Deploy to Vercel\non:\n  push:\n    branches: [main]\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions\u002Fcheckout@v4\n\n      - name: Install Vercel CLI\n        run: npm install -g vercel\n\n      - name: Pull Vercel Environment\n        run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}\n\n      - name: Build\n        run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}\n\n      - name: Deploy\n        run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}\n","yaml",[832],{"type":60,"tag":75,"props":833,"children":834},{"__ignoreMap":132},[835,853,867,879,906,913,925,937,954,966,989,997,1019,1037,1045,1066,1083,1091,1112,1129,1137,1158],{"type":60,"tag":138,"props":836,"children":837},{"class":140,"line":141},[838,844,848],{"type":60,"tag":138,"props":839,"children":841},{"style":840},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[842],{"type":66,"value":843},"name",{"type":60,"tag":138,"props":845,"children":846},{"style":450},[847],{"type":66,"value":412},{"type":60,"tag":138,"props":849,"children":850},{"style":188},[851],{"type":66,"value":852}," Deploy to Vercel\n",{"type":60,"tag":138,"props":854,"children":855},{"class":140,"line":151},[856,862],{"type":60,"tag":138,"props":857,"children":859},{"style":858},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[860],{"type":66,"value":861},"on",{"type":60,"tag":138,"props":863,"children":864},{"style":450},[865],{"type":66,"value":866},":\n",{"type":60,"tag":138,"props":868,"children":869},{"class":140,"line":161},[870,875],{"type":60,"tag":138,"props":871,"children":872},{"style":840},[873],{"type":66,"value":874},"  push",{"type":60,"tag":138,"props":876,"children":877},{"style":450},[878],{"type":66,"value":866},{"type":60,"tag":138,"props":880,"children":881},{"class":140,"line":171},[882,887,891,896,901],{"type":60,"tag":138,"props":883,"children":884},{"style":840},[885],{"type":66,"value":886},"    branches",{"type":60,"tag":138,"props":888,"children":889},{"style":450},[890],{"type":66,"value":412},{"type":60,"tag":138,"props":892,"children":893},{"style":450},[894],{"type":66,"value":895}," [",{"type":60,"tag":138,"props":897,"children":898},{"style":188},[899],{"type":66,"value":900},"main",{"type":60,"tag":138,"props":902,"children":903},{"style":450},[904],{"type":66,"value":905},"]\n",{"type":60,"tag":138,"props":907,"children":908},{"class":140,"line":180},[909],{"type":60,"tag":138,"props":910,"children":911},{"emptyLinePlaceholder":165},[912],{"type":66,"value":168},{"type":60,"tag":138,"props":914,"children":915},{"class":140,"line":36},[916,921],{"type":60,"tag":138,"props":917,"children":918},{"style":840},[919],{"type":66,"value":920},"jobs",{"type":60,"tag":138,"props":922,"children":923},{"style":450},[924],{"type":66,"value":866},{"type":60,"tag":138,"props":926,"children":927},{"class":140,"line":351},[928,933],{"type":60,"tag":138,"props":929,"children":930},{"style":840},[931],{"type":66,"value":932},"  deploy",{"type":60,"tag":138,"props":934,"children":935},{"style":450},[936],{"type":66,"value":866},{"type":60,"tag":138,"props":938,"children":939},{"class":140,"line":360},[940,945,949],{"type":60,"tag":138,"props":941,"children":942},{"style":840},[943],{"type":66,"value":944},"    runs-on",{"type":60,"tag":138,"props":946,"children":947},{"style":450},[948],{"type":66,"value":412},{"type":60,"tag":138,"props":950,"children":951},{"style":188},[952],{"type":66,"value":953}," ubuntu-latest\n",{"type":60,"tag":138,"props":955,"children":956},{"class":140,"line":377},[957,962],{"type":60,"tag":138,"props":958,"children":959},{"style":840},[960],{"type":66,"value":961},"    steps",{"type":60,"tag":138,"props":963,"children":964},{"style":450},[965],{"type":66,"value":866},{"type":60,"tag":138,"props":967,"children":969},{"class":140,"line":968},10,[970,975,980,984],{"type":60,"tag":138,"props":971,"children":972},{"style":450},[973],{"type":66,"value":974},"      -",{"type":60,"tag":138,"props":976,"children":977},{"style":840},[978],{"type":66,"value":979}," uses",{"type":60,"tag":138,"props":981,"children":982},{"style":450},[983],{"type":66,"value":412},{"type":60,"tag":138,"props":985,"children":986},{"style":188},[987],{"type":66,"value":988}," actions\u002Fcheckout@v4\n",{"type":60,"tag":138,"props":990,"children":992},{"class":140,"line":991},11,[993],{"type":60,"tag":138,"props":994,"children":995},{"emptyLinePlaceholder":165},[996],{"type":66,"value":168},{"type":60,"tag":138,"props":998,"children":1000},{"class":140,"line":999},12,[1001,1005,1010,1014],{"type":60,"tag":138,"props":1002,"children":1003},{"style":450},[1004],{"type":66,"value":974},{"type":60,"tag":138,"props":1006,"children":1007},{"style":840},[1008],{"type":66,"value":1009}," name",{"type":60,"tag":138,"props":1011,"children":1012},{"style":450},[1013],{"type":66,"value":412},{"type":60,"tag":138,"props":1015,"children":1016},{"style":188},[1017],{"type":66,"value":1018}," Install Vercel CLI\n",{"type":60,"tag":138,"props":1020,"children":1022},{"class":140,"line":1021},13,[1023,1028,1032],{"type":60,"tag":138,"props":1024,"children":1025},{"style":840},[1026],{"type":66,"value":1027},"        run",{"type":60,"tag":138,"props":1029,"children":1030},{"style":450},[1031],{"type":66,"value":412},{"type":60,"tag":138,"props":1033,"children":1034},{"style":188},[1035],{"type":66,"value":1036}," npm install -g vercel\n",{"type":60,"tag":138,"props":1038,"children":1040},{"class":140,"line":1039},14,[1041],{"type":60,"tag":138,"props":1042,"children":1043},{"emptyLinePlaceholder":165},[1044],{"type":66,"value":168},{"type":60,"tag":138,"props":1046,"children":1048},{"class":140,"line":1047},15,[1049,1053,1057,1061],{"type":60,"tag":138,"props":1050,"children":1051},{"style":450},[1052],{"type":66,"value":974},{"type":60,"tag":138,"props":1054,"children":1055},{"style":840},[1056],{"type":66,"value":1009},{"type":60,"tag":138,"props":1058,"children":1059},{"style":450},[1060],{"type":66,"value":412},{"type":60,"tag":138,"props":1062,"children":1063},{"style":188},[1064],{"type":66,"value":1065}," Pull Vercel Environment\n",{"type":60,"tag":138,"props":1067,"children":1069},{"class":140,"line":1068},16,[1070,1074,1078],{"type":60,"tag":138,"props":1071,"children":1072},{"style":840},[1073],{"type":66,"value":1027},{"type":60,"tag":138,"props":1075,"children":1076},{"style":450},[1077],{"type":66,"value":412},{"type":60,"tag":138,"props":1079,"children":1080},{"style":188},[1081],{"type":66,"value":1082}," vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}\n",{"type":60,"tag":138,"props":1084,"children":1086},{"class":140,"line":1085},17,[1087],{"type":60,"tag":138,"props":1088,"children":1089},{"emptyLinePlaceholder":165},[1090],{"type":66,"value":168},{"type":60,"tag":138,"props":1092,"children":1094},{"class":140,"line":1093},18,[1095,1099,1103,1107],{"type":60,"tag":138,"props":1096,"children":1097},{"style":450},[1098],{"type":66,"value":974},{"type":60,"tag":138,"props":1100,"children":1101},{"style":840},[1102],{"type":66,"value":1009},{"type":60,"tag":138,"props":1104,"children":1105},{"style":450},[1106],{"type":66,"value":412},{"type":60,"tag":138,"props":1108,"children":1109},{"style":188},[1110],{"type":66,"value":1111}," Build\n",{"type":60,"tag":138,"props":1113,"children":1115},{"class":140,"line":1114},19,[1116,1120,1124],{"type":60,"tag":138,"props":1117,"children":1118},{"style":840},[1119],{"type":66,"value":1027},{"type":60,"tag":138,"props":1121,"children":1122},{"style":450},[1123],{"type":66,"value":412},{"type":60,"tag":138,"props":1125,"children":1126},{"style":188},[1127],{"type":66,"value":1128}," vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}\n",{"type":60,"tag":138,"props":1130,"children":1132},{"class":140,"line":1131},20,[1133],{"type":60,"tag":138,"props":1134,"children":1135},{"emptyLinePlaceholder":165},[1136],{"type":66,"value":168},{"type":60,"tag":138,"props":1138,"children":1140},{"class":140,"line":1139},21,[1141,1145,1149,1153],{"type":60,"tag":138,"props":1142,"children":1143},{"style":450},[1144],{"type":66,"value":974},{"type":60,"tag":138,"props":1146,"children":1147},{"style":840},[1148],{"type":66,"value":1009},{"type":60,"tag":138,"props":1150,"children":1151},{"style":450},[1152],{"type":66,"value":412},{"type":60,"tag":138,"props":1154,"children":1155},{"style":188},[1156],{"type":66,"value":1157}," Deploy\n",{"type":60,"tag":138,"props":1159,"children":1161},{"class":140,"line":1160},22,[1162,1166,1170],{"type":60,"tag":138,"props":1163,"children":1164},{"style":840},[1165],{"type":66,"value":1027},{"type":60,"tag":138,"props":1167,"children":1168},{"style":450},[1169],{"type":66,"value":412},{"type":60,"tag":138,"props":1171,"children":1172},{"style":188},[1173],{"type":66,"value":1174}," vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}\n",{"type":60,"tag":120,"props":1176,"children":1178},{"id":1177},"oidc-federation-secure-backend-access",[1179],{"type":66,"value":1180},"OIDC Federation (Secure Backend Access)",{"type":60,"tag":69,"props":1182,"children":1183},{},[1184,1186,1191,1193,1198,1200,1205],{"type":66,"value":1185},"Vercel OIDC federation is for ",{"type":60,"tag":400,"props":1187,"children":1188},{},[1189],{"type":66,"value":1190},"secure backend access",{"type":66,"value":1192}," — letting your deployed Vercel functions authenticate with third-party services (AWS, GCP, HashiCorp Vault) without storing long-lived secrets. It does ",{"type":60,"tag":400,"props":1194,"children":1195},{},[1196],{"type":66,"value":1197},"not",{"type":66,"value":1199}," replace ",{"type":60,"tag":75,"props":1201,"children":1203},{"className":1202},[],[1204],{"type":66,"value":743},{"type":66,"value":1206}," for CLI deployments.",{"type":60,"tag":69,"props":1208,"children":1209},{},[1210,1215],{"type":60,"tag":400,"props":1211,"children":1212},{},[1213],{"type":66,"value":1214},"What OIDC does:",{"type":66,"value":1216}," Your Vercel function requests a short-lived OIDC token from Vercel at runtime, then exchanges it with an external provider's STS\u002Ftoken endpoint for scoped credentials.",{"type":60,"tag":69,"props":1218,"children":1219},{},[1220,1225,1227,1233,1234,1239,1241,1246,1248,1254],{"type":60,"tag":400,"props":1221,"children":1222},{},[1223],{"type":66,"value":1224},"What OIDC does not do:",{"type":66,"value":1226}," Authenticate the Vercel CLI in CI pipelines. All ",{"type":60,"tag":75,"props":1228,"children":1230},{"className":1229},[],[1231],{"type":66,"value":1232},"vercel pull",{"type":66,"value":82},{"type":60,"tag":75,"props":1235,"children":1237},{"className":1236},[],[1238],{"type":66,"value":109},{"type":66,"value":1240},", and ",{"type":60,"tag":75,"props":1242,"children":1244},{"className":1243},[],[1245],{"type":66,"value":80},{"type":66,"value":1247}," commands still require ",{"type":60,"tag":75,"props":1249,"children":1251},{"className":1250},[],[1252],{"type":66,"value":1253},"--token=${{ secrets.VERCEL_TOKEN }}",{"type":66,"value":1255},".",{"type":60,"tag":69,"props":1257,"children":1258},{},[1259],{"type":60,"tag":400,"props":1260,"children":1261},{},[1262],{"type":66,"value":1263},"When to use OIDC:",{"type":60,"tag":1265,"props":1266,"children":1267},"ul",{},[1268,1274,1279],{"type":60,"tag":1269,"props":1270,"children":1271},"li",{},[1272],{"type":66,"value":1273},"Serverless functions that need to call AWS APIs (S3, DynamoDB, SQS)",{"type":60,"tag":1269,"props":1275,"children":1276},{},[1277],{"type":66,"value":1278},"Functions authenticating to GCP services via Workload Identity Federation",{"type":60,"tag":1269,"props":1280,"children":1281},{},[1282],{"type":66,"value":1283},"Any runtime service-to-service auth where you want to avoid storing static secrets in Vercel env vars",{"type":60,"tag":120,"props":1285,"children":1287},{"id":1286},"gitlab-ci",[1288],{"type":66,"value":1289},"GitLab CI",{"type":60,"tag":127,"props":1291,"children":1293},{"className":828,"code":1292,"language":830,"meta":132,"style":132},"deploy:\n  image: node:20\n  stage: deploy\n  script:\n    - npm install -g vercel\n    - vercel pull --yes --environment=production --token=$VERCEL_TOKEN\n    - vercel build --prod --token=$VERCEL_TOKEN\n    - vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN\n  only:\n    - main\n",[1294],{"type":60,"tag":75,"props":1295,"children":1296},{"__ignoreMap":132},[1297,1309,1326,1342,1354,1366,1378,1390,1402,1414],{"type":60,"tag":138,"props":1298,"children":1299},{"class":140,"line":141},[1300,1305],{"type":60,"tag":138,"props":1301,"children":1302},{"style":840},[1303],{"type":66,"value":1304},"deploy",{"type":60,"tag":138,"props":1306,"children":1307},{"style":450},[1308],{"type":66,"value":866},{"type":60,"tag":138,"props":1310,"children":1311},{"class":140,"line":151},[1312,1317,1321],{"type":60,"tag":138,"props":1313,"children":1314},{"style":840},[1315],{"type":66,"value":1316},"  image",{"type":60,"tag":138,"props":1318,"children":1319},{"style":450},[1320],{"type":66,"value":412},{"type":60,"tag":138,"props":1322,"children":1323},{"style":188},[1324],{"type":66,"value":1325}," node:20\n",{"type":60,"tag":138,"props":1327,"children":1328},{"class":140,"line":161},[1329,1334,1338],{"type":60,"tag":138,"props":1330,"children":1331},{"style":840},[1332],{"type":66,"value":1333},"  stage",{"type":60,"tag":138,"props":1335,"children":1336},{"style":450},[1337],{"type":66,"value":412},{"type":60,"tag":138,"props":1339,"children":1340},{"style":188},[1341],{"type":66,"value":191},{"type":60,"tag":138,"props":1343,"children":1344},{"class":140,"line":171},[1345,1350],{"type":60,"tag":138,"props":1346,"children":1347},{"style":840},[1348],{"type":66,"value":1349},"  script",{"type":60,"tag":138,"props":1351,"children":1352},{"style":450},[1353],{"type":66,"value":866},{"type":60,"tag":138,"props":1355,"children":1356},{"class":140,"line":180},[1357,1362],{"type":60,"tag":138,"props":1358,"children":1359},{"style":450},[1360],{"type":66,"value":1361},"    -",{"type":60,"tag":138,"props":1363,"children":1364},{"style":188},[1365],{"type":66,"value":1036},{"type":60,"tag":138,"props":1367,"children":1368},{"class":140,"line":36},[1369,1373],{"type":60,"tag":138,"props":1370,"children":1371},{"style":450},[1372],{"type":66,"value":1361},{"type":60,"tag":138,"props":1374,"children":1375},{"style":188},[1376],{"type":66,"value":1377}," vercel pull --yes --environment=production --token=$VERCEL_TOKEN\n",{"type":60,"tag":138,"props":1379,"children":1380},{"class":140,"line":351},[1381,1385],{"type":60,"tag":138,"props":1382,"children":1383},{"style":450},[1384],{"type":66,"value":1361},{"type":60,"tag":138,"props":1386,"children":1387},{"style":188},[1388],{"type":66,"value":1389}," vercel build --prod --token=$VERCEL_TOKEN\n",{"type":60,"tag":138,"props":1391,"children":1392},{"class":140,"line":360},[1393,1397],{"type":60,"tag":138,"props":1394,"children":1395},{"style":450},[1396],{"type":66,"value":1361},{"type":60,"tag":138,"props":1398,"children":1399},{"style":188},[1400],{"type":66,"value":1401}," vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN\n",{"type":60,"tag":138,"props":1403,"children":1404},{"class":140,"line":377},[1405,1410],{"type":60,"tag":138,"props":1406,"children":1407},{"style":840},[1408],{"type":66,"value":1409},"  only",{"type":60,"tag":138,"props":1411,"children":1412},{"style":450},[1413],{"type":66,"value":866},{"type":60,"tag":138,"props":1415,"children":1416},{"class":140,"line":968},[1417,1421],{"type":60,"tag":138,"props":1418,"children":1419},{"style":450},[1420],{"type":66,"value":1361},{"type":60,"tag":138,"props":1422,"children":1423},{"style":188},[1424],{"type":66,"value":1425}," main\n",{"type":60,"tag":120,"props":1427,"children":1429},{"id":1428},"bitbucket-pipelines",[1430],{"type":66,"value":1431},"Bitbucket Pipelines",{"type":60,"tag":127,"props":1433,"children":1435},{"className":828,"code":1434,"language":830,"meta":132,"style":132},"pipelines:\n  branches:\n    main:\n      - step:\n          name: Deploy to Vercel\n          image: node:20\n          script:\n            - npm install -g vercel\n            - vercel pull --yes --environment=production --token=$VERCEL_TOKEN\n            - vercel build --prod --token=$VERCEL_TOKEN\n            - vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN\n",[1436],{"type":60,"tag":75,"props":1437,"children":1438},{"__ignoreMap":132},[1439,1451,1463,1475,1491,1507,1523,1535,1547,1558,1569],{"type":60,"tag":138,"props":1440,"children":1441},{"class":140,"line":141},[1442,1447],{"type":60,"tag":138,"props":1443,"children":1444},{"style":840},[1445],{"type":66,"value":1446},"pipelines",{"type":60,"tag":138,"props":1448,"children":1449},{"style":450},[1450],{"type":66,"value":866},{"type":60,"tag":138,"props":1452,"children":1453},{"class":140,"line":151},[1454,1459],{"type":60,"tag":138,"props":1455,"children":1456},{"style":840},[1457],{"type":66,"value":1458},"  branches",{"type":60,"tag":138,"props":1460,"children":1461},{"style":450},[1462],{"type":66,"value":866},{"type":60,"tag":138,"props":1464,"children":1465},{"class":140,"line":161},[1466,1471],{"type":60,"tag":138,"props":1467,"children":1468},{"style":840},[1469],{"type":66,"value":1470},"    main",{"type":60,"tag":138,"props":1472,"children":1473},{"style":450},[1474],{"type":66,"value":866},{"type":60,"tag":138,"props":1476,"children":1477},{"class":140,"line":171},[1478,1482,1487],{"type":60,"tag":138,"props":1479,"children":1480},{"style":450},[1481],{"type":66,"value":974},{"type":60,"tag":138,"props":1483,"children":1484},{"style":840},[1485],{"type":66,"value":1486}," step",{"type":60,"tag":138,"props":1488,"children":1489},{"style":450},[1490],{"type":66,"value":866},{"type":60,"tag":138,"props":1492,"children":1493},{"class":140,"line":180},[1494,1499,1503],{"type":60,"tag":138,"props":1495,"children":1496},{"style":840},[1497],{"type":66,"value":1498},"          name",{"type":60,"tag":138,"props":1500,"children":1501},{"style":450},[1502],{"type":66,"value":412},{"type":60,"tag":138,"props":1504,"children":1505},{"style":188},[1506],{"type":66,"value":852},{"type":60,"tag":138,"props":1508,"children":1509},{"class":140,"line":36},[1510,1515,1519],{"type":60,"tag":138,"props":1511,"children":1512},{"style":840},[1513],{"type":66,"value":1514},"          image",{"type":60,"tag":138,"props":1516,"children":1517},{"style":450},[1518],{"type":66,"value":412},{"type":60,"tag":138,"props":1520,"children":1521},{"style":188},[1522],{"type":66,"value":1325},{"type":60,"tag":138,"props":1524,"children":1525},{"class":140,"line":351},[1526,1531],{"type":60,"tag":138,"props":1527,"children":1528},{"style":840},[1529],{"type":66,"value":1530},"          script",{"type":60,"tag":138,"props":1532,"children":1533},{"style":450},[1534],{"type":66,"value":866},{"type":60,"tag":138,"props":1536,"children":1537},{"class":140,"line":360},[1538,1543],{"type":60,"tag":138,"props":1539,"children":1540},{"style":450},[1541],{"type":66,"value":1542},"            -",{"type":60,"tag":138,"props":1544,"children":1545},{"style":188},[1546],{"type":66,"value":1036},{"type":60,"tag":138,"props":1548,"children":1549},{"class":140,"line":377},[1550,1554],{"type":60,"tag":138,"props":1551,"children":1552},{"style":450},[1553],{"type":66,"value":1542},{"type":60,"tag":138,"props":1555,"children":1556},{"style":188},[1557],{"type":66,"value":1377},{"type":60,"tag":138,"props":1559,"children":1560},{"class":140,"line":968},[1561,1565],{"type":60,"tag":138,"props":1562,"children":1563},{"style":450},[1564],{"type":66,"value":1542},{"type":60,"tag":138,"props":1566,"children":1567},{"style":188},[1568],{"type":66,"value":1389},{"type":60,"tag":138,"props":1570,"children":1571},{"class":140,"line":991},[1572,1576],{"type":60,"tag":138,"props":1573,"children":1574},{"style":450},[1575],{"type":66,"value":1542},{"type":60,"tag":138,"props":1577,"children":1578},{"style":188},[1579],{"type":66,"value":1401},{"type":60,"tag":113,"props":1581,"children":1583},{"id":1582},"common-ci-patterns",[1584],{"type":66,"value":1585},"Common CI Patterns",{"type":60,"tag":120,"props":1587,"children":1589},{"id":1588},"preview-deployments-on-prs",[1590],{"type":66,"value":1591},"Preview Deployments on PRs",{"type":60,"tag":127,"props":1593,"children":1595},{"className":828,"code":1594,"language":830,"meta":132,"style":132},"# GitHub Actions\non:\n  pull_request:\n    types: [opened, synchronize]\n\njobs:\n  preview:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions\u002Fcheckout@v4\n      - run: npm install -g vercel\n      - run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}\n      - run: vercel build --token=${{ secrets.VERCEL_TOKEN }}\n      - id: deploy\n        run: echo \"url=$(vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }})\" >> $GITHUB_OUTPUT\n      - name: Comment PR\n        uses: actions\u002Fgithub-script@v7\n        with:\n          script: |\n            github.rest.issues.createComment({\n              issue_number: context.issue.number,\n              owner: context.repo.owner,\n              repo: context.repo.repo,\n              body: `Preview: ${{ steps.deploy.outputs.url }}`\n            })\n",[1596],{"type":60,"tag":75,"props":1597,"children":1598},{"__ignoreMap":132},[1599,1607,1618,1630,1665,1672,1683,1695,1710,1721,1740,1760,1780,1800,1820,1836,1856,1873,1885,1902,1910,1918,1926,1935,1944],{"type":60,"tag":138,"props":1600,"children":1601},{"class":140,"line":141},[1602],{"type":60,"tag":138,"props":1603,"children":1604},{"style":145},[1605],{"type":66,"value":1606},"# GitHub Actions\n",{"type":60,"tag":138,"props":1608,"children":1609},{"class":140,"line":151},[1610,1614],{"type":60,"tag":138,"props":1611,"children":1612},{"style":858},[1613],{"type":66,"value":861},{"type":60,"tag":138,"props":1615,"children":1616},{"style":450},[1617],{"type":66,"value":866},{"type":60,"tag":138,"props":1619,"children":1620},{"class":140,"line":161},[1621,1626],{"type":60,"tag":138,"props":1622,"children":1623},{"style":840},[1624],{"type":66,"value":1625},"  pull_request",{"type":60,"tag":138,"props":1627,"children":1628},{"style":450},[1629],{"type":66,"value":866},{"type":60,"tag":138,"props":1631,"children":1632},{"class":140,"line":171},[1633,1638,1642,1646,1651,1656,1661],{"type":60,"tag":138,"props":1634,"children":1635},{"style":840},[1636],{"type":66,"value":1637},"    types",{"type":60,"tag":138,"props":1639,"children":1640},{"style":450},[1641],{"type":66,"value":412},{"type":60,"tag":138,"props":1643,"children":1644},{"style":450},[1645],{"type":66,"value":895},{"type":60,"tag":138,"props":1647,"children":1648},{"style":188},[1649],{"type":66,"value":1650},"opened",{"type":60,"tag":138,"props":1652,"children":1653},{"style":450},[1654],{"type":66,"value":1655},",",{"type":60,"tag":138,"props":1657,"children":1658},{"style":188},[1659],{"type":66,"value":1660}," synchronize",{"type":60,"tag":138,"props":1662,"children":1663},{"style":450},[1664],{"type":66,"value":905},{"type":60,"tag":138,"props":1666,"children":1667},{"class":140,"line":180},[1668],{"type":60,"tag":138,"props":1669,"children":1670},{"emptyLinePlaceholder":165},[1671],{"type":66,"value":168},{"type":60,"tag":138,"props":1673,"children":1674},{"class":140,"line":36},[1675,1679],{"type":60,"tag":138,"props":1676,"children":1677},{"style":840},[1678],{"type":66,"value":920},{"type":60,"tag":138,"props":1680,"children":1681},{"style":450},[1682],{"type":66,"value":866},{"type":60,"tag":138,"props":1684,"children":1685},{"class":140,"line":351},[1686,1691],{"type":60,"tag":138,"props":1687,"children":1688},{"style":840},[1689],{"type":66,"value":1690},"  preview",{"type":60,"tag":138,"props":1692,"children":1693},{"style":450},[1694],{"type":66,"value":866},{"type":60,"tag":138,"props":1696,"children":1697},{"class":140,"line":360},[1698,1702,1706],{"type":60,"tag":138,"props":1699,"children":1700},{"style":840},[1701],{"type":66,"value":944},{"type":60,"tag":138,"props":1703,"children":1704},{"style":450},[1705],{"type":66,"value":412},{"type":60,"tag":138,"props":1707,"children":1708},{"style":188},[1709],{"type":66,"value":953},{"type":60,"tag":138,"props":1711,"children":1712},{"class":140,"line":377},[1713,1717],{"type":60,"tag":138,"props":1714,"children":1715},{"style":840},[1716],{"type":66,"value":961},{"type":60,"tag":138,"props":1718,"children":1719},{"style":450},[1720],{"type":66,"value":866},{"type":60,"tag":138,"props":1722,"children":1723},{"class":140,"line":968},[1724,1728,1732,1736],{"type":60,"tag":138,"props":1725,"children":1726},{"style":450},[1727],{"type":66,"value":974},{"type":60,"tag":138,"props":1729,"children":1730},{"style":840},[1731],{"type":66,"value":979},{"type":60,"tag":138,"props":1733,"children":1734},{"style":450},[1735],{"type":66,"value":412},{"type":60,"tag":138,"props":1737,"children":1738},{"style":188},[1739],{"type":66,"value":988},{"type":60,"tag":138,"props":1741,"children":1742},{"class":140,"line":991},[1743,1747,1752,1756],{"type":60,"tag":138,"props":1744,"children":1745},{"style":450},[1746],{"type":66,"value":974},{"type":60,"tag":138,"props":1748,"children":1749},{"style":840},[1750],{"type":66,"value":1751}," run",{"type":60,"tag":138,"props":1753,"children":1754},{"style":450},[1755],{"type":66,"value":412},{"type":60,"tag":138,"props":1757,"children":1758},{"style":188},[1759],{"type":66,"value":1036},{"type":60,"tag":138,"props":1761,"children":1762},{"class":140,"line":999},[1763,1767,1771,1775],{"type":60,"tag":138,"props":1764,"children":1765},{"style":450},[1766],{"type":66,"value":974},{"type":60,"tag":138,"props":1768,"children":1769},{"style":840},[1770],{"type":66,"value":1751},{"type":60,"tag":138,"props":1772,"children":1773},{"style":450},[1774],{"type":66,"value":412},{"type":60,"tag":138,"props":1776,"children":1777},{"style":188},[1778],{"type":66,"value":1779}," vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}\n",{"type":60,"tag":138,"props":1781,"children":1782},{"class":140,"line":1021},[1783,1787,1791,1795],{"type":60,"tag":138,"props":1784,"children":1785},{"style":450},[1786],{"type":66,"value":974},{"type":60,"tag":138,"props":1788,"children":1789},{"style":840},[1790],{"type":66,"value":1751},{"type":60,"tag":138,"props":1792,"children":1793},{"style":450},[1794],{"type":66,"value":412},{"type":60,"tag":138,"props":1796,"children":1797},{"style":188},[1798],{"type":66,"value":1799}," vercel build --token=${{ secrets.VERCEL_TOKEN }}\n",{"type":60,"tag":138,"props":1801,"children":1802},{"class":140,"line":1039},[1803,1807,1812,1816],{"type":60,"tag":138,"props":1804,"children":1805},{"style":450},[1806],{"type":66,"value":974},{"type":60,"tag":138,"props":1808,"children":1809},{"style":840},[1810],{"type":66,"value":1811}," id",{"type":60,"tag":138,"props":1813,"children":1814},{"style":450},[1815],{"type":66,"value":412},{"type":60,"tag":138,"props":1817,"children":1818},{"style":188},[1819],{"type":66,"value":191},{"type":60,"tag":138,"props":1821,"children":1822},{"class":140,"line":1047},[1823,1827,1831],{"type":60,"tag":138,"props":1824,"children":1825},{"style":840},[1826],{"type":66,"value":1027},{"type":60,"tag":138,"props":1828,"children":1829},{"style":450},[1830],{"type":66,"value":412},{"type":60,"tag":138,"props":1832,"children":1833},{"style":188},[1834],{"type":66,"value":1835}," echo \"url=$(vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }})\" >> $GITHUB_OUTPUT\n",{"type":60,"tag":138,"props":1837,"children":1838},{"class":140,"line":1068},[1839,1843,1847,1851],{"type":60,"tag":138,"props":1840,"children":1841},{"style":450},[1842],{"type":66,"value":974},{"type":60,"tag":138,"props":1844,"children":1845},{"style":840},[1846],{"type":66,"value":1009},{"type":60,"tag":138,"props":1848,"children":1849},{"style":450},[1850],{"type":66,"value":412},{"type":60,"tag":138,"props":1852,"children":1853},{"style":188},[1854],{"type":66,"value":1855}," Comment PR\n",{"type":60,"tag":138,"props":1857,"children":1858},{"class":140,"line":1085},[1859,1864,1868],{"type":60,"tag":138,"props":1860,"children":1861},{"style":840},[1862],{"type":66,"value":1863},"        uses",{"type":60,"tag":138,"props":1865,"children":1866},{"style":450},[1867],{"type":66,"value":412},{"type":60,"tag":138,"props":1869,"children":1870},{"style":188},[1871],{"type":66,"value":1872}," actions\u002Fgithub-script@v7\n",{"type":60,"tag":138,"props":1874,"children":1875},{"class":140,"line":1093},[1876,1881],{"type":60,"tag":138,"props":1877,"children":1878},{"style":840},[1879],{"type":66,"value":1880},"        with",{"type":60,"tag":138,"props":1882,"children":1883},{"style":450},[1884],{"type":66,"value":866},{"type":60,"tag":138,"props":1886,"children":1887},{"class":140,"line":1114},[1888,1892,1896],{"type":60,"tag":138,"props":1889,"children":1890},{"style":840},[1891],{"type":66,"value":1530},{"type":60,"tag":138,"props":1893,"children":1894},{"style":450},[1895],{"type":66,"value":412},{"type":60,"tag":138,"props":1897,"children":1899},{"style":1898},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[1900],{"type":66,"value":1901}," |\n",{"type":60,"tag":138,"props":1903,"children":1904},{"class":140,"line":1131},[1905],{"type":60,"tag":138,"props":1906,"children":1907},{"style":188},[1908],{"type":66,"value":1909},"            github.rest.issues.createComment({\n",{"type":60,"tag":138,"props":1911,"children":1912},{"class":140,"line":1139},[1913],{"type":60,"tag":138,"props":1914,"children":1915},{"style":188},[1916],{"type":66,"value":1917},"              issue_number: context.issue.number,\n",{"type":60,"tag":138,"props":1919,"children":1920},{"class":140,"line":1160},[1921],{"type":60,"tag":138,"props":1922,"children":1923},{"style":188},[1924],{"type":66,"value":1925},"              owner: context.repo.owner,\n",{"type":60,"tag":138,"props":1927,"children":1929},{"class":140,"line":1928},23,[1930],{"type":60,"tag":138,"props":1931,"children":1932},{"style":188},[1933],{"type":66,"value":1934},"              repo: context.repo.repo,\n",{"type":60,"tag":138,"props":1936,"children":1938},{"class":140,"line":1937},24,[1939],{"type":60,"tag":138,"props":1940,"children":1941},{"style":188},[1942],{"type":66,"value":1943},"              body: `Preview: ${{ steps.deploy.outputs.url }}`\n",{"type":60,"tag":138,"props":1945,"children":1947},{"class":140,"line":1946},25,[1948],{"type":60,"tag":138,"props":1949,"children":1950},{"style":188},[1951],{"type":66,"value":1952},"            })\n",{"type":60,"tag":120,"props":1954,"children":1956},{"id":1955},"promote-after-tests-pass",[1957],{"type":66,"value":1958},"Promote After Tests Pass",{"type":60,"tag":127,"props":1960,"children":1962},{"className":828,"code":1961,"language":830,"meta":132,"style":132},"jobs:\n  deploy-preview:\n    # ... deploy preview ...\n    outputs:\n      url: ${{ steps.deploy.outputs.url }}\n\n  e2e-tests:\n    needs: deploy-preview\n    runs-on: ubuntu-latest\n    steps:\n      - run: npx playwright test --base-url=${{ needs.deploy-preview.outputs.url }}\n\n  promote:\n    needs: [deploy-preview, e2e-tests]\n    runs-on: ubuntu-latest\n    if: github.ref == 'refs\u002Fheads\u002Fmain'\n    steps:\n      - run: npm install -g vercel\n      - run: vercel promote ${{ needs.deploy-preview.outputs.url }} --token=${{ secrets.VERCEL_TOKEN }}\n",[1963],{"type":60,"tag":75,"props":1964,"children":1965},{"__ignoreMap":132},[1966,1977,1989,1997,2009,2026,2033,2045,2062,2077,2088,2108,2115,2127,2160,2175,2192,2203,2222],{"type":60,"tag":138,"props":1967,"children":1968},{"class":140,"line":141},[1969,1973],{"type":60,"tag":138,"props":1970,"children":1971},{"style":840},[1972],{"type":66,"value":920},{"type":60,"tag":138,"props":1974,"children":1975},{"style":450},[1976],{"type":66,"value":866},{"type":60,"tag":138,"props":1978,"children":1979},{"class":140,"line":151},[1980,1985],{"type":60,"tag":138,"props":1981,"children":1982},{"style":840},[1983],{"type":66,"value":1984},"  deploy-preview",{"type":60,"tag":138,"props":1986,"children":1987},{"style":450},[1988],{"type":66,"value":866},{"type":60,"tag":138,"props":1990,"children":1991},{"class":140,"line":161},[1992],{"type":60,"tag":138,"props":1993,"children":1994},{"style":145},[1995],{"type":66,"value":1996},"    # ... deploy preview ...\n",{"type":60,"tag":138,"props":1998,"children":1999},{"class":140,"line":171},[2000,2005],{"type":60,"tag":138,"props":2001,"children":2002},{"style":840},[2003],{"type":66,"value":2004},"    outputs",{"type":60,"tag":138,"props":2006,"children":2007},{"style":450},[2008],{"type":66,"value":866},{"type":60,"tag":138,"props":2010,"children":2011},{"class":140,"line":180},[2012,2017,2021],{"type":60,"tag":138,"props":2013,"children":2014},{"style":840},[2015],{"type":66,"value":2016},"      url",{"type":60,"tag":138,"props":2018,"children":2019},{"style":450},[2020],{"type":66,"value":412},{"type":60,"tag":138,"props":2022,"children":2023},{"style":188},[2024],{"type":66,"value":2025}," ${{ steps.deploy.outputs.url }}\n",{"type":60,"tag":138,"props":2027,"children":2028},{"class":140,"line":36},[2029],{"type":60,"tag":138,"props":2030,"children":2031},{"emptyLinePlaceholder":165},[2032],{"type":66,"value":168},{"type":60,"tag":138,"props":2034,"children":2035},{"class":140,"line":351},[2036,2041],{"type":60,"tag":138,"props":2037,"children":2038},{"style":840},[2039],{"type":66,"value":2040},"  e2e-tests",{"type":60,"tag":138,"props":2042,"children":2043},{"style":450},[2044],{"type":66,"value":866},{"type":60,"tag":138,"props":2046,"children":2047},{"class":140,"line":360},[2048,2053,2057],{"type":60,"tag":138,"props":2049,"children":2050},{"style":840},[2051],{"type":66,"value":2052},"    needs",{"type":60,"tag":138,"props":2054,"children":2055},{"style":450},[2056],{"type":66,"value":412},{"type":60,"tag":138,"props":2058,"children":2059},{"style":188},[2060],{"type":66,"value":2061}," deploy-preview\n",{"type":60,"tag":138,"props":2063,"children":2064},{"class":140,"line":377},[2065,2069,2073],{"type":60,"tag":138,"props":2066,"children":2067},{"style":840},[2068],{"type":66,"value":944},{"type":60,"tag":138,"props":2070,"children":2071},{"style":450},[2072],{"type":66,"value":412},{"type":60,"tag":138,"props":2074,"children":2075},{"style":188},[2076],{"type":66,"value":953},{"type":60,"tag":138,"props":2078,"children":2079},{"class":140,"line":968},[2080,2084],{"type":60,"tag":138,"props":2081,"children":2082},{"style":840},[2083],{"type":66,"value":961},{"type":60,"tag":138,"props":2085,"children":2086},{"style":450},[2087],{"type":66,"value":866},{"type":60,"tag":138,"props":2089,"children":2090},{"class":140,"line":991},[2091,2095,2099,2103],{"type":60,"tag":138,"props":2092,"children":2093},{"style":450},[2094],{"type":66,"value":974},{"type":60,"tag":138,"props":2096,"children":2097},{"style":840},[2098],{"type":66,"value":1751},{"type":60,"tag":138,"props":2100,"children":2101},{"style":450},[2102],{"type":66,"value":412},{"type":60,"tag":138,"props":2104,"children":2105},{"style":188},[2106],{"type":66,"value":2107}," npx playwright test --base-url=${{ needs.deploy-preview.outputs.url }}\n",{"type":60,"tag":138,"props":2109,"children":2110},{"class":140,"line":999},[2111],{"type":60,"tag":138,"props":2112,"children":2113},{"emptyLinePlaceholder":165},[2114],{"type":66,"value":168},{"type":60,"tag":138,"props":2116,"children":2117},{"class":140,"line":1021},[2118,2123],{"type":60,"tag":138,"props":2119,"children":2120},{"style":840},[2121],{"type":66,"value":2122},"  promote",{"type":60,"tag":138,"props":2124,"children":2125},{"style":450},[2126],{"type":66,"value":866},{"type":60,"tag":138,"props":2128,"children":2129},{"class":140,"line":1039},[2130,2134,2138,2142,2147,2151,2156],{"type":60,"tag":138,"props":2131,"children":2132},{"style":840},[2133],{"type":66,"value":2052},{"type":60,"tag":138,"props":2135,"children":2136},{"style":450},[2137],{"type":66,"value":412},{"type":60,"tag":138,"props":2139,"children":2140},{"style":450},[2141],{"type":66,"value":895},{"type":60,"tag":138,"props":2143,"children":2144},{"style":188},[2145],{"type":66,"value":2146},"deploy-preview",{"type":60,"tag":138,"props":2148,"children":2149},{"style":450},[2150],{"type":66,"value":1655},{"type":60,"tag":138,"props":2152,"children":2153},{"style":188},[2154],{"type":66,"value":2155}," e2e-tests",{"type":60,"tag":138,"props":2157,"children":2158},{"style":450},[2159],{"type":66,"value":905},{"type":60,"tag":138,"props":2161,"children":2162},{"class":140,"line":1047},[2163,2167,2171],{"type":60,"tag":138,"props":2164,"children":2165},{"style":840},[2166],{"type":66,"value":944},{"type":60,"tag":138,"props":2168,"children":2169},{"style":450},[2170],{"type":66,"value":412},{"type":60,"tag":138,"props":2172,"children":2173},{"style":188},[2174],{"type":66,"value":953},{"type":60,"tag":138,"props":2176,"children":2177},{"class":140,"line":1068},[2178,2183,2187],{"type":60,"tag":138,"props":2179,"children":2180},{"style":840},[2181],{"type":66,"value":2182},"    if",{"type":60,"tag":138,"props":2184,"children":2185},{"style":450},[2186],{"type":66,"value":412},{"type":60,"tag":138,"props":2188,"children":2189},{"style":188},[2190],{"type":66,"value":2191}," github.ref == 'refs\u002Fheads\u002Fmain'\n",{"type":60,"tag":138,"props":2193,"children":2194},{"class":140,"line":1085},[2195,2199],{"type":60,"tag":138,"props":2196,"children":2197},{"style":840},[2198],{"type":66,"value":961},{"type":60,"tag":138,"props":2200,"children":2201},{"style":450},[2202],{"type":66,"value":866},{"type":60,"tag":138,"props":2204,"children":2205},{"class":140,"line":1093},[2206,2210,2214,2218],{"type":60,"tag":138,"props":2207,"children":2208},{"style":450},[2209],{"type":66,"value":974},{"type":60,"tag":138,"props":2211,"children":2212},{"style":840},[2213],{"type":66,"value":1751},{"type":60,"tag":138,"props":2215,"children":2216},{"style":450},[2217],{"type":66,"value":412},{"type":60,"tag":138,"props":2219,"children":2220},{"style":188},[2221],{"type":66,"value":1036},{"type":60,"tag":138,"props":2223,"children":2224},{"class":140,"line":1114},[2225,2229,2233,2237],{"type":60,"tag":138,"props":2226,"children":2227},{"style":450},[2228],{"type":66,"value":974},{"type":60,"tag":138,"props":2230,"children":2231},{"style":840},[2232],{"type":66,"value":1751},{"type":60,"tag":138,"props":2234,"children":2235},{"style":450},[2236],{"type":66,"value":412},{"type":60,"tag":138,"props":2238,"children":2239},{"style":188},[2240],{"type":66,"value":2241}," vercel promote ${{ needs.deploy-preview.outputs.url }} --token=${{ secrets.VERCEL_TOKEN }}\n",{"type":60,"tag":113,"props":2243,"children":2245},{"id":2244},"global-cli-flags-for-ci",[2246],{"type":66,"value":2247},"Global CLI Flags for CI",{"type":60,"tag":2249,"props":2250,"children":2251},"table",{},[2252,2271],{"type":60,"tag":2253,"props":2254,"children":2255},"thead",{},[2256],{"type":60,"tag":2257,"props":2258,"children":2259},"tr",{},[2260,2266],{"type":60,"tag":2261,"props":2262,"children":2263},"th",{},[2264],{"type":66,"value":2265},"Flag",{"type":60,"tag":2261,"props":2267,"children":2268},{},[2269],{"type":66,"value":2270},"Purpose",{"type":60,"tag":2272,"props":2273,"children":2274},"tbody",{},[2275,2293,2318,2335],{"type":60,"tag":2257,"props":2276,"children":2277},{},[2278,2288],{"type":60,"tag":2279,"props":2280,"children":2281},"td",{},[2282],{"type":60,"tag":75,"props":2283,"children":2285},{"className":2284},[],[2286],{"type":66,"value":2287},"--token \u003Ctoken>",{"type":60,"tag":2279,"props":2289,"children":2290},{},[2291],{"type":66,"value":2292},"Authenticate (required in CI)",{"type":60,"tag":2257,"props":2294,"children":2295},{},[2296,2313],{"type":60,"tag":2279,"props":2297,"children":2298},{},[2299,2305,2307],{"type":60,"tag":75,"props":2300,"children":2302},{"className":2301},[],[2303],{"type":66,"value":2304},"--yes",{"type":66,"value":2306}," \u002F ",{"type":60,"tag":75,"props":2308,"children":2310},{"className":2309},[],[2311],{"type":66,"value":2312},"-y",{"type":60,"tag":2279,"props":2314,"children":2315},{},[2316],{"type":66,"value":2317},"Skip confirmation prompts",{"type":60,"tag":2257,"props":2319,"children":2320},{},[2321,2330],{"type":60,"tag":2279,"props":2322,"children":2323},{},[2324],{"type":60,"tag":75,"props":2325,"children":2327},{"className":2326},[],[2328],{"type":66,"value":2329},"--scope \u003Cteam>",{"type":60,"tag":2279,"props":2331,"children":2332},{},[2333],{"type":66,"value":2334},"Execute as a specific team",{"type":60,"tag":2257,"props":2336,"children":2337},{},[2338,2347],{"type":60,"tag":2279,"props":2339,"children":2340},{},[2341],{"type":60,"tag":75,"props":2342,"children":2344},{"className":2343},[],[2345],{"type":66,"value":2346},"--cwd \u003Cdir>",{"type":60,"tag":2279,"props":2348,"children":2349},{},[2350],{"type":66,"value":2351},"Set working directory",{"type":60,"tag":113,"props":2353,"children":2355},{"id":2354},"best-practices",[2356],{"type":66,"value":2357},"Best Practices",{"type":60,"tag":2359,"props":2360,"children":2361},"ol",{},[2362,2379,2396,2413,2430,2448],{"type":60,"tag":1269,"props":2363,"children":2364},{},[2365,2377],{"type":60,"tag":400,"props":2366,"children":2367},{},[2368,2370,2375],{"type":66,"value":2369},"Always use ",{"type":60,"tag":75,"props":2371,"children":2373},{"className":2372},[],[2374],{"type":66,"value":410},{"type":66,"value":2376}," in CI",{"type":66,"value":2378}," — separates build from deploy, enables build caching and test gates",{"type":60,"tag":1269,"props":2380,"children":2381},{},[2382,2394],{"type":60,"tag":400,"props":2383,"children":2384},{},[2385,2387,2392],{"type":66,"value":2386},"Use ",{"type":60,"tag":75,"props":2388,"children":2390},{"className":2389},[],[2391],{"type":66,"value":1232},{"type":66,"value":2393}," before build",{"type":66,"value":2395}," — ensures correct env vars and project settings",{"type":60,"tag":1269,"props":2397,"children":2398},{},[2399,2411],{"type":60,"tag":400,"props":2400,"children":2401},{},[2402,2404,2409],{"type":66,"value":2403},"Prefer ",{"type":60,"tag":75,"props":2405,"children":2407},{"className":2406},[],[2408],{"type":66,"value":555},{"type":66,"value":2410}," over re-deploy",{"type":66,"value":2412}," — instant, no rebuild, same artifact",{"type":60,"tag":1269,"props":2414,"children":2415},{},[2416,2421,2423,2428],{"type":60,"tag":400,"props":2417,"children":2418},{},[2419],{"type":66,"value":2420},"Use OIDC federation for runtime backend access",{"type":66,"value":2422}," — lets Vercel functions auth to AWS\u002FGCP without static secrets (does not replace ",{"type":60,"tag":75,"props":2424,"children":2426},{"className":2425},[],[2427],{"type":66,"value":743},{"type":66,"value":2429}," for CLI)",{"type":60,"tag":1269,"props":2431,"children":2432},{},[2433,2438,2440,2446],{"type":60,"tag":400,"props":2434,"children":2435},{},[2436],{"type":66,"value":2437},"Pin the Vercel CLI version in CI",{"type":66,"value":2439}," — ",{"type":60,"tag":75,"props":2441,"children":2443},{"className":2442},[],[2444],{"type":66,"value":2445},"npm install -g vercel@latest",{"type":66,"value":2447}," can break unexpectedly",{"type":60,"tag":1269,"props":2449,"children":2450},{},[2451,2463],{"type":60,"tag":400,"props":2452,"children":2453},{},[2454,2456,2461],{"type":66,"value":2455},"Add ",{"type":60,"tag":75,"props":2457,"children":2459},{"className":2458},[],[2460],{"type":66,"value":2304},{"type":66,"value":2462}," flag in CI",{"type":66,"value":2464}," — prevents interactive prompts from hanging pipelines",{"type":60,"tag":113,"props":2466,"children":2468},{"id":2467},"deployment-strategy-matrix",[2469],{"type":66,"value":2470},"Deployment Strategy Matrix",{"type":60,"tag":2249,"props":2472,"children":2473},{},[2474,2495],{"type":60,"tag":2253,"props":2475,"children":2476},{},[2477],{"type":60,"tag":2257,"props":2478,"children":2479},{},[2480,2485,2490],{"type":60,"tag":2261,"props":2481,"children":2482},{},[2483],{"type":66,"value":2484},"Scenario",{"type":60,"tag":2261,"props":2486,"children":2487},{},[2488],{"type":66,"value":2489},"Strategy",{"type":60,"tag":2261,"props":2491,"children":2492},{},[2493],{"type":66,"value":2494},"Commands",{"type":60,"tag":2272,"props":2496,"children":2497},{},[2498,2516,2538,2560,2578,2600,2623],{"type":60,"tag":2257,"props":2499,"children":2500},{},[2501,2506,2511],{"type":60,"tag":2279,"props":2502,"children":2503},{},[2504],{"type":66,"value":2505},"Standard team workflow",{"type":60,"tag":2279,"props":2507,"children":2508},{},[2509],{"type":66,"value":2510},"Git-push deploy",{"type":60,"tag":2279,"props":2512,"children":2513},{},[2514],{"type":66,"value":2515},"Push to main\u002Ffeature branches",{"type":60,"tag":2257,"props":2517,"children":2518},{},[2519,2524,2529],{"type":60,"tag":2279,"props":2520,"children":2521},{},[2522],{"type":66,"value":2523},"Custom CI\u002FCD (Actions, CircleCI)",{"type":60,"tag":2279,"props":2525,"children":2526},{},[2527],{"type":66,"value":2528},"Prebuilt deploy",{"type":60,"tag":2279,"props":2530,"children":2531},{},[2532],{"type":60,"tag":75,"props":2533,"children":2535},{"className":2534},[],[2536],{"type":66,"value":2537},"vercel build && vercel deploy --prebuilt",{"type":60,"tag":2257,"props":2539,"children":2540},{},[2541,2546,2551],{"type":60,"tag":2279,"props":2542,"children":2543},{},[2544],{"type":66,"value":2545},"Monorepo with Turborepo",{"type":60,"tag":2279,"props":2547,"children":2548},{},[2549],{"type":66,"value":2550},"Affected + remote cache",{"type":60,"tag":2279,"props":2552,"children":2553},{},[2554],{"type":60,"tag":75,"props":2555,"children":2557},{"className":2556},[],[2558],{"type":66,"value":2559},"turbo run build --affected --remote-cache",{"type":60,"tag":2257,"props":2561,"children":2562},{},[2563,2568,2573],{"type":60,"tag":2279,"props":2564,"children":2565},{},[2566],{"type":66,"value":2567},"Preview for every PR",{"type":60,"tag":2279,"props":2569,"children":2570},{},[2571],{"type":66,"value":2572},"Default behavior",{"type":60,"tag":2279,"props":2574,"children":2575},{},[2576],{"type":66,"value":2577},"Auto-creates preview URL per branch",{"type":60,"tag":2257,"props":2579,"children":2580},{},[2581,2586,2591],{"type":60,"tag":2279,"props":2582,"children":2583},{},[2584],{"type":66,"value":2585},"Promote preview to production",{"type":60,"tag":2279,"props":2587,"children":2588},{},[2589],{"type":66,"value":2590},"CLI promotion",{"type":60,"tag":2279,"props":2592,"children":2593},{},[2594],{"type":60,"tag":75,"props":2595,"children":2597},{"className":2596},[],[2598],{"type":66,"value":2599},"vercel promote \u003Curl>",{"type":60,"tag":2257,"props":2601,"children":2602},{},[2603,2608,2613],{"type":60,"tag":2279,"props":2604,"children":2605},{},[2606],{"type":66,"value":2607},"Atomic deploys with DB migrations",{"type":60,"tag":2279,"props":2609,"children":2610},{},[2611],{"type":66,"value":2612},"Two-phase",{"type":60,"tag":2279,"props":2614,"children":2615},{},[2616,2618],{"type":66,"value":2617},"Run migration → verify → ",{"type":60,"tag":75,"props":2619,"children":2621},{"className":2620},[],[2622],{"type":66,"value":88},{"type":60,"tag":2257,"props":2624,"children":2625},{},[2626,2631,2636],{"type":60,"tag":2279,"props":2627,"children":2628},{},[2629],{"type":66,"value":2630},"Edge-first architecture",{"type":60,"tag":2279,"props":2632,"children":2633},{},[2634],{"type":66,"value":2635},"Edge Functions",{"type":60,"tag":2279,"props":2637,"children":2638},{},[2639,2641,2647],{"type":66,"value":2640},"Set ",{"type":60,"tag":75,"props":2642,"children":2644},{"className":2643},[],[2645],{"type":66,"value":2646},"runtime: 'edge'",{"type":66,"value":2648}," in route config",{"type":60,"tag":113,"props":2650,"children":2652},{"id":2651},"common-build-errors",[2653],{"type":66,"value":2654},"Common Build Errors",{"type":60,"tag":2249,"props":2656,"children":2657},{},[2658,2679],{"type":60,"tag":2253,"props":2659,"children":2660},{},[2661],{"type":60,"tag":2257,"props":2662,"children":2663},{},[2664,2669,2674],{"type":60,"tag":2261,"props":2665,"children":2666},{},[2667],{"type":66,"value":2668},"Error",{"type":60,"tag":2261,"props":2670,"children":2671},{},[2672],{"type":66,"value":2673},"Cause",{"type":60,"tag":2261,"props":2675,"children":2676},{},[2677],{"type":66,"value":2678},"Fix",{"type":60,"tag":2272,"props":2680,"children":2681},{},[2682,2712,2741,2769,2801],{"type":60,"tag":2257,"props":2683,"children":2684},{},[2685,2694,2699],{"type":60,"tag":2279,"props":2686,"children":2687},{},[2688],{"type":60,"tag":75,"props":2689,"children":2691},{"className":2690},[],[2692],{"type":66,"value":2693},"ERR_PNPM_OUTDATED_LOCKFILE",{"type":60,"tag":2279,"props":2695,"children":2696},{},[2697],{"type":66,"value":2698},"Lockfile doesn't match package.json",{"type":60,"tag":2279,"props":2700,"children":2701},{},[2702,2704,2710],{"type":66,"value":2703},"Run ",{"type":60,"tag":75,"props":2705,"children":2707},{"className":2706},[],[2708],{"type":66,"value":2709},"pnpm install",{"type":66,"value":2711},", commit lockfile",{"type":60,"tag":2257,"props":2713,"children":2714},{},[2715,2724,2729],{"type":60,"tag":2279,"props":2716,"children":2717},{},[2718],{"type":60,"tag":75,"props":2719,"children":2721},{"className":2720},[],[2722],{"type":66,"value":2723},"NEXT_NOT_FOUND",{"type":60,"tag":2279,"props":2725,"children":2726},{},[2727],{"type":66,"value":2728},"Root directory misconfigured",{"type":60,"tag":2279,"props":2730,"children":2731},{},[2732,2733,2739],{"type":66,"value":2640},{"type":60,"tag":75,"props":2734,"children":2736},{"className":2735},[],[2737],{"type":66,"value":2738},"rootDirectory",{"type":66,"value":2740}," in Project Settings",{"type":60,"tag":2257,"props":2742,"children":2743},{},[2744,2753,2758],{"type":60,"tag":2279,"props":2745,"children":2746},{},[2747],{"type":60,"tag":75,"props":2748,"children":2750},{"className":2749},[],[2751],{"type":66,"value":2752},"Invalid next.config.js",{"type":60,"tag":2279,"props":2754,"children":2755},{},[2756],{"type":66,"value":2757},"Config syntax error",{"type":60,"tag":2279,"props":2759,"children":2760},{},[2761,2763],{"type":66,"value":2762},"Validate config locally with ",{"type":60,"tag":75,"props":2764,"children":2766},{"className":2765},[],[2767],{"type":66,"value":2768},"next build",{"type":60,"tag":2257,"props":2770,"children":2771},{},[2772,2783,2788],{"type":60,"tag":2279,"props":2773,"children":2774},{},[2775,2781],{"type":60,"tag":75,"props":2776,"children":2778},{"className":2777},[],[2779],{"type":66,"value":2780},"functions\u002Fapi\u002F*.js",{"type":66,"value":2782}," mismatch",{"type":60,"tag":2279,"props":2784,"children":2785},{},[2786],{"type":66,"value":2787},"Wrong file structure",{"type":60,"tag":2279,"props":2789,"children":2790},{},[2791,2793,2799],{"type":66,"value":2792},"Move to ",{"type":60,"tag":75,"props":2794,"children":2796},{"className":2795},[],[2797],{"type":66,"value":2798},"app\u002Fapi\u002F",{"type":66,"value":2800}," directory (App Router)",{"type":60,"tag":2257,"props":2802,"children":2803},{},[2804,2813,2818],{"type":60,"tag":2279,"props":2805,"children":2806},{},[2807],{"type":60,"tag":75,"props":2808,"children":2810},{"className":2809},[],[2811],{"type":66,"value":2812},"Error: EPERM",{"type":60,"tag":2279,"props":2814,"children":2815},{},[2816],{"type":66,"value":2817},"File permission issue in build",{"type":60,"tag":2279,"props":2819,"children":2820},{},[2821,2823,2829],{"type":66,"value":2822},"Don't ",{"type":60,"tag":75,"props":2824,"children":2826},{"className":2825},[],[2827],{"type":66,"value":2828},"chmod",{"type":66,"value":2830}," in build scripts; use postinstall",{"type":60,"tag":113,"props":2832,"children":2834},{"id":2833},"deploy-summary-format",[2835],{"type":66,"value":2836},"Deploy Summary Format",{"type":60,"tag":69,"props":2838,"children":2839},{},[2840],{"type":66,"value":2841},"Present a structured deploy result block:",{"type":60,"tag":127,"props":2843,"children":2847},{"className":2844,"code":2846,"language":66},[2845],"language-text","## Deploy Result\n- **URL**: \u003Cdeployment-url>\n- **Target**: production | preview\n- **Status**: READY | ERROR | BUILDING | QUEUED\n- **Commit**: \u003Cshort-sha>\n- **Framework**: \u003Cdetected-framework>\n- **Build Duration**: \u003Cduration>\n",[2848],{"type":60,"tag":75,"props":2849,"children":2850},{"__ignoreMap":132},[2851],{"type":66,"value":2846},{"type":60,"tag":69,"props":2853,"children":2854},{},[2855],{"type":66,"value":2856},"If the deployment failed, append:",{"type":60,"tag":127,"props":2858,"children":2861},{"className":2859,"code":2860,"language":66},[2845],"- **Error**: \u003Csummary of failure from logs>\n",[2862],{"type":60,"tag":75,"props":2863,"children":2864},{"__ignoreMap":132},[2865],{"type":66,"value":2860},{"type":60,"tag":69,"props":2867,"children":2868},{},[2869],{"type":66,"value":2870},"For production deploys, also include:",{"type":60,"tag":127,"props":2872,"children":2875},{"className":2873,"code":2874,"language":66},[2845],"### Post-Deploy Observability\n- **Error scan**: \u003CN errors found \u002F clean> (scanned via vercel logs --level error --since 1h)\n- **Drains**: \u003CN configured \u002F none>\n- **Monitoring**: \u003Cactive \u002F gaps identified>\n",[2876],{"type":60,"tag":75,"props":2877,"children":2878},{"__ignoreMap":132},[2879],{"type":66,"value":2874},{"type":60,"tag":113,"props":2881,"children":2883},{"id":2882},"deploy-next-steps",[2884],{"type":66,"value":2885},"Deploy Next Steps",{"type":60,"tag":69,"props":2887,"children":2888},{},[2889],{"type":66,"value":2890},"Based on the deployment outcome:",{"type":60,"tag":1265,"props":2892,"children":2893},{},[2894,2912,2930,2956,2981,3005,3023],{"type":60,"tag":1269,"props":2895,"children":2896},{},[2897,2902,2904,2910],{"type":60,"tag":400,"props":2898,"children":2899},{},[2900],{"type":66,"value":2901},"Success (preview)",{"type":66,"value":2903}," → \"Visit the preview URL to verify. When ready, run ",{"type":60,"tag":75,"props":2905,"children":2907},{"className":2906},[],[2908],{"type":66,"value":2909},"\u002Fdeploy prod",{"type":66,"value":2911}," to promote to production.\"",{"type":60,"tag":1269,"props":2913,"children":2914},{},[2915,2920,2922,2928],{"type":60,"tag":400,"props":2916,"children":2917},{},[2918],{"type":66,"value":2919},"Success (production)",{"type":66,"value":2921}," → \"Your production site is live. Run ",{"type":60,"tag":75,"props":2923,"children":2925},{"className":2924},[],[2926],{"type":66,"value":2927},"\u002Fstatus",{"type":66,"value":2929}," to see the full project overview.\"",{"type":60,"tag":1269,"props":2931,"children":2932},{},[2933,2938,2940,2946,2948,2954],{"type":60,"tag":400,"props":2934,"children":2935},{},[2936],{"type":66,"value":2937},"Build error",{"type":66,"value":2939}," → \"Check the build logs above. Common fixes: verify ",{"type":60,"tag":75,"props":2941,"children":2943},{"className":2942},[],[2944],{"type":66,"value":2945},"build",{"type":66,"value":2947}," script in package.json, check for missing env vars with ",{"type":60,"tag":75,"props":2949,"children":2951},{"className":2950},[],[2952],{"type":66,"value":2953},"\u002Fenv list",{"type":66,"value":2955},", ensure dependencies are installed.\"",{"type":60,"tag":1269,"props":2957,"children":2958},{},[2959,2964,2966,2972,2974,2979],{"type":60,"tag":400,"props":2960,"children":2961},{},[2962],{"type":66,"value":2963},"Missing env vars",{"type":66,"value":2965}," → \"Run ",{"type":60,"tag":75,"props":2967,"children":2969},{"className":2968},[],[2970],{"type":66,"value":2971},"\u002Fenv pull",{"type":66,"value":2973}," to sync environment variables locally, or ",{"type":60,"tag":75,"props":2975,"children":2977},{"className":2976},[],[2978],{"type":66,"value":2953},{"type":66,"value":2980}," to review what's configured on Vercel.\"",{"type":60,"tag":1269,"props":2982,"children":2983},{},[2984,2989,2991,2996,2998,3003],{"type":60,"tag":400,"props":2985,"children":2986},{},[2987],{"type":66,"value":2988},"Monorepo issues",{"type":66,"value":2990}," → \"Ensure the correct project root is configured in Vercel project settings. Check ",{"type":60,"tag":75,"props":2992,"children":2994},{"className":2993},[],[2995],{"type":66,"value":46},{"type":66,"value":2997}," for ",{"type":60,"tag":75,"props":2999,"children":3001},{"className":3000},[],[3002],{"type":66,"value":2738},{"type":66,"value":3004},".\"",{"type":60,"tag":1269,"props":3006,"children":3007},{},[3008,3013,3015,3021],{"type":60,"tag":400,"props":3009,"children":3010},{},[3011],{"type":66,"value":3012},"Post-deploy errors detected",{"type":66,"value":3014}," → \"Review errors above. Check ",{"type":60,"tag":75,"props":3016,"children":3018},{"className":3017},[],[3019],{"type":66,"value":3020},"vercel logs \u003Curl> --level error",{"type":66,"value":3022}," for details. If drains are configured, correlate with external monitoring.\"",{"type":60,"tag":1269,"props":3024,"children":3025},{},[3026,3031,3033,3038],{"type":60,"tag":400,"props":3027,"children":3028},{},[3029],{"type":66,"value":3030},"No monitoring configured",{"type":66,"value":3032}," → \"Set up drains or install an error tracking integration before the next production deploy. Run ",{"type":60,"tag":75,"props":3034,"children":3036},{"className":3035},[],[3037],{"type":66,"value":2927},{"type":66,"value":3039}," for a full observability diagnostic.\"",{"type":60,"tag":113,"props":3041,"children":3043},{"id":3042},"official-documentation",[3044],{"type":66,"value":3045},"Official Documentation",{"type":60,"tag":1265,"props":3047,"children":3048},{},[3049,3061,3071,3080,3089,3098],{"type":60,"tag":1269,"props":3050,"children":3051},{},[3052],{"type":60,"tag":3053,"props":3054,"children":3058},"a",{"href":3055,"rel":3056},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fdeployments",[3057],"nofollow",[3059],{"type":66,"value":3060},"Deployments",{"type":60,"tag":1269,"props":3062,"children":3063},{},[3064],{"type":60,"tag":3053,"props":3065,"children":3068},{"href":3066,"rel":3067},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fcli",[3057],[3069],{"type":66,"value":3070},"Vercel CLI",{"type":60,"tag":1269,"props":3072,"children":3073},{},[3074],{"type":60,"tag":3053,"props":3075,"children":3078},{"href":3076,"rel":3077},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fdeployments\u002Fgit\u002Fvercel-for-github",[3057],[3079],{"type":66,"value":825},{"type":60,"tag":1269,"props":3081,"children":3082},{},[3083],{"type":60,"tag":3053,"props":3084,"children":3087},{"href":3085,"rel":3086},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fdeployments\u002Fgit\u002Fvercel-for-gitlab",[3057],[3088],{"type":66,"value":1289},{"type":60,"tag":1269,"props":3090,"children":3091},{},[3092],{"type":60,"tag":3053,"props":3093,"children":3096},{"href":3094,"rel":3095},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fdeployments\u002Fgit\u002Fvercel-for-bitbucket",[3057],[3097],{"type":66,"value":1431},{"type":60,"tag":1269,"props":3099,"children":3100},{},[3101],{"type":60,"tag":3053,"props":3102,"children":3105},{"href":3103,"rel":3104},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Foidc",[3057],[3106],{"type":66,"value":3107},"OIDC Federation",{"type":60,"tag":3109,"props":3110,"children":3111},"style",{},[3112],{"type":66,"value":3113},"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":3115,"total":3235},[3116,3135,3151,3163,3183,3203,3223],{"slug":3117,"name":3117,"fn":3118,"description":3119,"org":3120,"tags":3121,"stars":22,"repoUrl":23,"updatedAt":3134},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3122,3125,3128,3131],{"name":3123,"slug":3124,"type":15},"Accessibility","accessibility",{"name":3126,"slug":3127,"type":15},"Charts","charts",{"name":3129,"slug":3130,"type":15},"Data Visualization","data-visualization",{"name":3132,"slug":3133,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":3136,"name":3136,"fn":3137,"description":3138,"org":3139,"tags":3140,"stars":22,"repoUrl":23,"updatedAt":3150},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3141,3144,3147],{"name":3142,"slug":3143,"type":15},"Agents","agents",{"name":3145,"slug":3146,"type":15},"Browser Automation","browser-automation",{"name":3148,"slug":3149,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":3152,"name":3152,"fn":3153,"description":3154,"org":3155,"tags":3156,"stars":22,"repoUrl":23,"updatedAt":3162},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3157,3158,3161],{"name":3145,"slug":3146,"type":15},{"name":3159,"slug":3160,"type":15},"Local Development","local-development",{"name":3148,"slug":3149,"type":15},"2026-04-06T18:41:17.526867",{"slug":3164,"name":3164,"fn":3165,"description":3166,"org":3167,"tags":3168,"stars":22,"repoUrl":23,"updatedAt":3182},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3169,3170,3173,3176,3179],{"name":3142,"slug":3143,"type":15},{"name":3171,"slug":3172,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":3174,"slug":3175,"type":15},"SDK","sdk",{"name":3177,"slug":3178,"type":15},"Serverless","serverless",{"name":3180,"slug":3181,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":3184,"name":3184,"fn":3185,"description":3186,"org":3187,"tags":3188,"stars":22,"repoUrl":23,"updatedAt":3202},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3189,3192,3195,3198,3201],{"name":3190,"slug":3191,"type":15},"Frontend","frontend",{"name":3193,"slug":3194,"type":15},"React","react",{"name":3196,"slug":3197,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":3199,"slug":3200,"type":15},"UI Components","ui-components",{"name":13,"slug":14,"type":15},"2026-04-06T18:40:59.619419",{"slug":3204,"name":3204,"fn":3205,"description":3206,"org":3207,"tags":3208,"stars":22,"repoUrl":23,"updatedAt":3222},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3209,3212,3215,3218,3221],{"name":3210,"slug":3211,"type":15},"AI Infrastructure","ai-infrastructure",{"name":3213,"slug":3214,"type":15},"Cost Optimization","cost-optimization",{"name":3216,"slug":3217,"type":15},"LLM","llm",{"name":3219,"slug":3220,"type":15},"Performance","performance",{"name":13,"slug":14,"type":15},"2026-04-06T18:40:44.377464",{"slug":3224,"name":3224,"fn":3225,"description":3226,"org":3227,"tags":3228,"stars":22,"repoUrl":23,"updatedAt":3234},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3229,3230,3233],{"name":3213,"slug":3214,"type":15},{"name":3231,"slug":3232,"type":15},"Database","database",{"name":3216,"slug":3217,"type":15},"2026-04-06T18:41:08.513425",600,{"items":3237,"total":3431},[3238,3259,3282,3299,3315,3330,3348,3360,3374,3388,3400,3415],{"slug":3239,"name":3239,"fn":3240,"description":3241,"org":3242,"tags":3243,"stars":3256,"repoUrl":3257,"updatedAt":3258},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3244,3247,3250,3253],{"name":3245,"slug":3246,"type":15},"Documents","documents",{"name":3248,"slug":3249,"type":15},"Healthcare","healthcare",{"name":3251,"slug":3252,"type":15},"Insurance","insurance",{"name":3254,"slug":3255,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":3260,"name":3260,"fn":3261,"description":3262,"org":3263,"tags":3264,"stars":3279,"repoUrl":3280,"updatedAt":3281},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3265,3268,3270,3273,3276],{"name":3266,"slug":3267,"type":15},".NET","dotnet",{"name":3269,"slug":3260,"type":15},"ASP.NET Core",{"name":3271,"slug":3272,"type":15},"Blazor","blazor",{"name":3274,"slug":3275,"type":15},"C#","csharp",{"name":3277,"slug":3278,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":3283,"name":3283,"fn":3284,"description":3285,"org":3286,"tags":3287,"stars":3279,"repoUrl":3280,"updatedAt":3298},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3288,3291,3294,3297],{"name":3289,"slug":3290,"type":15},"Apps SDK","apps-sdk",{"name":3292,"slug":3293,"type":15},"ChatGPT","chatgpt",{"name":3295,"slug":3296,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":3300,"name":3300,"fn":3301,"description":3302,"org":3303,"tags":3304,"stars":3279,"repoUrl":3280,"updatedAt":3314},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3305,3308,3311],{"name":3306,"slug":3307,"type":15},"API Development","api-development",{"name":3309,"slug":3310,"type":15},"CLI","cli",{"name":3312,"slug":3313,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":3316,"name":3316,"fn":3317,"description":3318,"org":3319,"tags":3320,"stars":3279,"repoUrl":3280,"updatedAt":3329},"cloudflare-deploy","deploy projects 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":8},[3321,3324,3327,3328],{"name":3322,"slug":3323,"type":15},"Cloudflare","cloudflare",{"name":3325,"slug":3326,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":3171,"slug":3172,"type":15},{"name":17,"slug":18,"type":15},"2026-04-12T05:07:14.275118",{"slug":3331,"name":3331,"fn":3332,"description":3333,"org":3334,"tags":3335,"stars":3279,"repoUrl":3280,"updatedAt":3347},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3336,3339,3342,3344],{"name":3337,"slug":3338,"type":15},"Productivity","productivity",{"name":3340,"slug":3341,"type":15},"Project Management","project-management",{"name":2489,"slug":3343,"type":15},"strategy",{"name":3345,"slug":3346,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":3349,"name":3349,"fn":3350,"description":3351,"org":3352,"tags":3353,"stars":3279,"repoUrl":3280,"updatedAt":3359},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3354,3355,3357,3358],{"name":3132,"slug":3133,"type":15},{"name":3356,"slug":3349,"type":15},"Figma",{"name":3190,"slug":3191,"type":15},{"name":3295,"slug":3296,"type":15},"2026-04-12T05:06:47.939943",{"slug":3361,"name":3361,"fn":3362,"description":3363,"org":3364,"tags":3365,"stars":3279,"repoUrl":3280,"updatedAt":3373},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3366,3367,3370,3371,3372],{"name":3132,"slug":3133,"type":15},{"name":3368,"slug":3369,"type":15},"Design System","design-system",{"name":3356,"slug":3349,"type":15},{"name":3190,"slug":3191,"type":15},{"name":3199,"slug":3200,"type":15},"2026-05-10T05:59:52.971881",{"slug":3375,"name":3375,"fn":3376,"description":3377,"org":3378,"tags":3379,"stars":3279,"repoUrl":3280,"updatedAt":3387},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3380,3381,3382,3385,3386],{"name":3132,"slug":3133,"type":15},{"name":3368,"slug":3369,"type":15},{"name":3383,"slug":3384,"type":15},"Documentation","documentation",{"name":3356,"slug":3349,"type":15},{"name":3190,"slug":3191,"type":15},"2026-05-16T06:07:47.821474",{"slug":3389,"name":3389,"fn":3390,"description":3391,"org":3392,"tags":3393,"stars":3279,"repoUrl":3280,"updatedAt":3399},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3394,3395,3396,3397,3398],{"name":3132,"slug":3133,"type":15},{"name":3356,"slug":3349,"type":15},{"name":3190,"slug":3191,"type":15},{"name":3199,"slug":3200,"type":15},{"name":3277,"slug":3278,"type":15},"2026-05-16T06:07:40.583615",{"slug":3401,"name":3401,"fn":3402,"description":3403,"org":3404,"tags":3405,"stars":3279,"repoUrl":3280,"updatedAt":3414},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3406,3409,3410,3413],{"name":3407,"slug":3408,"type":15},"Animation","animation",{"name":3312,"slug":3313,"type":15},{"name":3411,"slug":3412,"type":15},"Creative","creative",{"name":3132,"slug":3133,"type":15},"2026-05-02T05:31:48.48485",{"slug":3416,"name":3416,"fn":3417,"description":3418,"org":3419,"tags":3420,"stars":3279,"repoUrl":3280,"updatedAt":3430},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3421,3422,3423,3426,3429],{"name":3411,"slug":3412,"type":15},{"name":3132,"slug":3133,"type":15},{"name":3424,"slug":3425,"type":15},"Image Generation","image-generation",{"name":3427,"slug":3428,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]