[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-protected-vercel-deployments":3,"mdc--co249r-key":36,"related-org-vercel-labs-protected-vercel-deployments":1120,"related-repo-vercel-labs-protected-vercel-deployments":1279},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"protected-vercel-deployments","access protected Vercel deployments","Access and test Vercel deployments protected by Vercel Authentication, SSO, or Deployment Protection with agent-browser. Use when a preview or production URL redirects to a Vercel login page, returns a protection 401 or 403, or needs short-lived Trusted Sources OIDC authentication instead of a static bypass secret or public exception.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Security","security","tag",{"name":17,"slug":18,"type":15},"Vercel","vercel",{"name":20,"slug":21,"type":15},"Auth","auth",{"name":23,"slug":24,"type":15},"Deployment","deployment",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-08-24T03:57:05.330407",null,2480,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"Browser automation CLI for AI agents","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser\u002Ftree\u002FHEAD\u002Fskill-data\u002Fprotected-vercel-deployments","---\nname: protected-vercel-deployments\ndescription: Access and test Vercel deployments protected by Vercel Authentication, SSO, or Deployment Protection with agent-browser. Use when a preview or production URL redirects to a Vercel login page, returns a protection 401 or 403, or needs short-lived Trusted Sources OIDC authentication instead of a static bypass secret or public exception.\nallowed-tools: Bash(agent-browser:*), Bash(npx agent-browser:*), Bash(vc:*), Bash(vercel:*)\n---\n\n# Protected Vercel deployments\n\nUse the caller's existing Vercel identity and a short-lived OIDC token. Do not disable Deployment Protection, make the deployment public, or ask for a static bypass secret first.\n\n## Same-project preview\n\nA local development token for the target project can access that project's protected Preview deployments through the default Trusted Sources self-access rule. No Trusted Sources configuration is normally required.\n\nConfirm the local identity and Vercel CLI version:\n\n```bash\nvc whoami\nvc --version\n```\n\nRequire Vercel CLI `53.3.0` or newer before running `vc project token`. Versions `50.25.0` through `53.2.x` write the token to stderr, so command substitution captures nothing and the credential can appear in logs. If the installed version is older, stop and ask the user to upgrade it. Do not attempt to capture or recover the token from stderr.\n\nSet the target project and scope explicitly. If they cannot be inferred safely, ask the user. In a directory whose existing `.vercel\u002Fproject.json` link has been verified against the target, `vc project token` without a project name is also valid. Do not run `vc link` merely to get an OIDC token: current Vercel CLI versions also pull development variables into `.env.local` when linking.\n\nCreate a named browser session, mint a development OIDC token with the Vercel CLI, then inject it without printing or persisting it:\n\n```bash\nexport AGENT_BROWSER_SESSION=\"$(agent-browser session id --scope worktree --prefix vercel-preview)\"\nexport VERCEL_PREVIEW_URL=\"https:\u002F\u002Fmy-app.vercel.app\"\nexport VERCEL_PROJECT=\"my-app\"\nexport VERCEL_SCOPE=\"my-team\"\n\n(\n  TOKEN=\"$(vc project token \"$VERCEL_PROJECT\" --scope \"$VERCEL_SCOPE\")\"\n  test -n \"$TOKEN\"\n  agent-browser open \"$VERCEL_PREVIEW_URL\" --headers \\\n    \"{\\\"x-vercel-trusted-oidc-idp-token\\\":\\\"$TOKEN\\\"}\"\n)\n\nagent-browser snapshot -i\n```\n\nContinue the normal workflow in that same session. The header is scoped to the target origin and applies to the document, scripts, styles, fonts, and in-page requests. If the browser session is closed or restarted, repeat the authenticated `open` command.\n\nNever print the token, paste it into source, or save it in an environment file.\n\n## Other environments and callers\n\nTrusted Sources configuration is needed when:\n\n- a local development token must reach a protected Production deployment;\n- the caller belongs to another Vercel project or team;\n- the target project's self-access rules were customized; or\n- Vercel returns `TRUSTED_SOURCES_ENVIRONMENT_MISMATCH`.\n\nThere is no supported Vercel CLI or public REST API for editing Trusted Sources rules. An authorized human must open the target project's **Settings → Deployment Protection → Trusted Sources** and add only the required caller and environment mapping. A local token has the `development` environment, so protected Production access requires `development` to `production`.\n\nStop and hand off the exact rule to the human. Do not use browser automation to change access control, and do not broaden unrelated environment mappings. Retry the authenticated `open` after the human confirms the rule is saved.\n\n## Human intervention boundaries\n\nThe same-project development to Preview path should run without human intervention when the Vercel CLI is already authenticated and the target project and scope are known. A human is needed only when:\n\n- the Vercel CLI has no authenticated identity and no existing `VERCEL_TOKEN`; interactive `vc login` requires the user;\n- the installed Vercel CLI is older than `53.3.0` and must be upgraded before token minting;\n- the correct target project or scope cannot be inferred safely for token minting;\n- a Trusted Sources rule must be added or changed; the dashboard is the only supported management surface, and this changes access control;\n- Secure Backend Access with OIDC Federation was disabled on the calling project and must be re-enabled in **Settings → Security**; or\n- the static-secret fallback must be enabled or rotated and the agent needs explicit authorization for that access-control change. After approval, the agent can use `vc project protection` instead of requiring dashboard interaction.\n\nThe agent can diagnose each case and state the exact action required, then continue after the user confirms completion.\n\n## Use the correct header\n\nSend the Vercel-issued token as:\n\n```text\nx-vercel-trusted-oidc-idp-token: \u003CVERCEL_OIDC_TOKEN>\n```\n\nDo not substitute `x-vercel-oidc-token`. That header carries workload identity into a Vercel Function; it does not authenticate an inbound request through Deployment Protection.\n\n## Diagnose failures\n\n- Redirect to `vercel.com\u002Flogin`: Deployment Protection did not accept the request.\n- `TRUSTED_SOURCES_ENVIRONMENT_MISMATCH`: the token is valid, but its caller environment cannot reach the target environment.\n- Application `401` or `403` after protection passes: debug the application's own authentication separately.\n- Application `404` on a deliberately missing route: the request passed Deployment Protection and reached the application.\n\n## Static-secret fallback\n\nUse Protection Bypass for Automation only when OIDC is not viable or the tool cannot send the Trusted Sources header. Enabling or rotating it changes access control, so obtain explicit authorization first. Create a dedicated secret so it can be rotated independently, keep it in an environment variable, and pass it as a header:\n\n```bash\nvc project protection enable \u003Cproject> --protection-bypass \\\n  --protection-bypass-secret \"$VERCEL_AUTOMATION_BYPASS_SECRET\"\n\nagent-browser open \"$VERCEL_PREVIEW_URL\" --headers \\\n  \"{\\\"x-vercel-protection-bypass\\\":\\\"$VERCEL_AUTOMATION_BYPASS_SECRET\\\",\\\"x-vercel-set-bypass-cookie\\\":\\\"true\\\"}\"\n```\n\nThe cookie directive creates a reusable `_vercel_jwt` cookie. Treat saved browser state containing that cookie as a credential.\n\n## Avoid dead ends\n\n- There is no `vercel share` CLI command. Shareable Links are intended for people and are not the automation path.\n- `vercel curl` is useful for HTTP requests, but it cannot render and interact with a page.\n- Deployment Protection Exceptions make the domain public. Do not use them merely to unblock an agent.\n- Do not expose OIDC tokens, bypass secrets, authenticated URLs, or saved state in logs, screenshots, source files, or user-facing output.\n",{"data":37,"body":39},{"name":4,"description":6,"allowed-tools":38},"Bash(agent-browser:*), Bash(npx agent-browser:*), Bash(vc:*), Bash(vercel:*)",{"type":40,"children":41},"root",[42,50,56,63,68,73,116,153,189,194,558,571,576,582,587,620,655,667,673,678,749,754,760,765,775,788,794,853,859,864,1058,1071,1077,1114],{"type":43,"tag":44,"props":45,"children":46},"element","h1",{"id":4},[47],{"type":48,"value":49},"text","Protected Vercel deployments",{"type":43,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Use the caller's existing Vercel identity and a short-lived OIDC token. Do not disable Deployment Protection, make the deployment public, or ask for a static bypass secret first.",{"type":43,"tag":57,"props":58,"children":60},"h2",{"id":59},"same-project-preview",[61],{"type":48,"value":62},"Same-project preview",{"type":43,"tag":51,"props":64,"children":65},{},[66],{"type":48,"value":67},"A local development token for the target project can access that project's protected Preview deployments through the default Trusted Sources self-access rule. No Trusted Sources configuration is normally required.",{"type":43,"tag":51,"props":69,"children":70},{},[71],{"type":48,"value":72},"Confirm the local identity and Vercel CLI version:",{"type":43,"tag":74,"props":75,"children":80},"pre",{"className":76,"code":77,"language":78,"meta":79,"style":79},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","vc whoami\nvc --version\n","bash","",[81],{"type":43,"tag":82,"props":83,"children":84},"code",{"__ignoreMap":79},[85,103],{"type":43,"tag":86,"props":87,"children":90},"span",{"class":88,"line":89},"line",1,[91,97],{"type":43,"tag":86,"props":92,"children":94},{"style":93},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[95],{"type":48,"value":96},"vc",{"type":43,"tag":86,"props":98,"children":100},{"style":99},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[101],{"type":48,"value":102}," whoami\n",{"type":43,"tag":86,"props":104,"children":106},{"class":88,"line":105},2,[107,111],{"type":43,"tag":86,"props":108,"children":109},{"style":93},[110],{"type":48,"value":96},{"type":43,"tag":86,"props":112,"children":113},{"style":99},[114],{"type":48,"value":115}," --version\n",{"type":43,"tag":51,"props":117,"children":118},{},[119,121,127,129,135,137,143,145,151],{"type":48,"value":120},"Require Vercel CLI ",{"type":43,"tag":82,"props":122,"children":124},{"className":123},[],[125],{"type":48,"value":126},"53.3.0",{"type":48,"value":128}," or newer before running ",{"type":43,"tag":82,"props":130,"children":132},{"className":131},[],[133],{"type":48,"value":134},"vc project token",{"type":48,"value":136},". Versions ",{"type":43,"tag":82,"props":138,"children":140},{"className":139},[],[141],{"type":48,"value":142},"50.25.0",{"type":48,"value":144}," through ",{"type":43,"tag":82,"props":146,"children":148},{"className":147},[],[149],{"type":48,"value":150},"53.2.x",{"type":48,"value":152}," write the token to stderr, so command substitution captures nothing and the credential can appear in logs. If the installed version is older, stop and ask the user to upgrade it. Do not attempt to capture or recover the token from stderr.",{"type":43,"tag":51,"props":154,"children":155},{},[156,158,164,166,171,173,179,181,187],{"type":48,"value":157},"Set the target project and scope explicitly. If they cannot be inferred safely, ask the user. In a directory whose existing ",{"type":43,"tag":82,"props":159,"children":161},{"className":160},[],[162],{"type":48,"value":163},".vercel\u002Fproject.json",{"type":48,"value":165}," link has been verified against the target, ",{"type":43,"tag":82,"props":167,"children":169},{"className":168},[],[170],{"type":48,"value":134},{"type":48,"value":172}," without a project name is also valid. Do not run ",{"type":43,"tag":82,"props":174,"children":176},{"className":175},[],[177],{"type":48,"value":178},"vc link",{"type":48,"value":180}," merely to get an OIDC token: current Vercel CLI versions also pull development variables into ",{"type":43,"tag":82,"props":182,"children":184},{"className":183},[],[185],{"type":48,"value":186},".env.local",{"type":48,"value":188}," when linking.",{"type":43,"tag":51,"props":190,"children":191},{},[192],{"type":48,"value":193},"Create a named browser session, mint a development OIDC token with the Vercel CLI, then inject it without printing or persisting it:",{"type":43,"tag":74,"props":195,"children":197},{"className":76,"code":196,"language":78,"meta":79,"style":79},"export AGENT_BROWSER_SESSION=\"$(agent-browser session id --scope worktree --prefix vercel-preview)\"\nexport VERCEL_PREVIEW_URL=\"https:\u002F\u002Fmy-app.vercel.app\"\nexport VERCEL_PROJECT=\"my-app\"\nexport VERCEL_SCOPE=\"my-team\"\n\n(\n  TOKEN=\"$(vc project token \"$VERCEL_PROJECT\" --scope \"$VERCEL_SCOPE\")\"\n  test -n \"$TOKEN\"\n  agent-browser open \"$VERCEL_PREVIEW_URL\" --headers \\\n    \"{\\\"x-vercel-trusted-oidc-idp-token\\\":\\\"$TOKEN\\\"}\"\n)\n\nagent-browser snapshot -i\n",[198],{"type":43,"tag":82,"props":199,"children":200},{"__ignoreMap":79},[201,242,273,303,333,343,352,410,439,476,523,532,540],{"type":43,"tag":86,"props":202,"children":203},{"class":88,"line":89},[204,210,216,222,227,232,237],{"type":43,"tag":86,"props":205,"children":207},{"style":206},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[208],{"type":48,"value":209},"export",{"type":43,"tag":86,"props":211,"children":213},{"style":212},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[214],{"type":48,"value":215}," AGENT_BROWSER_SESSION",{"type":43,"tag":86,"props":217,"children":219},{"style":218},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[220],{"type":48,"value":221},"=",{"type":43,"tag":86,"props":223,"children":224},{"style":218},[225],{"type":48,"value":226},"\"$(",{"type":43,"tag":86,"props":228,"children":229},{"style":93},[230],{"type":48,"value":231},"agent-browser",{"type":43,"tag":86,"props":233,"children":234},{"style":99},[235],{"type":48,"value":236}," session id --scope worktree --prefix vercel-preview",{"type":43,"tag":86,"props":238,"children":239},{"style":218},[240],{"type":48,"value":241},")\"\n",{"type":43,"tag":86,"props":243,"children":244},{"class":88,"line":105},[245,249,254,258,263,268],{"type":43,"tag":86,"props":246,"children":247},{"style":206},[248],{"type":48,"value":209},{"type":43,"tag":86,"props":250,"children":251},{"style":212},[252],{"type":48,"value":253}," VERCEL_PREVIEW_URL",{"type":43,"tag":86,"props":255,"children":256},{"style":218},[257],{"type":48,"value":221},{"type":43,"tag":86,"props":259,"children":260},{"style":218},[261],{"type":48,"value":262},"\"",{"type":43,"tag":86,"props":264,"children":265},{"style":99},[266],{"type":48,"value":267},"https:\u002F\u002Fmy-app.vercel.app",{"type":43,"tag":86,"props":269,"children":270},{"style":218},[271],{"type":48,"value":272},"\"\n",{"type":43,"tag":86,"props":274,"children":276},{"class":88,"line":275},3,[277,281,286,290,294,299],{"type":43,"tag":86,"props":278,"children":279},{"style":206},[280],{"type":48,"value":209},{"type":43,"tag":86,"props":282,"children":283},{"style":212},[284],{"type":48,"value":285}," VERCEL_PROJECT",{"type":43,"tag":86,"props":287,"children":288},{"style":218},[289],{"type":48,"value":221},{"type":43,"tag":86,"props":291,"children":292},{"style":218},[293],{"type":48,"value":262},{"type":43,"tag":86,"props":295,"children":296},{"style":99},[297],{"type":48,"value":298},"my-app",{"type":43,"tag":86,"props":300,"children":301},{"style":218},[302],{"type":48,"value":272},{"type":43,"tag":86,"props":304,"children":306},{"class":88,"line":305},4,[307,311,316,320,324,329],{"type":43,"tag":86,"props":308,"children":309},{"style":206},[310],{"type":48,"value":209},{"type":43,"tag":86,"props":312,"children":313},{"style":212},[314],{"type":48,"value":315}," VERCEL_SCOPE",{"type":43,"tag":86,"props":317,"children":318},{"style":218},[319],{"type":48,"value":221},{"type":43,"tag":86,"props":321,"children":322},{"style":218},[323],{"type":48,"value":262},{"type":43,"tag":86,"props":325,"children":326},{"style":99},[327],{"type":48,"value":328},"my-team",{"type":43,"tag":86,"props":330,"children":331},{"style":218},[332],{"type":48,"value":272},{"type":43,"tag":86,"props":334,"children":336},{"class":88,"line":335},5,[337],{"type":43,"tag":86,"props":338,"children":340},{"emptyLinePlaceholder":339},true,[341],{"type":48,"value":342},"\n",{"type":43,"tag":86,"props":344,"children":346},{"class":88,"line":345},6,[347],{"type":43,"tag":86,"props":348,"children":349},{"style":218},[350],{"type":48,"value":351},"(\n",{"type":43,"tag":86,"props":353,"children":355},{"class":88,"line":354},7,[356,361,365,369,373,378,382,387,391,396,400,405],{"type":43,"tag":86,"props":357,"children":358},{"style":212},[359],{"type":48,"value":360},"  TOKEN",{"type":43,"tag":86,"props":362,"children":363},{"style":218},[364],{"type":48,"value":221},{"type":43,"tag":86,"props":366,"children":367},{"style":218},[368],{"type":48,"value":226},{"type":43,"tag":86,"props":370,"children":371},{"style":93},[372],{"type":48,"value":96},{"type":43,"tag":86,"props":374,"children":375},{"style":99},[376],{"type":48,"value":377}," project token ",{"type":43,"tag":86,"props":379,"children":380},{"style":218},[381],{"type":48,"value":262},{"type":43,"tag":86,"props":383,"children":384},{"style":212},[385],{"type":48,"value":386},"$VERCEL_PROJECT",{"type":43,"tag":86,"props":388,"children":389},{"style":218},[390],{"type":48,"value":262},{"type":43,"tag":86,"props":392,"children":393},{"style":99},[394],{"type":48,"value":395}," --scope ",{"type":43,"tag":86,"props":397,"children":398},{"style":218},[399],{"type":48,"value":262},{"type":43,"tag":86,"props":401,"children":402},{"style":212},[403],{"type":48,"value":404},"$VERCEL_SCOPE",{"type":43,"tag":86,"props":406,"children":407},{"style":218},[408],{"type":48,"value":409},"\")\"\n",{"type":43,"tag":86,"props":411,"children":413},{"class":88,"line":412},8,[414,420,425,430,435],{"type":43,"tag":86,"props":415,"children":417},{"style":416},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[418],{"type":48,"value":419},"  test",{"type":43,"tag":86,"props":421,"children":422},{"style":99},[423],{"type":48,"value":424}," -n",{"type":43,"tag":86,"props":426,"children":427},{"style":218},[428],{"type":48,"value":429}," \"",{"type":43,"tag":86,"props":431,"children":432},{"style":212},[433],{"type":48,"value":434},"$TOKEN",{"type":43,"tag":86,"props":436,"children":437},{"style":218},[438],{"type":48,"value":272},{"type":43,"tag":86,"props":440,"children":442},{"class":88,"line":441},9,[443,448,453,457,462,466,471],{"type":43,"tag":86,"props":444,"children":445},{"style":93},[446],{"type":48,"value":447},"  agent-browser",{"type":43,"tag":86,"props":449,"children":450},{"style":99},[451],{"type":48,"value":452}," open",{"type":43,"tag":86,"props":454,"children":455},{"style":218},[456],{"type":48,"value":429},{"type":43,"tag":86,"props":458,"children":459},{"style":212},[460],{"type":48,"value":461},"$VERCEL_PREVIEW_URL",{"type":43,"tag":86,"props":463,"children":464},{"style":218},[465],{"type":48,"value":262},{"type":43,"tag":86,"props":467,"children":468},{"style":99},[469],{"type":48,"value":470}," --headers",{"type":43,"tag":86,"props":472,"children":473},{"style":212},[474],{"type":48,"value":475}," \\\n",{"type":43,"tag":86,"props":477,"children":479},{"class":88,"line":478},10,[480,485,490,495,500,504,509,514,519],{"type":43,"tag":86,"props":481,"children":482},{"style":218},[483],{"type":48,"value":484},"    \"",{"type":43,"tag":86,"props":486,"children":487},{"style":99},[488],{"type":48,"value":489},"{",{"type":43,"tag":86,"props":491,"children":492},{"style":212},[493],{"type":48,"value":494},"\\\"",{"type":43,"tag":86,"props":496,"children":497},{"style":99},[498],{"type":48,"value":499},"x-vercel-trusted-oidc-idp-token",{"type":43,"tag":86,"props":501,"children":502},{"style":212},[503],{"type":48,"value":494},{"type":43,"tag":86,"props":505,"children":506},{"style":99},[507],{"type":48,"value":508},":",{"type":43,"tag":86,"props":510,"children":511},{"style":212},[512],{"type":48,"value":513},"\\\"$TOKEN\\\"",{"type":43,"tag":86,"props":515,"children":516},{"style":99},[517],{"type":48,"value":518},"}",{"type":43,"tag":86,"props":520,"children":521},{"style":218},[522],{"type":48,"value":272},{"type":43,"tag":86,"props":524,"children":526},{"class":88,"line":525},11,[527],{"type":43,"tag":86,"props":528,"children":529},{"style":218},[530],{"type":48,"value":531},")\n",{"type":43,"tag":86,"props":533,"children":535},{"class":88,"line":534},12,[536],{"type":43,"tag":86,"props":537,"children":538},{"emptyLinePlaceholder":339},[539],{"type":48,"value":342},{"type":43,"tag":86,"props":541,"children":543},{"class":88,"line":542},13,[544,548,553],{"type":43,"tag":86,"props":545,"children":546},{"style":93},[547],{"type":48,"value":231},{"type":43,"tag":86,"props":549,"children":550},{"style":99},[551],{"type":48,"value":552}," snapshot",{"type":43,"tag":86,"props":554,"children":555},{"style":99},[556],{"type":48,"value":557}," -i\n",{"type":43,"tag":51,"props":559,"children":560},{},[561,563,569],{"type":48,"value":562},"Continue the normal workflow in that same session. The header is scoped to the target origin and applies to the document, scripts, styles, fonts, and in-page requests. If the browser session is closed or restarted, repeat the authenticated ",{"type":43,"tag":82,"props":564,"children":566},{"className":565},[],[567],{"type":48,"value":568},"open",{"type":48,"value":570}," command.",{"type":43,"tag":51,"props":572,"children":573},{},[574],{"type":48,"value":575},"Never print the token, paste it into source, or save it in an environment file.",{"type":43,"tag":57,"props":577,"children":579},{"id":578},"other-environments-and-callers",[580],{"type":48,"value":581},"Other environments and callers",{"type":43,"tag":51,"props":583,"children":584},{},[585],{"type":48,"value":586},"Trusted Sources configuration is needed when:",{"type":43,"tag":588,"props":589,"children":590},"ul",{},[591,597,602,607],{"type":43,"tag":592,"props":593,"children":594},"li",{},[595],{"type":48,"value":596},"a local development token must reach a protected Production deployment;",{"type":43,"tag":592,"props":598,"children":599},{},[600],{"type":48,"value":601},"the caller belongs to another Vercel project or team;",{"type":43,"tag":592,"props":603,"children":604},{},[605],{"type":48,"value":606},"the target project's self-access rules were customized; or",{"type":43,"tag":592,"props":608,"children":609},{},[610,612,618],{"type":48,"value":611},"Vercel returns ",{"type":43,"tag":82,"props":613,"children":615},{"className":614},[],[616],{"type":48,"value":617},"TRUSTED_SOURCES_ENVIRONMENT_MISMATCH",{"type":48,"value":619},".",{"type":43,"tag":51,"props":621,"children":622},{},[623,625,631,633,639,641,646,648,654],{"type":48,"value":624},"There is no supported Vercel CLI or public REST API for editing Trusted Sources rules. An authorized human must open the target project's ",{"type":43,"tag":626,"props":627,"children":628},"strong",{},[629],{"type":48,"value":630},"Settings → Deployment Protection → Trusted Sources",{"type":48,"value":632}," and add only the required caller and environment mapping. A local token has the ",{"type":43,"tag":82,"props":634,"children":636},{"className":635},[],[637],{"type":48,"value":638},"development",{"type":48,"value":640}," environment, so protected Production access requires ",{"type":43,"tag":82,"props":642,"children":644},{"className":643},[],[645],{"type":48,"value":638},{"type":48,"value":647}," to ",{"type":43,"tag":82,"props":649,"children":651},{"className":650},[],[652],{"type":48,"value":653},"production",{"type":48,"value":619},{"type":43,"tag":51,"props":656,"children":657},{},[658,660,665],{"type":48,"value":659},"Stop and hand off the exact rule to the human. Do not use browser automation to change access control, and do not broaden unrelated environment mappings. Retry the authenticated ",{"type":43,"tag":82,"props":661,"children":663},{"className":662},[],[664],{"type":48,"value":568},{"type":48,"value":666}," after the human confirms the rule is saved.",{"type":43,"tag":57,"props":668,"children":670},{"id":669},"human-intervention-boundaries",[671],{"type":48,"value":672},"Human intervention boundaries",{"type":43,"tag":51,"props":674,"children":675},{},[676],{"type":48,"value":677},"The same-project development to Preview path should run without human intervention when the Vercel CLI is already authenticated and the target project and scope are known. A human is needed only when:",{"type":43,"tag":588,"props":679,"children":680},{},[681,702,714,719,724,736],{"type":43,"tag":592,"props":682,"children":683},{},[684,686,692,694,700],{"type":48,"value":685},"the Vercel CLI has no authenticated identity and no existing ",{"type":43,"tag":82,"props":687,"children":689},{"className":688},[],[690],{"type":48,"value":691},"VERCEL_TOKEN",{"type":48,"value":693},"; interactive ",{"type":43,"tag":82,"props":695,"children":697},{"className":696},[],[698],{"type":48,"value":699},"vc login",{"type":48,"value":701}," requires the user;",{"type":43,"tag":592,"props":703,"children":704},{},[705,707,712],{"type":48,"value":706},"the installed Vercel CLI is older than ",{"type":43,"tag":82,"props":708,"children":710},{"className":709},[],[711],{"type":48,"value":126},{"type":48,"value":713}," and must be upgraded before token minting;",{"type":43,"tag":592,"props":715,"children":716},{},[717],{"type":48,"value":718},"the correct target project or scope cannot be inferred safely for token minting;",{"type":43,"tag":592,"props":720,"children":721},{},[722],{"type":48,"value":723},"a Trusted Sources rule must be added or changed; the dashboard is the only supported management surface, and this changes access control;",{"type":43,"tag":592,"props":725,"children":726},{},[727,729,734],{"type":48,"value":728},"Secure Backend Access with OIDC Federation was disabled on the calling project and must be re-enabled in ",{"type":43,"tag":626,"props":730,"children":731},{},[732],{"type":48,"value":733},"Settings → Security",{"type":48,"value":735},"; or",{"type":43,"tag":592,"props":737,"children":738},{},[739,741,747],{"type":48,"value":740},"the static-secret fallback must be enabled or rotated and the agent needs explicit authorization for that access-control change. After approval, the agent can use ",{"type":43,"tag":82,"props":742,"children":744},{"className":743},[],[745],{"type":48,"value":746},"vc project protection",{"type":48,"value":748}," instead of requiring dashboard interaction.",{"type":43,"tag":51,"props":750,"children":751},{},[752],{"type":48,"value":753},"The agent can diagnose each case and state the exact action required, then continue after the user confirms completion.",{"type":43,"tag":57,"props":755,"children":757},{"id":756},"use-the-correct-header",[758],{"type":48,"value":759},"Use the correct header",{"type":43,"tag":51,"props":761,"children":762},{},[763],{"type":48,"value":764},"Send the Vercel-issued token as:",{"type":43,"tag":74,"props":766,"children":770},{"className":767,"code":769,"language":48,"meta":79},[768],"language-text","x-vercel-trusted-oidc-idp-token: \u003CVERCEL_OIDC_TOKEN>\n",[771],{"type":43,"tag":82,"props":772,"children":773},{"__ignoreMap":79},[774],{"type":48,"value":769},{"type":43,"tag":51,"props":776,"children":777},{},[778,780,786],{"type":48,"value":779},"Do not substitute ",{"type":43,"tag":82,"props":781,"children":783},{"className":782},[],[784],{"type":48,"value":785},"x-vercel-oidc-token",{"type":48,"value":787},". That header carries workload identity into a Vercel Function; it does not authenticate an inbound request through Deployment Protection.",{"type":43,"tag":57,"props":789,"children":791},{"id":790},"diagnose-failures",[792],{"type":48,"value":793},"Diagnose failures",{"type":43,"tag":588,"props":795,"children":796},{},[797,810,820,841],{"type":43,"tag":592,"props":798,"children":799},{},[800,802,808],{"type":48,"value":801},"Redirect to ",{"type":43,"tag":82,"props":803,"children":805},{"className":804},[],[806],{"type":48,"value":807},"vercel.com\u002Flogin",{"type":48,"value":809},": Deployment Protection did not accept the request.",{"type":43,"tag":592,"props":811,"children":812},{},[813,818],{"type":43,"tag":82,"props":814,"children":816},{"className":815},[],[817],{"type":48,"value":617},{"type":48,"value":819},": the token is valid, but its caller environment cannot reach the target environment.",{"type":43,"tag":592,"props":821,"children":822},{},[823,825,831,833,839],{"type":48,"value":824},"Application ",{"type":43,"tag":82,"props":826,"children":828},{"className":827},[],[829],{"type":48,"value":830},"401",{"type":48,"value":832}," or ",{"type":43,"tag":82,"props":834,"children":836},{"className":835},[],[837],{"type":48,"value":838},"403",{"type":48,"value":840}," after protection passes: debug the application's own authentication separately.",{"type":43,"tag":592,"props":842,"children":843},{},[844,845,851],{"type":48,"value":824},{"type":43,"tag":82,"props":846,"children":848},{"className":847},[],[849],{"type":48,"value":850},"404",{"type":48,"value":852}," on a deliberately missing route: the request passed Deployment Protection and reached the application.",{"type":43,"tag":57,"props":854,"children":856},{"id":855},"static-secret-fallback",[857],{"type":48,"value":858},"Static-secret fallback",{"type":43,"tag":51,"props":860,"children":861},{},[862],{"type":48,"value":863},"Use Protection Bypass for Automation only when OIDC is not viable or the tool cannot send the Trusted Sources header. Enabling or rotating it changes access control, so obtain explicit authorization first. Create a dedicated secret so it can be rotated independently, keep it in an environment variable, and pass it as a header:",{"type":43,"tag":74,"props":865,"children":867},{"className":76,"code":866,"language":78,"meta":79,"style":79},"vc project protection enable \u003Cproject> --protection-bypass \\\n  --protection-bypass-secret \"$VERCEL_AUTOMATION_BYPASS_SECRET\"\n\nagent-browser open \"$VERCEL_PREVIEW_URL\" --headers \\\n  \"{\\\"x-vercel-protection-bypass\\\":\\\"$VERCEL_AUTOMATION_BYPASS_SECRET\\\",\\\"x-vercel-set-bypass-cookie\\\":\\\"true\\\"}\"\n",[868],{"type":43,"tag":82,"props":869,"children":870},{"__ignoreMap":79},[871,922,943,950,981],{"type":43,"tag":86,"props":872,"children":873},{"class":88,"line":89},[874,878,883,888,893,898,903,908,913,918],{"type":43,"tag":86,"props":875,"children":876},{"style":93},[877],{"type":48,"value":96},{"type":43,"tag":86,"props":879,"children":880},{"style":99},[881],{"type":48,"value":882}," project",{"type":43,"tag":86,"props":884,"children":885},{"style":99},[886],{"type":48,"value":887}," protection",{"type":43,"tag":86,"props":889,"children":890},{"style":99},[891],{"type":48,"value":892}," enable",{"type":43,"tag":86,"props":894,"children":895},{"style":218},[896],{"type":48,"value":897}," \u003C",{"type":43,"tag":86,"props":899,"children":900},{"style":99},[901],{"type":48,"value":902},"projec",{"type":43,"tag":86,"props":904,"children":905},{"style":212},[906],{"type":48,"value":907},"t",{"type":43,"tag":86,"props":909,"children":910},{"style":218},[911],{"type":48,"value":912},">",{"type":43,"tag":86,"props":914,"children":915},{"style":99},[916],{"type":48,"value":917}," --protection-bypass",{"type":43,"tag":86,"props":919,"children":920},{"style":212},[921],{"type":48,"value":475},{"type":43,"tag":86,"props":923,"children":924},{"class":88,"line":105},[925,930,934,939],{"type":43,"tag":86,"props":926,"children":927},{"style":99},[928],{"type":48,"value":929},"  --protection-bypass-secret",{"type":43,"tag":86,"props":931,"children":932},{"style":218},[933],{"type":48,"value":429},{"type":43,"tag":86,"props":935,"children":936},{"style":212},[937],{"type":48,"value":938},"$VERCEL_AUTOMATION_BYPASS_SECRET",{"type":43,"tag":86,"props":940,"children":941},{"style":218},[942],{"type":48,"value":272},{"type":43,"tag":86,"props":944,"children":945},{"class":88,"line":275},[946],{"type":43,"tag":86,"props":947,"children":948},{"emptyLinePlaceholder":339},[949],{"type":48,"value":342},{"type":43,"tag":86,"props":951,"children":952},{"class":88,"line":305},[953,957,961,965,969,973,977],{"type":43,"tag":86,"props":954,"children":955},{"style":93},[956],{"type":48,"value":231},{"type":43,"tag":86,"props":958,"children":959},{"style":99},[960],{"type":48,"value":452},{"type":43,"tag":86,"props":962,"children":963},{"style":218},[964],{"type":48,"value":429},{"type":43,"tag":86,"props":966,"children":967},{"style":212},[968],{"type":48,"value":461},{"type":43,"tag":86,"props":970,"children":971},{"style":218},[972],{"type":48,"value":262},{"type":43,"tag":86,"props":974,"children":975},{"style":99},[976],{"type":48,"value":470},{"type":43,"tag":86,"props":978,"children":979},{"style":212},[980],{"type":48,"value":475},{"type":43,"tag":86,"props":982,"children":983},{"class":88,"line":335},[984,989,993,997,1002,1006,1010,1015,1020,1024,1029,1033,1037,1041,1046,1050,1054],{"type":43,"tag":86,"props":985,"children":986},{"style":218},[987],{"type":48,"value":988},"  \"",{"type":43,"tag":86,"props":990,"children":991},{"style":99},[992],{"type":48,"value":489},{"type":43,"tag":86,"props":994,"children":995},{"style":212},[996],{"type":48,"value":494},{"type":43,"tag":86,"props":998,"children":999},{"style":99},[1000],{"type":48,"value":1001},"x-vercel-protection-bypass",{"type":43,"tag":86,"props":1003,"children":1004},{"style":212},[1005],{"type":48,"value":494},{"type":43,"tag":86,"props":1007,"children":1008},{"style":99},[1009],{"type":48,"value":508},{"type":43,"tag":86,"props":1011,"children":1012},{"style":212},[1013],{"type":48,"value":1014},"\\\"$VERCEL_AUTOMATION_BYPASS_SECRET\\\"",{"type":43,"tag":86,"props":1016,"children":1017},{"style":99},[1018],{"type":48,"value":1019},",",{"type":43,"tag":86,"props":1021,"children":1022},{"style":212},[1023],{"type":48,"value":494},{"type":43,"tag":86,"props":1025,"children":1026},{"style":99},[1027],{"type":48,"value":1028},"x-vercel-set-bypass-cookie",{"type":43,"tag":86,"props":1030,"children":1031},{"style":212},[1032],{"type":48,"value":494},{"type":43,"tag":86,"props":1034,"children":1035},{"style":99},[1036],{"type":48,"value":508},{"type":43,"tag":86,"props":1038,"children":1039},{"style":212},[1040],{"type":48,"value":494},{"type":43,"tag":86,"props":1042,"children":1043},{"style":99},[1044],{"type":48,"value":1045},"true",{"type":43,"tag":86,"props":1047,"children":1048},{"style":212},[1049],{"type":48,"value":494},{"type":43,"tag":86,"props":1051,"children":1052},{"style":99},[1053],{"type":48,"value":518},{"type":43,"tag":86,"props":1055,"children":1056},{"style":218},[1057],{"type":48,"value":272},{"type":43,"tag":51,"props":1059,"children":1060},{},[1061,1063,1069],{"type":48,"value":1062},"The cookie directive creates a reusable ",{"type":43,"tag":82,"props":1064,"children":1066},{"className":1065},[],[1067],{"type":48,"value":1068},"_vercel_jwt",{"type":48,"value":1070}," cookie. Treat saved browser state containing that cookie as a credential.",{"type":43,"tag":57,"props":1072,"children":1074},{"id":1073},"avoid-dead-ends",[1075],{"type":48,"value":1076},"Avoid dead ends",{"type":43,"tag":588,"props":1078,"children":1079},{},[1080,1093,1104,1109],{"type":43,"tag":592,"props":1081,"children":1082},{},[1083,1085,1091],{"type":48,"value":1084},"There is no ",{"type":43,"tag":82,"props":1086,"children":1088},{"className":1087},[],[1089],{"type":48,"value":1090},"vercel share",{"type":48,"value":1092}," CLI command. Shareable Links are intended for people and are not the automation path.",{"type":43,"tag":592,"props":1094,"children":1095},{},[1096,1102],{"type":43,"tag":82,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":48,"value":1101},"vercel curl",{"type":48,"value":1103}," is useful for HTTP requests, but it cannot render and interact with a page.",{"type":43,"tag":592,"props":1105,"children":1106},{},[1107],{"type":48,"value":1108},"Deployment Protection Exceptions make the domain public. Do not use them merely to unblock an agent.",{"type":43,"tag":592,"props":1110,"children":1111},{},[1112],{"type":48,"value":1113},"Do not expose OIDC tokens, bypass secrets, authenticated URLs, or saved state in logs, screenshots, source files, or user-facing output.",{"type":43,"tag":1115,"props":1116,"children":1117},"style",{},[1118],{"type":48,"value":1119},"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":1121,"total":1278},[1122,1137,1149,1161,1176,1193,1205,1212,1225,1236,1247,1259],{"slug":231,"name":231,"fn":1123,"description":1124,"org":1125,"tags":1126,"stars":25,"repoUrl":26,"updatedAt":1136},"automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1127,1130,1133],{"name":1128,"slug":1129,"type":15},"Agents","agents",{"name":1131,"slug":1132,"type":15},"Automation","automation",{"name":1134,"slug":1135,"type":15},"Browser Automation","browser-automation","2026-08-24T03:36:10.45111",{"slug":1138,"name":1138,"fn":1139,"description":1140,"org":1141,"tags":1142,"stars":25,"repoUrl":26,"updatedAt":1148},"agentcore","run browser automation on AWS Bedrock","Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include \"use agentcore\", \"run on AWS\", \"cloud browser with AWS\", \"bedrock browser\", \"agentcore session\", or any task requiring AWS-hosted browser automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1143,1144,1147],{"name":1131,"slug":1132,"type":15},{"name":1145,"slug":1146,"type":15},"AWS","aws",{"name":1134,"slug":1135,"type":15},"2026-07-17T06:08:33.665276",{"slug":1150,"name":1150,"fn":1151,"description":1152,"org":1153,"tags":1154,"stars":25,"repoUrl":26,"updatedAt":1160},"core","navigate and interact with web pages","Core agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1155,1156,1157],{"name":1128,"slug":1129,"type":15},{"name":1134,"slug":1135,"type":15},{"name":1158,"slug":1159,"type":15},"Navigation","navigation","2026-08-24T03:36:11.476866",{"slug":1162,"name":1162,"fn":1163,"description":1164,"org":1165,"tags":1166,"stars":25,"repoUrl":26,"updatedAt":1175},"derive-client","reverse engineer internal APIs from browser traffic","Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to \"derive a client\", \"build a CLI for \u003Csite>\", \"reverse engineer this site's API\", \"record network requests\", \"turn this site into an API\", or when the same site will be automated repeatedly and direct HTTP calls would beat driving the browser every time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1167,1170,1171,1172],{"name":1168,"slug":1169,"type":15},"API Development","api-development",{"name":1131,"slug":1132,"type":15},{"name":1134,"slug":1135,"type":15},{"name":1173,"slug":1174,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":1177,"name":1177,"fn":1178,"description":1179,"org":1180,"tags":1181,"stars":25,"repoUrl":26,"updatedAt":1192},"dogfood","perform exploratory testing on web applications","Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to \"dogfood\", \"QA\", \"exploratory test\", \"find issues\", \"bug hunt\", \"test this app\u002Fsite\u002Fplatform\", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1182,1183,1186,1189],{"name":1134,"slug":1135,"type":15},{"name":1184,"slug":1185,"type":15},"Debugging","debugging",{"name":1187,"slug":1188,"type":15},"QA","qa",{"name":1190,"slug":1191,"type":15},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":1194,"name":1194,"fn":1195,"description":1196,"org":1197,"tags":1198,"stars":25,"repoUrl":26,"updatedAt":1204},"electron","automate Electron desktop applications","Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include \"automate Slack app\", \"control VS Code\", \"interact with Discord app\", \"test this Electron app\", \"connect to desktop app\", or any task requiring automation of a native Electron application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1199,1200,1201],{"name":1128,"slug":1129,"type":15},{"name":1134,"slug":1135,"type":15},{"name":1202,"slug":1203,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":4,"name":4,"fn":5,"description":6,"org":1206,"tags":1207,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1208,1209,1210,1211],{"name":20,"slug":21,"type":15},{"name":23,"slug":24,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":1213,"name":1213,"fn":1214,"description":1215,"org":1216,"tags":1217,"stars":25,"repoUrl":26,"updatedAt":1224},"slack","interact with Slack workspaces","Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include \"check my Slack\", \"what channels have unreads\", \"send a message to\", \"search Slack for\", \"extract from Slack\", \"find who said\", or any task requiring programmatic Slack interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1218,1219,1222],{"name":1134,"slug":1135,"type":15},{"name":1220,"slug":1221,"type":15},"Messaging","messaging",{"name":1223,"slug":1213,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":1226,"name":1226,"fn":1227,"description":1228,"org":1229,"tags":1230,"stars":25,"repoUrl":26,"updatedAt":1235},"vercel-sandbox","run browser automation in Vercel Sandbox","Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across commands, or wants ephemeral isolated browser environments. Triggers include \"Vercel Sandbox browser\", \"microVM Chrome\", \"agent-browser in sandbox\", \"browser automation on Vercel\", or any task requiring Chrome in a Vercel Sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1231,1232,1233,1234],{"name":1131,"slug":1132,"type":15},{"name":1134,"slug":1135,"type":15},{"name":1190,"slug":1191,"type":15},{"name":17,"slug":18,"type":15},"2026-07-17T06:08:28.349899",{"slug":1237,"name":1237,"fn":1238,"description":1239,"org":1240,"tags":1241,"stars":1244,"repoUrl":1245,"updatedAt":1246},"deploy-to-vercel","deploy applications to Vercel","Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1242,1243],{"name":23,"slug":24,"type":15},{"name":17,"slug":18,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":1248,"name":1248,"fn":1249,"description":1250,"org":1251,"tags":1252,"stars":1244,"repoUrl":1245,"updatedAt":1258},"vercel-cli-with-tokens","manage Vercel projects via CLI","Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1253,1256,1257],{"name":1254,"slug":1255,"type":15},"CLI","cli",{"name":23,"slug":24,"type":15},{"name":17,"slug":18,"type":15},"2026-07-17T06:08:41.84179",{"slug":1260,"name":1260,"fn":1261,"description":1262,"org":1263,"tags":1264,"stars":1244,"repoUrl":1245,"updatedAt":1277},"vercel-composition-patterns","implement scalable React composition patterns","React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1265,1268,1271,1274],{"name":1266,"slug":1267,"type":15},"Best Practices","best-practices",{"name":1269,"slug":1270,"type":15},"Frontend","frontend",{"name":1272,"slug":1273,"type":15},"React","react",{"name":1275,"slug":1276,"type":15},"UI Components","ui-components","2026-07-17T06:05:40.576913",100,{"items":1280,"total":441},[1281,1287,1293,1299,1306,1313,1319],{"slug":231,"name":231,"fn":1123,"description":1124,"org":1282,"tags":1283,"stars":25,"repoUrl":26,"updatedAt":1136},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1284,1285,1286],{"name":1128,"slug":1129,"type":15},{"name":1131,"slug":1132,"type":15},{"name":1134,"slug":1135,"type":15},{"slug":1138,"name":1138,"fn":1139,"description":1140,"org":1288,"tags":1289,"stars":25,"repoUrl":26,"updatedAt":1148},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1290,1291,1292],{"name":1131,"slug":1132,"type":15},{"name":1145,"slug":1146,"type":15},{"name":1134,"slug":1135,"type":15},{"slug":1150,"name":1150,"fn":1151,"description":1152,"org":1294,"tags":1295,"stars":25,"repoUrl":26,"updatedAt":1160},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1296,1297,1298],{"name":1128,"slug":1129,"type":15},{"name":1134,"slug":1135,"type":15},{"name":1158,"slug":1159,"type":15},{"slug":1162,"name":1162,"fn":1163,"description":1164,"org":1300,"tags":1301,"stars":25,"repoUrl":26,"updatedAt":1175},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1302,1303,1304,1305],{"name":1168,"slug":1169,"type":15},{"name":1131,"slug":1132,"type":15},{"name":1134,"slug":1135,"type":15},{"name":1173,"slug":1174,"type":15},{"slug":1177,"name":1177,"fn":1178,"description":1179,"org":1307,"tags":1308,"stars":25,"repoUrl":26,"updatedAt":1192},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1309,1310,1311,1312],{"name":1134,"slug":1135,"type":15},{"name":1184,"slug":1185,"type":15},{"name":1187,"slug":1188,"type":15},{"name":1190,"slug":1191,"type":15},{"slug":1194,"name":1194,"fn":1195,"description":1196,"org":1314,"tags":1315,"stars":25,"repoUrl":26,"updatedAt":1204},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1316,1317,1318],{"name":1128,"slug":1129,"type":15},{"name":1134,"slug":1135,"type":15},{"name":1202,"slug":1203,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1320,"tags":1321,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1322,1323,1324,1325],{"name":20,"slug":21,"type":15},{"name":23,"slug":24,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15}]