[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-vercel-cli":3,"mdc-mqgmzh-key":31,"related-org-vercel-vercel-cli":988,"related-repo-vercel-vercel-cli":1169},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":29,"mdContent":30},"vercel-cli","manage Vercel deployments via CLI","Vercel CLI expert guidance. Use when deploying, managing environment variables, linking projects, viewing logs, querying metrics, managing domains, or interacting with the Vercel platform from the command line.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel","Vercel","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel.png",[12,14,17],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"CLI","cli",{"name":18,"slug":19,"type":13},"Deployment","deployment",226,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fvercel-plugin","2026-04-06T18:56:07.843689",null,36,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":28},[],"Comprehensive Vercel ecosystem plugin — relational knowledge graph, skills for every major product, specialized agents, and Vercel conventions. Turns any AI agent into a Vercel expert.","https:\u002F\u002Fgithub.com\u002Fvercel\u002Fvercel-plugin\u002Ftree\u002FHEAD\u002Fskills\u002Fvercel-cli","---\nname: vercel-cli\ndescription: Vercel CLI expert guidance. Use when deploying, managing environment variables, linking projects, viewing logs, querying metrics, managing domains, or interacting with the Vercel platform from the command line.\nmetadata:\n  priority: 4\n  docs:\n    - \"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fcli\"\n  sitemap: \"https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml\"\n  pathPatterns:\n    - 'vercel.json'\n    - 'vercel.ts'\n    - '.vercel\u002F**'\n    - '.vercelignore'\n    - 'now.json'\n  bashPatterns:\n    - '^\\s*vercel(?:\\s|$)'\n    - '^\\s*vc(?:\\s|$)'\n    - '\\bnpx\\s+vercel\\b'\n    - '\\bpnpm\\s+dlx\\s+vercel\\b'\n    - '\\bbunx\\s+vercel\\b'\n    - '\\byarn\\s+dlx\\s+vercel\\b'\n    - '\\bnpx\\s+@vercel\u002Fconfig\\b'\n  promptSignals:\n    phrases:\n      - \"check deployment\"\n      - \"check deploy\"\n      - \"deployment status\"\n      - \"deploy status\"\n      - \"vercel logs\"\n      - \"vercel metrics\"\n      - \"deployment logs\"\n      - \"deploy logs\"\n      - \"vercel inspect\"\n      - \"is it deployed\"\n      - \"deploy failing\"\n      - \"deploy failed\"\n      - \"deployment error\"\n      - \"check vercel\"\n      - \"vercel status\"\n    allOf:\n      - [check, deployment]\n      - [check, deploy]\n      - [vercel, status]\n      - [vercel, logs]\n      - [vercel, metrics]\n      - [deploy, error]\n      - [deploy, failed]\n      - [deploy, stuck]\n    anyOf:\n      - \"deployment\"\n      - \"deploy\"\n      - \"vercel\"\n      - \"production\"\n    noneOf:\n      - \"terraform\"\n      - \"aws deploy\"\n      - \"heroku\"\n    minScore: 6\nretrieval:\n  aliases:\n    - vercel command line\n    - vc cli\n    - deploy command\n    - vercel terminal\n  intents:\n    - deploy from cli\n    - link project\n    - manage domains\n    - view logs from terminal\n  entities:\n    - vercel CLI\n    - vercel deploy\n    - vercel env\n    - vercel link\n    - vercel logs\n    - vercel metrics\nchainTo:\n  -\n    pattern: '\"functions\"\\s*:\\s*\\{|\"maxDuration\"\\s*:|\"memory\"\\s*:'\n    targetSkill: vercel-functions\n    message: 'Functions configuration detected in vercel.json — loading Vercel Functions guidance for runtime options, streaming, and Fluid Compute.'\n    skipIfFileContains: '\"crons\"\\s*:'\n  -\n    pattern: '\"redirects\"\\s*:\\s*\\[|\"rewrites\"\\s*:\\s*\\[|\"headers\"\\s*:\\s*\\['\n    targetSkill: routing-middleware\n    message: 'Routing rules in vercel.json — loading Routing Middleware guidance for platform-level request interception patterns.'\n---\n\n# Vercel CLI Skill\n\nThe Vercel CLI (`vercel` or `vc`) deploys, manages, and develops projects on the Vercel platform from the command line. Use `vercel \u003Ccommand> -h` for full flag details on any command.\n\n## Critical: Project Linking\n\nCommands must be run from the directory containing the `.vercel` folder (or a subdirectory of it). How `.vercel` gets set up depends on your project structure:\n\n- **`.vercel\u002Fproject.json`**: Created by `vercel link`. Links a single project. Fine for single-project repos, and can work in monorepos if there's only one project.\n- **`.vercel\u002Frepo.json`**: Created by `vercel link --repo`. Links a repo that may contain multiple projects. Always a good idea when any project has a non-root directory (e.g., `apps\u002Fweb`).\n\nRunning from a project subdirectory (e.g., `apps\u002Fweb\u002F`) skips the \"which project?\" prompt since it's unambiguous.\n\n**When something goes wrong, check how things are linked first** — look at what's in `.vercel\u002F` and whether it's `project.json` or `repo.json`. Also verify you're on the right team with `vercel whoami` — linking while on the wrong team is a common mistake.\n\n## Quick Start\n\n```bash\nnpm i -g vercel\nvercel login\nvercel link              # single project\n# OR\nvercel link --repo       # monorepo\nvercel pull\nvercel dev        # local development\nvercel deploy     # preview deployment\nvercel --prod     # production deployment\n```\n\n## Decision Tree\n\nUse this to route to the correct reference file:\n\n- **Deploy** → `references\u002Fdeployment.md`\n- **Local development** → `references\u002Flocal-development.md`\n- **Environment variables** → `references\u002Fenvironment-variables.md`\n- **CI\u002FCD automation** → `references\u002Fci-automation.md`\n- **Domains or DNS** → `references\u002Fdomains-and-dns.md`\n- **Projects or teams** → `references\u002Fprojects-and-teams.md`\n- **Logs, metrics, debugging, or accessing preview deploys** → `references\u002Fmonitoring-and-debugging.md`\n- **Blob storage** → `references\u002Fstorage.md`\n- **Integrations (databases, storage, etc.)** → `references\u002Fintegrations.md`\n- **Access a preview deployment** → use `vercel curl` (see `references\u002Fmonitoring-and-debugging.md`)\n- **CLI doesn't have a command for it** → use `vercel api` as a fallback (see `references\u002Fadvanced.md`)\n- **Node.js backends (Express, Hono, etc.)** → `references\u002Fnode-backends.md`\n- **Monorepos (Turborepo, Nx, workspaces)** → `references\u002Fmonorepos.md`\n- **Bun runtime** → `references\u002Fbun.md`\n- **Feature flags** → `references\u002Fflags.md`\n- **Advanced (API, webhooks)** → `references\u002Fadvanced.md`\n- **Global flags** → `references\u002Fglobal-options.md`\n- **First-time setup** → `references\u002Fgetting-started.md`\n\n## Anti-Patterns\n\n- **Wrong link type in monorepos with multiple projects**: `vercel link` creates `project.json`, which only tracks one project. Use `vercel link --repo` instead. When things break, check `.vercel\u002F` first.\n- **Letting commands auto-link in monorepos**: Many commands implicitly run `vercel link` if `.vercel\u002F` doesn't exist. This creates `project.json`, which may be wrong. Run `vercel link` (or `--repo`) explicitly first.\n- **Linking while on the wrong team**: Use `vercel whoami` to check, `vercel teams switch` to change.\n- **Forgetting `--yes` in CI**: Required to skip interactive prompts.\n- **Using `vercel deploy` after `vercel build` without `--prebuilt`**: The build output is ignored.\n- **Hardcoding tokens in flags**: Use `VERCEL_TOKEN` env var instead of `--token`.\n- **Disabling deployment protection**: Use `vercel curl` instead to access preview deploys.\n",{"data":32,"body":119},{"name":4,"description":6,"metadata":33,"retrieval":93,"chainTo":109},{"priority":34,"docs":35,"sitemap":37,"pathPatterns":38,"bashPatterns":44,"promptSignals":52},4,[36],"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fcli","https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml",[39,40,41,42,43],"vercel.json","vercel.ts",".vercel\u002F**",".vercelignore","now.json",[45,46,47,48,49,50,51],"^\\s*vercel(?:\\s|$)","^\\s*vc(?:\\s|$)","\\bnpx\\s+vercel\\b","\\bpnpm\\s+dlx\\s+vercel\\b","\\bbunx\\s+vercel\\b","\\byarn\\s+dlx\\s+vercel\\b","\\bnpx\\s+@vercel\u002Fconfig\\b",{"phrases":53,"allOf":69,"anyOf":86,"noneOf":88,"minScore":92},[54,55,56,57,58,59,60,61,62,63,64,65,66,67,68],"check deployment","check deploy","deployment status","deploy status","vercel logs","vercel metrics","deployment logs","deploy logs","vercel inspect","is it deployed","deploy failing","deploy failed","deployment error","check vercel","vercel status",[70,72,74,76,78,80,82,84],[71,19],"check",[71,73],"deploy",[8,75],"status",[8,77],"logs",[8,79],"metrics",[73,81],"error",[73,83],"failed",[73,85],"stuck",[19,73,8,87],"production",[89,90,91],"terraform","aws deploy","heroku",6,{"aliases":94,"intents":99,"entities":104},[95,96,97,98],"vercel command line","vc cli","deploy command","vercel terminal",[100,101,102,103],"deploy from cli","link project","manage domains","view logs from terminal",[105,106,107,108,58,59],"vercel CLI","vercel deploy","vercel env","vercel link",[110,115],{"pattern":111,"targetSkill":112,"message":113,"skipIfFileContains":114},"\"functions\"\\s*:\\s*\\{|\"maxDuration\"\\s*:|\"memory\"\\s*:","vercel-functions","Functions configuration detected in vercel.json — loading Vercel Functions guidance for runtime options, streaming, and Fluid Compute.","\"crons\"\\s*:",{"pattern":116,"targetSkill":117,"message":118},"\"redirects\"\\s*:\\s*\\[|\"rewrites\"\\s*:\\s*\\[|\"headers\"\\s*:\\s*\\[","routing-middleware","Routing rules in vercel.json — loading Routing Middleware guidance for platform-level request interception patterns.",{"type":120,"children":121},"root",[122,131,161,168,188,244,257,298,304,471,477,482,774,780,982],{"type":123,"tag":124,"props":125,"children":127},"element","h1",{"id":126},"vercel-cli-skill",[128],{"type":129,"value":130},"text","Vercel CLI Skill",{"type":123,"tag":132,"props":133,"children":134},"p",{},[135,137,143,145,151,153,159],{"type":129,"value":136},"The Vercel CLI (",{"type":123,"tag":138,"props":139,"children":141},"code",{"className":140},[],[142],{"type":129,"value":8},{"type":129,"value":144}," or ",{"type":123,"tag":138,"props":146,"children":148},{"className":147},[],[149],{"type":129,"value":150},"vc",{"type":129,"value":152},") deploys, manages, and develops projects on the Vercel platform from the command line. Use ",{"type":123,"tag":138,"props":154,"children":156},{"className":155},[],[157],{"type":129,"value":158},"vercel \u003Ccommand> -h",{"type":129,"value":160}," for full flag details on any command.",{"type":123,"tag":162,"props":163,"children":165},"h2",{"id":164},"critical-project-linking",[166],{"type":129,"value":167},"Critical: Project Linking",{"type":123,"tag":132,"props":169,"children":170},{},[171,173,179,181,186],{"type":129,"value":172},"Commands must be run from the directory containing the ",{"type":123,"tag":138,"props":174,"children":176},{"className":175},[],[177],{"type":129,"value":178},".vercel",{"type":129,"value":180}," folder (or a subdirectory of it). How ",{"type":123,"tag":138,"props":182,"children":184},{"className":183},[],[185],{"type":129,"value":178},{"type":129,"value":187}," gets set up depends on your project structure:",{"type":123,"tag":189,"props":190,"children":191},"ul",{},[192,215],{"type":123,"tag":193,"props":194,"children":195},"li",{},[196,206,208,213],{"type":123,"tag":197,"props":198,"children":199},"strong",{},[200],{"type":123,"tag":138,"props":201,"children":203},{"className":202},[],[204],{"type":129,"value":205},".vercel\u002Fproject.json",{"type":129,"value":207},": Created by ",{"type":123,"tag":138,"props":209,"children":211},{"className":210},[],[212],{"type":129,"value":108},{"type":129,"value":214},". Links a single project. Fine for single-project repos, and can work in monorepos if there's only one project.",{"type":123,"tag":193,"props":216,"children":217},{},[218,227,228,234,236,242],{"type":123,"tag":197,"props":219,"children":220},{},[221],{"type":123,"tag":138,"props":222,"children":224},{"className":223},[],[225],{"type":129,"value":226},".vercel\u002Frepo.json",{"type":129,"value":207},{"type":123,"tag":138,"props":229,"children":231},{"className":230},[],[232],{"type":129,"value":233},"vercel link --repo",{"type":129,"value":235},". Links a repo that may contain multiple projects. Always a good idea when any project has a non-root directory (e.g., ",{"type":123,"tag":138,"props":237,"children":239},{"className":238},[],[240],{"type":129,"value":241},"apps\u002Fweb",{"type":129,"value":243},").",{"type":123,"tag":132,"props":245,"children":246},{},[247,249,255],{"type":129,"value":248},"Running from a project subdirectory (e.g., ",{"type":123,"tag":138,"props":250,"children":252},{"className":251},[],[253],{"type":129,"value":254},"apps\u002Fweb\u002F",{"type":129,"value":256},") skips the \"which project?\" prompt since it's unambiguous.",{"type":123,"tag":132,"props":258,"children":259},{},[260,265,267,273,275,281,282,288,290,296],{"type":123,"tag":197,"props":261,"children":262},{},[263],{"type":129,"value":264},"When something goes wrong, check how things are linked first",{"type":129,"value":266}," — look at what's in ",{"type":123,"tag":138,"props":268,"children":270},{"className":269},[],[271],{"type":129,"value":272},".vercel\u002F",{"type":129,"value":274}," and whether it's ",{"type":123,"tag":138,"props":276,"children":278},{"className":277},[],[279],{"type":129,"value":280},"project.json",{"type":129,"value":144},{"type":123,"tag":138,"props":283,"children":285},{"className":284},[],[286],{"type":129,"value":287},"repo.json",{"type":129,"value":289},". Also verify you're on the right team with ",{"type":123,"tag":138,"props":291,"children":293},{"className":292},[],[294],{"type":129,"value":295},"vercel whoami",{"type":129,"value":297}," — linking while on the wrong team is a common mistake.",{"type":123,"tag":162,"props":299,"children":301},{"id":300},"quick-start",[302],{"type":129,"value":303},"Quick Start",{"type":123,"tag":305,"props":306,"children":311},"pre",{"className":307,"code":308,"language":309,"meta":310,"style":310},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm i -g vercel\nvercel login\nvercel link              # single project\n# OR\nvercel link --repo       # monorepo\nvercel pull\nvercel dev        # local development\nvercel deploy     # preview deployment\nvercel --prod     # production deployment\n","bash","",[312],{"type":123,"tag":138,"props":313,"children":314},{"__ignoreMap":310},[315,343,356,375,383,405,417,435,453],{"type":123,"tag":316,"props":317,"children":320},"span",{"class":318,"line":319},"line",1,[321,327,333,338],{"type":123,"tag":316,"props":322,"children":324},{"style":323},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[325],{"type":129,"value":326},"npm",{"type":123,"tag":316,"props":328,"children":330},{"style":329},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[331],{"type":129,"value":332}," i",{"type":123,"tag":316,"props":334,"children":335},{"style":329},[336],{"type":129,"value":337}," -g",{"type":123,"tag":316,"props":339,"children":340},{"style":329},[341],{"type":129,"value":342}," vercel\n",{"type":123,"tag":316,"props":344,"children":346},{"class":318,"line":345},2,[347,351],{"type":123,"tag":316,"props":348,"children":349},{"style":323},[350],{"type":129,"value":8},{"type":123,"tag":316,"props":352,"children":353},{"style":329},[354],{"type":129,"value":355}," login\n",{"type":123,"tag":316,"props":357,"children":359},{"class":318,"line":358},3,[360,364,369],{"type":123,"tag":316,"props":361,"children":362},{"style":323},[363],{"type":129,"value":8},{"type":123,"tag":316,"props":365,"children":366},{"style":329},[367],{"type":129,"value":368}," link",{"type":123,"tag":316,"props":370,"children":372},{"style":371},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[373],{"type":129,"value":374},"              # single project\n",{"type":123,"tag":316,"props":376,"children":377},{"class":318,"line":34},[378],{"type":123,"tag":316,"props":379,"children":380},{"style":371},[381],{"type":129,"value":382},"# OR\n",{"type":123,"tag":316,"props":384,"children":386},{"class":318,"line":385},5,[387,391,395,400],{"type":123,"tag":316,"props":388,"children":389},{"style":323},[390],{"type":129,"value":8},{"type":123,"tag":316,"props":392,"children":393},{"style":329},[394],{"type":129,"value":368},{"type":123,"tag":316,"props":396,"children":397},{"style":329},[398],{"type":129,"value":399}," --repo",{"type":123,"tag":316,"props":401,"children":402},{"style":371},[403],{"type":129,"value":404},"       # monorepo\n",{"type":123,"tag":316,"props":406,"children":407},{"class":318,"line":92},[408,412],{"type":123,"tag":316,"props":409,"children":410},{"style":323},[411],{"type":129,"value":8},{"type":123,"tag":316,"props":413,"children":414},{"style":329},[415],{"type":129,"value":416}," pull\n",{"type":123,"tag":316,"props":418,"children":420},{"class":318,"line":419},7,[421,425,430],{"type":123,"tag":316,"props":422,"children":423},{"style":323},[424],{"type":129,"value":8},{"type":123,"tag":316,"props":426,"children":427},{"style":329},[428],{"type":129,"value":429}," dev",{"type":123,"tag":316,"props":431,"children":432},{"style":371},[433],{"type":129,"value":434},"        # local development\n",{"type":123,"tag":316,"props":436,"children":438},{"class":318,"line":437},8,[439,443,448],{"type":123,"tag":316,"props":440,"children":441},{"style":323},[442],{"type":129,"value":8},{"type":123,"tag":316,"props":444,"children":445},{"style":329},[446],{"type":129,"value":447}," deploy",{"type":123,"tag":316,"props":449,"children":450},{"style":371},[451],{"type":129,"value":452},"     # preview deployment\n",{"type":123,"tag":316,"props":454,"children":456},{"class":318,"line":455},9,[457,461,466],{"type":123,"tag":316,"props":458,"children":459},{"style":323},[460],{"type":129,"value":8},{"type":123,"tag":316,"props":462,"children":463},{"style":329},[464],{"type":129,"value":465}," --prod",{"type":123,"tag":316,"props":467,"children":468},{"style":371},[469],{"type":129,"value":470},"     # production deployment\n",{"type":123,"tag":162,"props":472,"children":474},{"id":473},"decision-tree",[475],{"type":129,"value":476},"Decision Tree",{"type":123,"tag":132,"props":478,"children":479},{},[480],{"type":129,"value":481},"Use this to route to the correct reference file:",{"type":123,"tag":189,"props":483,"children":484},{},[485,501,516,531,546,561,576,591,606,621,646,670,685,700,715,730,744,759],{"type":123,"tag":193,"props":486,"children":487},{},[488,493,495],{"type":123,"tag":197,"props":489,"children":490},{},[491],{"type":129,"value":492},"Deploy",{"type":129,"value":494}," → ",{"type":123,"tag":138,"props":496,"children":498},{"className":497},[],[499],{"type":129,"value":500},"references\u002Fdeployment.md",{"type":123,"tag":193,"props":502,"children":503},{},[504,509,510],{"type":123,"tag":197,"props":505,"children":506},{},[507],{"type":129,"value":508},"Local development",{"type":129,"value":494},{"type":123,"tag":138,"props":511,"children":513},{"className":512},[],[514],{"type":129,"value":515},"references\u002Flocal-development.md",{"type":123,"tag":193,"props":517,"children":518},{},[519,524,525],{"type":123,"tag":197,"props":520,"children":521},{},[522],{"type":129,"value":523},"Environment variables",{"type":129,"value":494},{"type":123,"tag":138,"props":526,"children":528},{"className":527},[],[529],{"type":129,"value":530},"references\u002Fenvironment-variables.md",{"type":123,"tag":193,"props":532,"children":533},{},[534,539,540],{"type":123,"tag":197,"props":535,"children":536},{},[537],{"type":129,"value":538},"CI\u002FCD automation",{"type":129,"value":494},{"type":123,"tag":138,"props":541,"children":543},{"className":542},[],[544],{"type":129,"value":545},"references\u002Fci-automation.md",{"type":123,"tag":193,"props":547,"children":548},{},[549,554,555],{"type":123,"tag":197,"props":550,"children":551},{},[552],{"type":129,"value":553},"Domains or DNS",{"type":129,"value":494},{"type":123,"tag":138,"props":556,"children":558},{"className":557},[],[559],{"type":129,"value":560},"references\u002Fdomains-and-dns.md",{"type":123,"tag":193,"props":562,"children":563},{},[564,569,570],{"type":123,"tag":197,"props":565,"children":566},{},[567],{"type":129,"value":568},"Projects or teams",{"type":129,"value":494},{"type":123,"tag":138,"props":571,"children":573},{"className":572},[],[574],{"type":129,"value":575},"references\u002Fprojects-and-teams.md",{"type":123,"tag":193,"props":577,"children":578},{},[579,584,585],{"type":123,"tag":197,"props":580,"children":581},{},[582],{"type":129,"value":583},"Logs, metrics, debugging, or accessing preview deploys",{"type":129,"value":494},{"type":123,"tag":138,"props":586,"children":588},{"className":587},[],[589],{"type":129,"value":590},"references\u002Fmonitoring-and-debugging.md",{"type":123,"tag":193,"props":592,"children":593},{},[594,599,600],{"type":123,"tag":197,"props":595,"children":596},{},[597],{"type":129,"value":598},"Blob storage",{"type":129,"value":494},{"type":123,"tag":138,"props":601,"children":603},{"className":602},[],[604],{"type":129,"value":605},"references\u002Fstorage.md",{"type":123,"tag":193,"props":607,"children":608},{},[609,614,615],{"type":123,"tag":197,"props":610,"children":611},{},[612],{"type":129,"value":613},"Integrations (databases, storage, etc.)",{"type":129,"value":494},{"type":123,"tag":138,"props":616,"children":618},{"className":617},[],[619],{"type":129,"value":620},"references\u002Fintegrations.md",{"type":123,"tag":193,"props":622,"children":623},{},[624,629,631,637,639,644],{"type":123,"tag":197,"props":625,"children":626},{},[627],{"type":129,"value":628},"Access a preview deployment",{"type":129,"value":630}," → use ",{"type":123,"tag":138,"props":632,"children":634},{"className":633},[],[635],{"type":129,"value":636},"vercel curl",{"type":129,"value":638}," (see ",{"type":123,"tag":138,"props":640,"children":642},{"className":641},[],[643],{"type":129,"value":590},{"type":129,"value":645},")",{"type":123,"tag":193,"props":647,"children":648},{},[649,654,655,661,663,669],{"type":123,"tag":197,"props":650,"children":651},{},[652],{"type":129,"value":653},"CLI doesn't have a command for it",{"type":129,"value":630},{"type":123,"tag":138,"props":656,"children":658},{"className":657},[],[659],{"type":129,"value":660},"vercel api",{"type":129,"value":662}," as a fallback (see ",{"type":123,"tag":138,"props":664,"children":666},{"className":665},[],[667],{"type":129,"value":668},"references\u002Fadvanced.md",{"type":129,"value":645},{"type":123,"tag":193,"props":671,"children":672},{},[673,678,679],{"type":123,"tag":197,"props":674,"children":675},{},[676],{"type":129,"value":677},"Node.js backends (Express, Hono, etc.)",{"type":129,"value":494},{"type":123,"tag":138,"props":680,"children":682},{"className":681},[],[683],{"type":129,"value":684},"references\u002Fnode-backends.md",{"type":123,"tag":193,"props":686,"children":687},{},[688,693,694],{"type":123,"tag":197,"props":689,"children":690},{},[691],{"type":129,"value":692},"Monorepos (Turborepo, Nx, workspaces)",{"type":129,"value":494},{"type":123,"tag":138,"props":695,"children":697},{"className":696},[],[698],{"type":129,"value":699},"references\u002Fmonorepos.md",{"type":123,"tag":193,"props":701,"children":702},{},[703,708,709],{"type":123,"tag":197,"props":704,"children":705},{},[706],{"type":129,"value":707},"Bun runtime",{"type":129,"value":494},{"type":123,"tag":138,"props":710,"children":712},{"className":711},[],[713],{"type":129,"value":714},"references\u002Fbun.md",{"type":123,"tag":193,"props":716,"children":717},{},[718,723,724],{"type":123,"tag":197,"props":719,"children":720},{},[721],{"type":129,"value":722},"Feature flags",{"type":129,"value":494},{"type":123,"tag":138,"props":725,"children":727},{"className":726},[],[728],{"type":129,"value":729},"references\u002Fflags.md",{"type":123,"tag":193,"props":731,"children":732},{},[733,738,739],{"type":123,"tag":197,"props":734,"children":735},{},[736],{"type":129,"value":737},"Advanced (API, webhooks)",{"type":129,"value":494},{"type":123,"tag":138,"props":740,"children":742},{"className":741},[],[743],{"type":129,"value":668},{"type":123,"tag":193,"props":745,"children":746},{},[747,752,753],{"type":123,"tag":197,"props":748,"children":749},{},[750],{"type":129,"value":751},"Global flags",{"type":129,"value":494},{"type":123,"tag":138,"props":754,"children":756},{"className":755},[],[757],{"type":129,"value":758},"references\u002Fglobal-options.md",{"type":123,"tag":193,"props":760,"children":761},{},[762,767,768],{"type":123,"tag":197,"props":763,"children":764},{},[765],{"type":129,"value":766},"First-time setup",{"type":129,"value":494},{"type":123,"tag":138,"props":769,"children":771},{"className":770},[],[772],{"type":129,"value":773},"references\u002Fgetting-started.md",{"type":123,"tag":162,"props":775,"children":777},{"id":776},"anti-patterns",[778],{"type":129,"value":779},"Anti-Patterns",{"type":123,"tag":189,"props":781,"children":782},{},[783,821,867,892,910,941,966],{"type":123,"tag":193,"props":784,"children":785},{},[786,791,793,798,800,805,807,812,814,819],{"type":123,"tag":197,"props":787,"children":788},{},[789],{"type":129,"value":790},"Wrong link type in monorepos with multiple projects",{"type":129,"value":792},": ",{"type":123,"tag":138,"props":794,"children":796},{"className":795},[],[797],{"type":129,"value":108},{"type":129,"value":799}," creates ",{"type":123,"tag":138,"props":801,"children":803},{"className":802},[],[804],{"type":129,"value":280},{"type":129,"value":806},", which only tracks one project. Use ",{"type":123,"tag":138,"props":808,"children":810},{"className":809},[],[811],{"type":129,"value":233},{"type":129,"value":813}," instead. When things break, check ",{"type":123,"tag":138,"props":815,"children":817},{"className":816},[],[818],{"type":129,"value":272},{"type":129,"value":820}," first.",{"type":123,"tag":193,"props":822,"children":823},{},[824,829,831,836,838,843,845,850,852,857,859,865],{"type":123,"tag":197,"props":825,"children":826},{},[827],{"type":129,"value":828},"Letting commands auto-link in monorepos",{"type":129,"value":830},": Many commands implicitly run ",{"type":123,"tag":138,"props":832,"children":834},{"className":833},[],[835],{"type":129,"value":108},{"type":129,"value":837}," if ",{"type":123,"tag":138,"props":839,"children":841},{"className":840},[],[842],{"type":129,"value":272},{"type":129,"value":844}," doesn't exist. This creates ",{"type":123,"tag":138,"props":846,"children":848},{"className":847},[],[849],{"type":129,"value":280},{"type":129,"value":851},", which may be wrong. Run ",{"type":123,"tag":138,"props":853,"children":855},{"className":854},[],[856],{"type":129,"value":108},{"type":129,"value":858}," (or ",{"type":123,"tag":138,"props":860,"children":862},{"className":861},[],[863],{"type":129,"value":864},"--repo",{"type":129,"value":866},") explicitly first.",{"type":123,"tag":193,"props":868,"children":869},{},[870,875,877,882,884,890],{"type":123,"tag":197,"props":871,"children":872},{},[873],{"type":129,"value":874},"Linking while on the wrong team",{"type":129,"value":876},": Use ",{"type":123,"tag":138,"props":878,"children":880},{"className":879},[],[881],{"type":129,"value":295},{"type":129,"value":883}," to check, ",{"type":123,"tag":138,"props":885,"children":887},{"className":886},[],[888],{"type":129,"value":889},"vercel teams switch",{"type":129,"value":891}," to change.",{"type":123,"tag":193,"props":893,"children":894},{},[895,908],{"type":123,"tag":197,"props":896,"children":897},{},[898,900,906],{"type":129,"value":899},"Forgetting ",{"type":123,"tag":138,"props":901,"children":903},{"className":902},[],[904],{"type":129,"value":905},"--yes",{"type":129,"value":907}," in CI",{"type":129,"value":909},": Required to skip interactive prompts.",{"type":123,"tag":193,"props":911,"children":912},{},[913,939],{"type":123,"tag":197,"props":914,"children":915},{},[916,918,923,925,931,933],{"type":129,"value":917},"Using ",{"type":123,"tag":138,"props":919,"children":921},{"className":920},[],[922],{"type":129,"value":106},{"type":129,"value":924}," after ",{"type":123,"tag":138,"props":926,"children":928},{"className":927},[],[929],{"type":129,"value":930},"vercel build",{"type":129,"value":932}," without ",{"type":123,"tag":138,"props":934,"children":936},{"className":935},[],[937],{"type":129,"value":938},"--prebuilt",{"type":129,"value":940},": The build output is ignored.",{"type":123,"tag":193,"props":942,"children":943},{},[944,949,950,956,958,964],{"type":123,"tag":197,"props":945,"children":946},{},[947],{"type":129,"value":948},"Hardcoding tokens in flags",{"type":129,"value":876},{"type":123,"tag":138,"props":951,"children":953},{"className":952},[],[954],{"type":129,"value":955},"VERCEL_TOKEN",{"type":129,"value":957}," env var instead of ",{"type":123,"tag":138,"props":959,"children":961},{"className":960},[],[962],{"type":129,"value":963},"--token",{"type":129,"value":965},".",{"type":123,"tag":193,"props":967,"children":968},{},[969,974,975,980],{"type":123,"tag":197,"props":970,"children":971},{},[972],{"type":129,"value":973},"Disabling deployment protection",{"type":129,"value":876},{"type":123,"tag":138,"props":976,"children":978},{"className":977},[],[979],{"type":129,"value":636},{"type":129,"value":981}," instead to access preview deploys.",{"type":123,"tag":983,"props":984,"children":985},"style",{},[986],{"type":129,"value":987},"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":989,"total":1168},[990,1012,1026,1045,1056,1071,1087,1105,1117,1136,1148,1158],{"slug":991,"name":991,"fn":992,"description":993,"org":994,"tags":995,"stars":1009,"repoUrl":1010,"updatedAt":1011},"next-cache-components-adoption","enable and migrate to Next.js Cache Components","Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the `cacheComponents` flag, work through a flood of blocking-prerender \u002F instant validation errors, run the `cache-components-instant-false` codemod, or decide between opting routes out with `export const instant = false` and fixing them in place.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[996,999,1002,1005,1008],{"name":997,"slug":998,"type":13},"Caching","caching",{"name":1000,"slug":1001,"type":13},"Frontend","frontend",{"name":1003,"slug":1004,"type":13},"Migration","migration",{"name":1006,"slug":1007,"type":13},"Next.js","next-js",{"name":9,"slug":8,"type":13},141208,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fnext.js","2026-07-24T05:38:30.118542",{"slug":1013,"name":1013,"fn":1014,"description":1015,"org":1016,"tags":1017,"stars":1009,"repoUrl":1010,"updatedAt":1025},"next-cache-components-optimizer","optimize Next.js cache components","Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components \u002F PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next\u002Fplaywright instant() e2e and work it to green, one verified route at a time; the shipped test then guards against regression. Use when asked to make a route's navigation instant (its static shell commits immediately), fix a route whose static shell isn't prerendered\u002Fserved\u002Fprefetched, grow a route's static shell or fix its slow first paint, diagnose which Suspense boundary keeps a route out of its static shell, or write the instant() e2e guard for one. Requires Next.js 16.3+ with cacheComponents; directs an upgrade if older.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1018,1019,1020,1021,1024],{"name":997,"slug":998,"type":13},{"name":1000,"slug":1001,"type":13},{"name":1006,"slug":1007,"type":13},{"name":1022,"slug":1023,"type":13},"Performance","performance",{"name":9,"slug":8,"type":13},"2026-07-30T05:31:10.674078",{"slug":1027,"name":1027,"fn":1028,"description":1029,"org":1030,"tags":1031,"stars":1009,"repoUrl":1010,"updatedAt":1044},"next-dev-loop","verify Next.js runtime behavior","Verify Next.js runtime behavior after editing app code. Use this skill to confirm a change actually works in a running app — not just that it compiles or type-checks. Combines \u002F_next\u002Fmcp (Next.js's view) with agent-browser (the browser's view). Requires a running `next dev`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1032,1035,1036,1039,1040,1041],{"name":1033,"slug":1034,"type":13},"Debugging","debugging",{"name":1000,"slug":1001,"type":13},{"name":1037,"slug":1038,"type":13},"Local Development","local-development",{"name":1006,"slug":1007,"type":13},{"name":9,"slug":8,"type":13},{"name":1042,"slug":1043,"type":13},"Web Development","web-development","2026-05-22T06:45:28.627735",{"slug":1046,"name":1046,"fn":1047,"description":1048,"org":1049,"tags":1050,"stars":1009,"repoUrl":1010,"updatedAt":1055},"next-partial-prefetching-adoption","adopt Partial Prefetching in Next.js apps","Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the `partialPrefetching` flag, opt routes in with `export const prefetch = 'partial'`, audit `\u003CLink prefetch={true}>` calls, or resolve the link-prefetch-partial and instant-shell-url-data insights.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1051,1052,1053,1054],{"name":1000,"slug":1001,"type":13},{"name":1006,"slug":1007,"type":13},{"name":1022,"slug":1023,"type":13},{"name":9,"slug":8,"type":13},"2026-07-30T05:31:11.591864",{"slug":1057,"name":1057,"fn":1058,"description":1059,"org":1060,"tags":1061,"stars":1068,"repoUrl":1069,"updatedAt":1070},"turborepo","manage monorepos with Turborepo","Turborepo monorepo build system guidance. Triggers on: turbo.json, task pipelines,\ndependsOn, caching, remote cache, the \"turbo\" CLI, --filter, --affected, CI optimization, environment\nvariables, internal packages, monorepo structure\u002Fbest practices, and boundaries.\n\nUse when user: configures tasks\u002Fworkflows\u002Fpipelines, creates packages, sets up\nmonorepo, shares code between apps, runs changed\u002Faffected packages, debugs cache,\nor has apps\u002Fpackages directories.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1062,1065,1066],{"name":1063,"slug":1064,"type":13},"CI\u002FCD","ci-cd",{"name":1022,"slug":1023,"type":13},{"name":1067,"slug":1057,"type":13},"Turborepo",30809,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fturborepo","2026-07-30T05:32:14.920116",{"slug":1072,"name":1072,"fn":1073,"description":1074,"org":1075,"tags":1076,"stars":1084,"repoUrl":1085,"updatedAt":1086},"add-function-examples","add AI function examples for testing","Guide for adding new AI function examples, for testing specific features against the actual provider APIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1077,1080,1083],{"name":1078,"slug":1079,"type":13},"AI SDK","ai-sdk",{"name":1081,"slug":1082,"type":13},"Testing","testing",{"name":9,"slug":8,"type":13},25670,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fai","2026-04-06T18:55:51.318866",{"slug":1088,"name":1088,"fn":1089,"description":1090,"org":1091,"tags":1092,"stars":1084,"repoUrl":1085,"updatedAt":1104},"add-harness-package","add AI SDK harness packages","Guide for adding new AI SDK harness packages. Use when creating a new @ai-sdk\u002Fharness-\u003Cname> package that adapts a coding-agent runtime to HarnessV1.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1093,1096,1097,1100,1103],{"name":1094,"slug":1095,"type":13},"Agents","agents",{"name":1078,"slug":1079,"type":13},{"name":1098,"slug":1099,"type":13},"Harness","harness",{"name":1101,"slug":1102,"type":13},"SDK","sdk",{"name":9,"slug":8,"type":13},"2026-06-18T08:29:19.858737",{"slug":1106,"name":1106,"fn":1107,"description":1108,"org":1109,"tags":1110,"stars":1084,"repoUrl":1085,"updatedAt":1116},"add-provider-package","add new provider packages to AI SDK","Guide for adding new AI provider packages to the AI SDK. Use when creating a new @ai-sdk\u002F\u003Cprovider> package to integrate an AI service into the SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1111,1112,1115],{"name":1078,"slug":1079,"type":13},{"name":1113,"slug":1114,"type":13},"API Development","api-development",{"name":9,"slug":8,"type":13},"2026-04-06T18:55:47.45549",{"slug":1118,"name":1118,"fn":1119,"description":1120,"org":1121,"tags":1122,"stars":1084,"repoUrl":1085,"updatedAt":1135},"adr-skill","create and maintain architecture decision records","Create and maintain Architecture Decision Records (ADRs) optimized for agentic coding workflows. Use when you need to propose, write, update, accept\u002Freject, deprecate, or supersede an ADR; bootstrap an adr folder and index; consult existing ADRs before implementing changes; or enforce ADR conventions. This skill uses Socratic questioning to capture intent before drafting, and validates output against an agent-readiness checklist.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1123,1126,1129,1132],{"name":1124,"slug":1125,"type":13},"ADR","adr",{"name":1127,"slug":1128,"type":13},"Architecture","architecture",{"name":1130,"slug":1131,"type":13},"Documentation","documentation",{"name":1133,"slug":1134,"type":13},"Engineering","engineering","2026-04-06T18:55:50.043694",{"slug":1079,"name":1079,"fn":1137,"description":1138,"org":1139,"tags":1140,"stars":1084,"repoUrl":1085,"updatedAt":1147},"build AI features with Vercel AI SDK","Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: \"AI SDK\", \"Vercel AI SDK\", \"generateText\", \"streamText\", \"add AI to my app\", \"build an agent\", \"tool calling\", \"structured output\", \"useChat\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1141,1142,1143,1146],{"name":1094,"slug":1095,"type":13},{"name":1078,"slug":1079,"type":13},{"name":1144,"slug":1145,"type":13},"LLM","llm",{"name":9,"slug":8,"type":13},"2026-04-06T18:55:48.739463",{"slug":1149,"name":1149,"fn":1150,"description":1151,"org":1152,"tags":1153,"stars":1084,"repoUrl":1085,"updatedAt":1157},"capture-api-response-test-fixture","capture API response test fixtures","Capture API response test fixture.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1154,1155,1156],{"name":1113,"slug":1114,"type":13},{"name":1081,"slug":1082,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:55:56.374433",{"slug":1159,"name":1159,"fn":1160,"description":1161,"org":1162,"tags":1163,"stars":1084,"repoUrl":1085,"updatedAt":1167},"develop-ai-functions-example","develop AI SDK function examples","Develop examples for AI SDK functions. Use when creating, running, or modifying examples under examples\u002Fai-functions\u002Fsrc to validate provider support, demonstrate features, or create test fixtures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1164,1165,1166],{"name":1078,"slug":1079,"type":13},{"name":1081,"slug":1082,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:55:55.088956",68,{"items":1170,"total":1267},[1171,1186,1204,1217,1230,1243,1256],{"slug":1172,"name":1172,"fn":1173,"description":1174,"org":1175,"tags":1176,"stars":20,"repoUrl":21,"updatedAt":1185},"ai-gateway","configure and manage 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},[1177,1180,1183,1184],{"name":1178,"slug":1179,"type":13},"AI Infrastructure","ai-infrastructure",{"name":1181,"slug":1182,"type":13},"Cost Optimization","cost-optimization",{"name":1144,"slug":1145,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:56:06.57787",{"slug":1187,"name":1187,"fn":1188,"description":1189,"org":1190,"tags":1191,"stars":20,"repoUrl":21,"updatedAt":1203},"auth","integrate authentication in Next.js apps","Authentication integration guidance — Clerk (native Vercel Marketplace), Descope, and Auth0 setup for Next.js applications. Covers middleware auth patterns, sign-in\u002Fsign-up flows, and Marketplace provisioning. Use when implementing user authentication.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1192,1195,1198,1199,1202],{"name":1193,"slug":1194,"type":13},"Auth0","auth0",{"name":1196,"slug":1197,"type":13},"Authentication","authentication",{"name":1006,"slug":1007,"type":13},{"name":1200,"slug":1201,"type":13},"Security","security",{"name":9,"slug":8,"type":13},"2026-04-06T18:56:17.050565",{"slug":1205,"name":1205,"fn":1206,"description":1207,"org":1208,"tags":1209,"stars":20,"repoUrl":21,"updatedAt":1216},"bootstrap","bootstrap Vercel-linked repositories","Project bootstrapping orchestrator for repos that depend on Vercel-linked resources (databases, auth, and managed integrations). Use when setting up or repairing a repository so linking, environment provisioning, env pulls, and first-run db\u002Fdev commands happen in the correct safe order.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1210,1213,1214,1215],{"name":1211,"slug":1212,"type":13},"Configuration","configuration",{"name":18,"slug":19,"type":13},{"name":1037,"slug":1038,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:56:18.297868",{"slug":1218,"name":1218,"fn":1219,"description":1220,"org":1221,"tags":1222,"stars":20,"repoUrl":21,"updatedAt":1229},"cdn-caching","debug Vercel CDN caching behavior","Debug Vercel CDN caching — cache hit rate, stale content, revalidation behavior, ISR + PPR, per-request cache reasons (cacheReason) and PPR state (ppr_state), and costs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1223,1224,1227,1228],{"name":997,"slug":998,"type":13},{"name":1225,"slug":1226,"type":13},"Observability","observability",{"name":1022,"slug":1023,"type":13},{"name":9,"slug":8,"type":13},"2026-07-30T05:31:34.628944",{"slug":1231,"name":1231,"fn":1232,"description":1233,"org":1234,"tags":1235,"stars":20,"repoUrl":21,"updatedAt":1242},"chat-sdk","build multi-platform chatbots with Vercel","Vercel Chat SDK expert guidance. Use when building multi-platform chat bots — Slack, Telegram, Microsoft Teams, Discord, Google Chat, GitHub, Linear — with a single codebase. Covers the Chat class, adapters, threads, messages, cards, modals, streaming, state management, and webhook setup.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1236,1237,1240,1241],{"name":1094,"slug":1095,"type":13},{"name":1238,"slug":1239,"type":13},"Messaging","messaging",{"name":1101,"slug":1102,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:56:26.921901",{"slug":1244,"name":1244,"fn":1245,"description":1246,"org":1247,"tags":1248,"stars":20,"repoUrl":21,"updatedAt":1255},"deployments-cicd","manage Vercel deployments and CI\u002FCD","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},[1249,1250,1251,1254],{"name":1063,"slug":1064,"type":13},{"name":18,"slug":19,"type":13},{"name":1252,"slug":1253,"type":13},"Operations","operations",{"name":9,"slug":8,"type":13},"2026-04-06T18:56:22.054263",{"slug":1257,"name":1257,"fn":1258,"description":1259,"org":1260,"tags":1261,"stars":20,"repoUrl":21,"updatedAt":1266},"env-vars","manage Vercel environment variables","Vercel environment variable expert guidance. Use when working with .env files, vercel env commands, OIDC tokens, or managing environment-specific configuration.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1262,1263,1264,1265],{"name":1211,"slug":1212,"type":13},{"name":1252,"slug":1253,"type":13},{"name":1200,"slug":1201,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:56:28.150777",29]