[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-ai-python-custom-loop":3,"mdc--lbw2t0-key":33,"related-repo-vercel-labs-ai-python-custom-loop":398,"related-org-vercel-labs-ai-python-custom-loop":470},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"ai-python-custom-loop","build custom agent loops in Python","Use when building custom agent loops. Modify tool dispatch, history management, hooks, control flow.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,16,19],{"name":13,"slug":14,"type":15},"Python","python","tag",{"name":17,"slug":18,"type":15},"Agents","agents",{"name":20,"slug":21,"type":15},"AI SDK","ai-sdk",92,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fai-python","2026-07-29T05:40:40.763184",null,11,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"AI SDK for Python","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fai-python\u002Ftree\u002FHEAD\u002Fskills\u002Fai-python-custom-loop","---\nname: ai-python-custom-loop\ndescription: Use when building custom agent loops. Modify tool dispatch, history management, hooks, control flow.\nmetadata:\n  sdk-version: \"0.4.0\"\n---\n\n# ai-python-custom-loop\n\nKeep the default shape unless you must change control flow:\n\n```python\nclass MyAgent(ai.Agent):\n    async def loop(self, context: ai.Context):\n        while context.keep_running():\n            async with (\n                ai.stream(context=context) as stream,\n                ai.ToolRunner() as runner,\n            ):\n                async for event in ai.util.merge(stream, runner.events()):\n                    yield event\n\n                    if isinstance(event, ai.events.ToolEnd):\n                        runner.schedule(context.resolve(event.tool_call))\n\n                context.add(stream.message)\n                context.add(runner.get_tool_message())\n```\n\nRules:\n\n- Call `context.keep_running()` at the top of each turn.\n- Use `ai.stream(context=context)` so model, messages, tools, output type, and params stay together.\n- Yield events from the loop. `Agent.run` hides replay events from callers.\n- On `ToolEnd`, use `context.resolve(event.tool_call)`. It handles validation, approval gates, and cached replay results.\n- Do not call `tool.fn` directly unless you also handle validation, approvals, and cached results.\n- Schedule resolved calls with `ToolRunner.schedule(...)`.\n- `ToolRunner.schedule(...)` also accepts a zero-arg async callable that returns `ai.events.ToolCallResult`.\n- If you make a result yourself, use `runner.add_result(ai.tool_result(...))`.\n- Add `stream.message`, then `runner.get_tool_message()`. `context.add(...)` skips replay messages.\n- Every tool call must get one tool result.\n- For hooks, let `context.resolve(...)` build the gated call. Use `ai-python-serverless-execution` for request boundaries.\n- For durable calls, keep this shape and wrap only model or tool I\u002FO. Use `ai-python-durable-execution`.\n",{"data":34,"body":37},{"name":4,"description":6,"metadata":35},{"sdk-version":36},"0.4.0",{"type":38,"children":39},"root",[40,47,53,200,205,392],{"type":41,"tag":42,"props":43,"children":44},"element","h1",{"id":4},[45],{"type":46,"value":4},"text",{"type":41,"tag":48,"props":49,"children":50},"p",{},[51],{"type":46,"value":52},"Keep the default shape unless you must change control flow:",{"type":41,"tag":54,"props":55,"children":59},"pre",{"className":56,"code":57,"language":14,"meta":58,"style":58},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","class MyAgent(ai.Agent):\n    async def loop(self, context: ai.Context):\n        while context.keep_running():\n            async with (\n                ai.stream(context=context) as stream,\n                ai.ToolRunner() as runner,\n            ):\n                async for event in ai.util.merge(stream, runner.events()):\n                    yield event\n\n                    if isinstance(event, ai.events.ToolEnd):\n                        runner.schedule(context.resolve(event.tool_call))\n\n                context.add(stream.message)\n                context.add(runner.get_tool_message())\n","",[60],{"type":41,"tag":61,"props":62,"children":63},"code",{"__ignoreMap":58},[64,75,84,93,102,111,120,129,138,147,157,165,174,182,191],{"type":41,"tag":65,"props":66,"children":69},"span",{"class":67,"line":68},"line",1,[70],{"type":41,"tag":65,"props":71,"children":72},{},[73],{"type":46,"value":74},"class MyAgent(ai.Agent):\n",{"type":41,"tag":65,"props":76,"children":78},{"class":67,"line":77},2,[79],{"type":41,"tag":65,"props":80,"children":81},{},[82],{"type":46,"value":83},"    async def loop(self, context: ai.Context):\n",{"type":41,"tag":65,"props":85,"children":87},{"class":67,"line":86},3,[88],{"type":41,"tag":65,"props":89,"children":90},{},[91],{"type":46,"value":92},"        while context.keep_running():\n",{"type":41,"tag":65,"props":94,"children":96},{"class":67,"line":95},4,[97],{"type":41,"tag":65,"props":98,"children":99},{},[100],{"type":46,"value":101},"            async with (\n",{"type":41,"tag":65,"props":103,"children":105},{"class":67,"line":104},5,[106],{"type":41,"tag":65,"props":107,"children":108},{},[109],{"type":46,"value":110},"                ai.stream(context=context) as stream,\n",{"type":41,"tag":65,"props":112,"children":114},{"class":67,"line":113},6,[115],{"type":41,"tag":65,"props":116,"children":117},{},[118],{"type":46,"value":119},"                ai.ToolRunner() as runner,\n",{"type":41,"tag":65,"props":121,"children":123},{"class":67,"line":122},7,[124],{"type":41,"tag":65,"props":125,"children":126},{},[127],{"type":46,"value":128},"            ):\n",{"type":41,"tag":65,"props":130,"children":132},{"class":67,"line":131},8,[133],{"type":41,"tag":65,"props":134,"children":135},{},[136],{"type":46,"value":137},"                async for event in ai.util.merge(stream, runner.events()):\n",{"type":41,"tag":65,"props":139,"children":141},{"class":67,"line":140},9,[142],{"type":41,"tag":65,"props":143,"children":144},{},[145],{"type":46,"value":146},"                    yield event\n",{"type":41,"tag":65,"props":148,"children":150},{"class":67,"line":149},10,[151],{"type":41,"tag":65,"props":152,"children":154},{"emptyLinePlaceholder":153},true,[155],{"type":46,"value":156},"\n",{"type":41,"tag":65,"props":158,"children":159},{"class":67,"line":26},[160],{"type":41,"tag":65,"props":161,"children":162},{},[163],{"type":46,"value":164},"                    if isinstance(event, ai.events.ToolEnd):\n",{"type":41,"tag":65,"props":166,"children":168},{"class":67,"line":167},12,[169],{"type":41,"tag":65,"props":170,"children":171},{},[172],{"type":46,"value":173},"                        runner.schedule(context.resolve(event.tool_call))\n",{"type":41,"tag":65,"props":175,"children":177},{"class":67,"line":176},13,[178],{"type":41,"tag":65,"props":179,"children":180},{"emptyLinePlaceholder":153},[181],{"type":46,"value":156},{"type":41,"tag":65,"props":183,"children":185},{"class":67,"line":184},14,[186],{"type":41,"tag":65,"props":187,"children":188},{},[189],{"type":46,"value":190},"                context.add(stream.message)\n",{"type":41,"tag":65,"props":192,"children":194},{"class":67,"line":193},15,[195],{"type":41,"tag":65,"props":196,"children":197},{},[198],{"type":46,"value":199},"                context.add(runner.get_tool_message())\n",{"type":41,"tag":48,"props":201,"children":202},{},[203],{"type":46,"value":204},"Rules:",{"type":41,"tag":206,"props":207,"children":208},"ul",{},[209,223,236,249,270,283,296,313,325,354,359,380],{"type":41,"tag":210,"props":211,"children":212},"li",{},[213,215,221],{"type":46,"value":214},"Call ",{"type":41,"tag":61,"props":216,"children":218},{"className":217},[],[219],{"type":46,"value":220},"context.keep_running()",{"type":46,"value":222}," at the top of each turn.",{"type":41,"tag":210,"props":224,"children":225},{},[226,228,234],{"type":46,"value":227},"Use ",{"type":41,"tag":61,"props":229,"children":231},{"className":230},[],[232],{"type":46,"value":233},"ai.stream(context=context)",{"type":46,"value":235}," so model, messages, tools, output type, and params stay together.",{"type":41,"tag":210,"props":237,"children":238},{},[239,241,247],{"type":46,"value":240},"Yield events from the loop. ",{"type":41,"tag":61,"props":242,"children":244},{"className":243},[],[245],{"type":46,"value":246},"Agent.run",{"type":46,"value":248}," hides replay events from callers.",{"type":41,"tag":210,"props":250,"children":251},{},[252,254,260,262,268],{"type":46,"value":253},"On ",{"type":41,"tag":61,"props":255,"children":257},{"className":256},[],[258],{"type":46,"value":259},"ToolEnd",{"type":46,"value":261},", use ",{"type":41,"tag":61,"props":263,"children":265},{"className":264},[],[266],{"type":46,"value":267},"context.resolve(event.tool_call)",{"type":46,"value":269},". It handles validation, approval gates, and cached replay results.",{"type":41,"tag":210,"props":271,"children":272},{},[273,275,281],{"type":46,"value":274},"Do not call ",{"type":41,"tag":61,"props":276,"children":278},{"className":277},[],[279],{"type":46,"value":280},"tool.fn",{"type":46,"value":282}," directly unless you also handle validation, approvals, and cached results.",{"type":41,"tag":210,"props":284,"children":285},{},[286,288,294],{"type":46,"value":287},"Schedule resolved calls with ",{"type":41,"tag":61,"props":289,"children":291},{"className":290},[],[292],{"type":46,"value":293},"ToolRunner.schedule(...)",{"type":46,"value":295},".",{"type":41,"tag":210,"props":297,"children":298},{},[299,304,306,312],{"type":41,"tag":61,"props":300,"children":302},{"className":301},[],[303],{"type":46,"value":293},{"type":46,"value":305}," also accepts a zero-arg async callable that returns ",{"type":41,"tag":61,"props":307,"children":309},{"className":308},[],[310],{"type":46,"value":311},"ai.events.ToolCallResult",{"type":46,"value":295},{"type":41,"tag":210,"props":314,"children":315},{},[316,318,324],{"type":46,"value":317},"If you make a result yourself, use ",{"type":41,"tag":61,"props":319,"children":321},{"className":320},[],[322],{"type":46,"value":323},"runner.add_result(ai.tool_result(...))",{"type":46,"value":295},{"type":41,"tag":210,"props":326,"children":327},{},[328,330,336,338,344,346,352],{"type":46,"value":329},"Add ",{"type":41,"tag":61,"props":331,"children":333},{"className":332},[],[334],{"type":46,"value":335},"stream.message",{"type":46,"value":337},", then ",{"type":41,"tag":61,"props":339,"children":341},{"className":340},[],[342],{"type":46,"value":343},"runner.get_tool_message()",{"type":46,"value":345},". ",{"type":41,"tag":61,"props":347,"children":349},{"className":348},[],[350],{"type":46,"value":351},"context.add(...)",{"type":46,"value":353}," skips replay messages.",{"type":41,"tag":210,"props":355,"children":356},{},[357],{"type":46,"value":358},"Every tool call must get one tool result.",{"type":41,"tag":210,"props":360,"children":361},{},[362,364,370,372,378],{"type":46,"value":363},"For hooks, let ",{"type":41,"tag":61,"props":365,"children":367},{"className":366},[],[368],{"type":46,"value":369},"context.resolve(...)",{"type":46,"value":371}," build the gated call. Use ",{"type":41,"tag":61,"props":373,"children":375},{"className":374},[],[376],{"type":46,"value":377},"ai-python-serverless-execution",{"type":46,"value":379}," for request boundaries.",{"type":41,"tag":210,"props":381,"children":382},{},[383,385,391],{"type":46,"value":384},"For durable calls, keep this shape and wrap only model or tool I\u002FO. Use ",{"type":41,"tag":61,"props":386,"children":388},{"className":387},[],[389],{"type":46,"value":390},"ai-python-durable-execution",{"type":46,"value":295},{"type":41,"tag":393,"props":394,"children":395},"style",{},[396],{"type":46,"value":397},"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":399,"total":140},[400,413,419,428,437,448,458],{"slug":401,"name":401,"fn":402,"description":403,"org":404,"tags":405,"stars":22,"repoUrl":23,"updatedAt":412},"ai-python-basics","build AI agents with Python SDK","Use for AI SDK for Python basics. Configure a model, make messages, stream, declare tools, build a basic agent.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[406,407,408,411],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":409,"slug":410,"type":15},"LLM","llm",{"name":13,"slug":14,"type":15},"2026-07-29T05:40:38.753254",{"slug":4,"name":4,"fn":5,"description":6,"org":414,"tags":415,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[416,417,418],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"slug":420,"name":420,"fn":421,"description":422,"org":423,"tags":424,"stars":22,"repoUrl":23,"updatedAt":427},"ai-python-custom-provider","implement custom AI SDK providers","Use for implementing custom providers in AI SDK for Python.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[425,426],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},"2026-07-29T05:40:39.785476",{"slug":390,"name":390,"fn":429,"description":430,"org":431,"tags":432,"stars":22,"repoUrl":23,"updatedAt":436},"add durable execution to AI agents","Use when adding durable execution to AI SDK for Python, building durable agent loops, or serializing messages across workflow steps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[433,434,435],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},"2026-07-29T05:40:42.780847",{"slug":377,"name":377,"fn":438,"description":439,"org":440,"tags":441,"stars":22,"repoUrl":23,"updatedAt":447},"build serverless AI SDK endpoints","Use when building serverless AI SDK for Python endpoints, handling hook approvals, deferring hooks, or resuming runs across requests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[442,443,444],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":445,"slug":446,"type":15},"Serverless","serverless","2026-07-29T05:40:37.750244",{"slug":449,"name":449,"fn":450,"description":451,"org":452,"tags":453,"stars":22,"repoUrl":23,"updatedAt":457},"ai-python-streaming-tools","stream AI SDK Python tool outputs","Use for AI SDK for Python async-generator tools, streaming tool output, subagent tools, PartialToolCallResult events, and custom tool aggregation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[454,455,456],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},"2026-07-29T05:40:36.755057",{"slug":459,"name":459,"fn":460,"description":461,"org":462,"tags":463,"stars":22,"repoUrl":23,"updatedAt":469},"ai-python-subagents","implement subagent patterns in Python","Use for the subagent-as-a-tool pattern.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[464,465,468],{"name":17,"slug":18,"type":15},{"name":466,"slug":467,"type":15},"Multi-Agent","multi-agent",{"name":13,"slug":14,"type":15},"2026-07-29T05:40:35.804764",{"items":471,"total":641},[472,488,500,512,527,544,556,569,582,595,607,626],{"slug":473,"name":473,"fn":474,"description":475,"org":476,"tags":477,"stars":485,"repoUrl":486,"updatedAt":487},"agent-browser","automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[478,479,482],{"name":17,"slug":18,"type":15},{"name":480,"slug":481,"type":15},"Automation","automation",{"name":483,"slug":484,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":489,"name":489,"fn":490,"description":491,"org":492,"tags":493,"stars":485,"repoUrl":486,"updatedAt":499},"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},[494,495,498],{"name":480,"slug":481,"type":15},{"name":496,"slug":497,"type":15},"AWS","aws",{"name":483,"slug":484,"type":15},"2026-07-17T06:08:33.665276",{"slug":501,"name":501,"fn":502,"description":503,"org":504,"tags":505,"stars":485,"repoUrl":486,"updatedAt":511},"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},[506,507,508],{"name":17,"slug":18,"type":15},{"name":483,"slug":484,"type":15},{"name":509,"slug":510,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":513,"name":513,"fn":514,"description":515,"org":516,"tags":517,"stars":485,"repoUrl":486,"updatedAt":526},"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},[518,521,522,523],{"name":519,"slug":520,"type":15},"API Development","api-development",{"name":480,"slug":481,"type":15},{"name":483,"slug":484,"type":15},{"name":524,"slug":525,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":528,"name":528,"fn":529,"description":530,"org":531,"tags":532,"stars":485,"repoUrl":486,"updatedAt":543},"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},[533,534,537,540],{"name":483,"slug":484,"type":15},{"name":535,"slug":536,"type":15},"Debugging","debugging",{"name":538,"slug":539,"type":15},"QA","qa",{"name":541,"slug":542,"type":15},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":545,"name":545,"fn":546,"description":547,"org":548,"tags":549,"stars":485,"repoUrl":486,"updatedAt":555},"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},[550,551,552],{"name":17,"slug":18,"type":15},{"name":483,"slug":484,"type":15},{"name":553,"slug":554,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":557,"name":557,"fn":558,"description":559,"org":560,"tags":561,"stars":485,"repoUrl":486,"updatedAt":568},"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},[562,563,566],{"name":483,"slug":484,"type":15},{"name":564,"slug":565,"type":15},"Messaging","messaging",{"name":567,"slug":557,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":570,"name":570,"fn":571,"description":572,"org":573,"tags":574,"stars":485,"repoUrl":486,"updatedAt":581},"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},[575,576,577,578],{"name":480,"slug":481,"type":15},{"name":483,"slug":484,"type":15},{"name":541,"slug":542,"type":15},{"name":579,"slug":580,"type":15},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":583,"name":583,"fn":584,"description":585,"org":586,"tags":587,"stars":592,"repoUrl":593,"updatedAt":594},"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},[588,591],{"name":589,"slug":590,"type":15},"Deployment","deployment",{"name":579,"slug":580,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":596,"name":596,"fn":597,"description":598,"org":599,"tags":600,"stars":592,"repoUrl":593,"updatedAt":606},"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},[601,604,605],{"name":602,"slug":603,"type":15},"CLI","cli",{"name":589,"slug":590,"type":15},{"name":579,"slug":580,"type":15},"2026-07-17T06:08:41.84179",{"slug":608,"name":608,"fn":609,"description":610,"org":611,"tags":612,"stars":592,"repoUrl":593,"updatedAt":625},"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},[613,616,619,622],{"name":614,"slug":615,"type":15},"Best Practices","best-practices",{"name":617,"slug":618,"type":15},"Frontend","frontend",{"name":620,"slug":621,"type":15},"React","react",{"name":623,"slug":624,"type":15},"UI Components","ui-components","2026-07-17T06:05:40.576913",{"slug":627,"name":627,"fn":628,"description":629,"org":630,"tags":631,"stars":592,"repoUrl":593,"updatedAt":640},"vercel-optimize","optimize Vercel project performance and costs","Use for Vercel cost and performance optimization on deployed projects, especially Next.js, SvelteKit, Nuxt, and limited Astro apps. Collect Vercel metrics, usage, project config, and code scan results first; investigate only metric-backed candidates; produce ranked recommendations grounded in verified files and version-aware Vercel\u002Fframework docs. Trigger for Vercel bill reduction, slow or expensive routes, caching opportunities, Function Invocations, Build Minutes, Fast Data Transfer, Core Web Vitals, Bot Management, Fluid compute, or cost breakdown requests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[632,635,636,639],{"name":633,"slug":634,"type":15},"Cost Optimization","cost-optimization",{"name":589,"slug":590,"type":15},{"name":637,"slug":638,"type":15},"Performance","performance",{"name":579,"slug":580,"type":15},"2026-07-17T06:04:08.327515",100]