[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-ai-python-ui-adapter":3,"mdc--n8g8dn-key":33,"related-repo-vercel-labs-ai-python-ui-adapter":512,"related-org-vercel-labs-ai-python-ui-adapter":592},{"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-ui-adapter","connect AI SDK Python streams to UI","Use when connecting AI SDK for Python streams to AI SDK UI useChat clients.",{"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},"AI SDK","ai-sdk",{"name":20,"slug":21,"type":15},"Frontend","frontend",92,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fai-python","2026-07-29T05:40:41.794552",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-ui-adapter","---\nname: ai-python-ui-adapter\ndescription: Use when connecting AI SDK for Python streams to AI SDK UI useChat clients.\nmetadata:\n  sdk-version: \"0.4.0\"\n---\n\n# ai-python-ui-adapter\n\nFrontend:\n\n```tsx\nconst chat = useChat({\n  transport: new DefaultChatTransport({ api: \"\u002Fapi\u002Fchat\" }),\n  sendAutomaticallyWhen: lastAssistantMessageIsCompleteWithApprovalResponses,\n});\n```\n\nUse `chat.sendMessage(...)` to send user input. Use\n`chat.addToolApprovalResponse(...)` from approval buttons.\n\nBackend request:\n\n```python\nclass ChatRequest(pydantic.BaseModel):\n    messages: list[ai.ui.ai_sdk.UIMessage]\n\nmessages, approvals = ai.ui.ai_sdk.to_messages(request.messages)\nai.ui.ai_sdk.apply_approvals(approvals)\n```\n\nBackend stream:\n\n```python\nasync def body():\n    async with agent.run(model, messages) as stream:\n        async def events():\n            async for event in stream:\n                if (\n                    isinstance(event, ai.events.HookEvent)\n                    and event.hook.status == \"pending\"\n                ):\n                    ai.defer_hook(event.hook)\n                yield event\n\n        async for chunk in ai.ui.ai_sdk.to_sse(events()):\n            yield chunk\n\nreturn StreamingResponse(\n    body(),\n    headers=ai.ui.ai_sdk.UI_MESSAGE_STREAM_HEADERS,\n)\n```\n\nThe adapter handles `UIMessage` parsing, message IDs, tool state, approvals,\nsubagent `MessageBundle` values, and AI SDK UI stream events.\n\nYou handle the HTTP route, auth, storage, session lookup, frontend rendering,\nand when to defer hooks.\n\nFor saved UI history, use:\n\n```python\nui_messages = ai.ui.ai_sdk.to_ui_messages(messages)\n```\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,219,240,245,295,300,461,482,487,492,506],{"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},"Frontend:",{"type":41,"tag":54,"props":55,"children":60},"pre",{"className":56,"code":57,"language":58,"meta":59,"style":59},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const chat = useChat({\n  transport: new DefaultChatTransport({ api: \"\u002Fapi\u002Fchat\" }),\n  sendAutomaticallyWhen: lastAssistantMessageIsCompleteWithApprovalResponses,\n});\n","tsx","",[61],{"type":41,"tag":62,"props":63,"children":64},"code",{"__ignoreMap":59},[65,105,179,201],{"type":41,"tag":66,"props":67,"children":70},"span",{"class":68,"line":69},"line",1,[71,77,83,89,95,100],{"type":41,"tag":66,"props":72,"children":74},{"style":73},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[75],{"type":46,"value":76},"const",{"type":41,"tag":66,"props":78,"children":80},{"style":79},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[81],{"type":46,"value":82}," chat ",{"type":41,"tag":66,"props":84,"children":86},{"style":85},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[87],{"type":46,"value":88},"=",{"type":41,"tag":66,"props":90,"children":92},{"style":91},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[93],{"type":46,"value":94}," useChat",{"type":41,"tag":66,"props":96,"children":97},{"style":79},[98],{"type":46,"value":99},"(",{"type":41,"tag":66,"props":101,"children":102},{"style":85},[103],{"type":46,"value":104},"{\n",{"type":41,"tag":66,"props":106,"children":108},{"class":68,"line":107},2,[109,115,120,125,130,134,139,144,148,153,159,164,169,174],{"type":41,"tag":66,"props":110,"children":112},{"style":111},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[113],{"type":46,"value":114},"  transport",{"type":41,"tag":66,"props":116,"children":117},{"style":85},[118],{"type":46,"value":119},":",{"type":41,"tag":66,"props":121,"children":122},{"style":85},[123],{"type":46,"value":124}," new",{"type":41,"tag":66,"props":126,"children":127},{"style":91},[128],{"type":46,"value":129}," DefaultChatTransport",{"type":41,"tag":66,"props":131,"children":132},{"style":79},[133],{"type":46,"value":99},{"type":41,"tag":66,"props":135,"children":136},{"style":85},[137],{"type":46,"value":138},"{",{"type":41,"tag":66,"props":140,"children":141},{"style":111},[142],{"type":46,"value":143}," api",{"type":41,"tag":66,"props":145,"children":146},{"style":85},[147],{"type":46,"value":119},{"type":41,"tag":66,"props":149,"children":150},{"style":85},[151],{"type":46,"value":152}," \"",{"type":41,"tag":66,"props":154,"children":156},{"style":155},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[157],{"type":46,"value":158},"\u002Fapi\u002Fchat",{"type":41,"tag":66,"props":160,"children":161},{"style":85},[162],{"type":46,"value":163},"\"",{"type":41,"tag":66,"props":165,"children":166},{"style":85},[167],{"type":46,"value":168}," }",{"type":41,"tag":66,"props":170,"children":171},{"style":79},[172],{"type":46,"value":173},")",{"type":41,"tag":66,"props":175,"children":176},{"style":85},[177],{"type":46,"value":178},",\n",{"type":41,"tag":66,"props":180,"children":182},{"class":68,"line":181},3,[183,188,192,197],{"type":41,"tag":66,"props":184,"children":185},{"style":111},[186],{"type":46,"value":187},"  sendAutomaticallyWhen",{"type":41,"tag":66,"props":189,"children":190},{"style":85},[191],{"type":46,"value":119},{"type":41,"tag":66,"props":193,"children":194},{"style":79},[195],{"type":46,"value":196}," lastAssistantMessageIsCompleteWithApprovalResponses",{"type":41,"tag":66,"props":198,"children":199},{"style":85},[200],{"type":46,"value":178},{"type":41,"tag":66,"props":202,"children":204},{"class":68,"line":203},4,[205,210,214],{"type":41,"tag":66,"props":206,"children":207},{"style":85},[208],{"type":46,"value":209},"}",{"type":41,"tag":66,"props":211,"children":212},{"style":79},[213],{"type":46,"value":173},{"type":41,"tag":66,"props":215,"children":216},{"style":85},[217],{"type":46,"value":218},";\n",{"type":41,"tag":48,"props":220,"children":221},{},[222,224,230,232,238],{"type":46,"value":223},"Use ",{"type":41,"tag":62,"props":225,"children":227},{"className":226},[],[228],{"type":46,"value":229},"chat.sendMessage(...)",{"type":46,"value":231}," to send user input. Use\n",{"type":41,"tag":62,"props":233,"children":235},{"className":234},[],[236],{"type":46,"value":237},"chat.addToolApprovalResponse(...)",{"type":46,"value":239}," from approval buttons.",{"type":41,"tag":48,"props":241,"children":242},{},[243],{"type":46,"value":244},"Backend request:",{"type":41,"tag":54,"props":246,"children":249},{"className":247,"code":248,"language":14,"meta":59,"style":59},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","class ChatRequest(pydantic.BaseModel):\n    messages: list[ai.ui.ai_sdk.UIMessage]\n\nmessages, approvals = ai.ui.ai_sdk.to_messages(request.messages)\nai.ui.ai_sdk.apply_approvals(approvals)\n",[250],{"type":41,"tag":62,"props":251,"children":252},{"__ignoreMap":59},[253,261,269,278,286],{"type":41,"tag":66,"props":254,"children":255},{"class":68,"line":69},[256],{"type":41,"tag":66,"props":257,"children":258},{},[259],{"type":46,"value":260},"class ChatRequest(pydantic.BaseModel):\n",{"type":41,"tag":66,"props":262,"children":263},{"class":68,"line":107},[264],{"type":41,"tag":66,"props":265,"children":266},{},[267],{"type":46,"value":268},"    messages: list[ai.ui.ai_sdk.UIMessage]\n",{"type":41,"tag":66,"props":270,"children":271},{"class":68,"line":181},[272],{"type":41,"tag":66,"props":273,"children":275},{"emptyLinePlaceholder":274},true,[276],{"type":46,"value":277},"\n",{"type":41,"tag":66,"props":279,"children":280},{"class":68,"line":203},[281],{"type":41,"tag":66,"props":282,"children":283},{},[284],{"type":46,"value":285},"messages, approvals = ai.ui.ai_sdk.to_messages(request.messages)\n",{"type":41,"tag":66,"props":287,"children":289},{"class":68,"line":288},5,[290],{"type":41,"tag":66,"props":291,"children":292},{},[293],{"type":46,"value":294},"ai.ui.ai_sdk.apply_approvals(approvals)\n",{"type":41,"tag":48,"props":296,"children":297},{},[298],{"type":46,"value":299},"Backend stream:",{"type":41,"tag":54,"props":301,"children":303},{"className":247,"code":302,"language":14,"meta":59,"style":59},"async def body():\n    async with agent.run(model, messages) as stream:\n        async def events():\n            async for event in stream:\n                if (\n                    isinstance(event, ai.events.HookEvent)\n                    and event.hook.status == \"pending\"\n                ):\n                    ai.defer_hook(event.hook)\n                yield event\n\n        async for chunk in ai.ui.ai_sdk.to_sse(events()):\n            yield chunk\n\nreturn StreamingResponse(\n    body(),\n    headers=ai.ui.ai_sdk.UI_MESSAGE_STREAM_HEADERS,\n)\n",[304],{"type":41,"tag":62,"props":305,"children":306},{"__ignoreMap":59},[307,315,323,331,339,347,356,365,374,383,392,399,408,417,425,434,443,452],{"type":41,"tag":66,"props":308,"children":309},{"class":68,"line":69},[310],{"type":41,"tag":66,"props":311,"children":312},{},[313],{"type":46,"value":314},"async def body():\n",{"type":41,"tag":66,"props":316,"children":317},{"class":68,"line":107},[318],{"type":41,"tag":66,"props":319,"children":320},{},[321],{"type":46,"value":322},"    async with agent.run(model, messages) as stream:\n",{"type":41,"tag":66,"props":324,"children":325},{"class":68,"line":181},[326],{"type":41,"tag":66,"props":327,"children":328},{},[329],{"type":46,"value":330},"        async def events():\n",{"type":41,"tag":66,"props":332,"children":333},{"class":68,"line":203},[334],{"type":41,"tag":66,"props":335,"children":336},{},[337],{"type":46,"value":338},"            async for event in stream:\n",{"type":41,"tag":66,"props":340,"children":341},{"class":68,"line":288},[342],{"type":41,"tag":66,"props":343,"children":344},{},[345],{"type":46,"value":346},"                if (\n",{"type":41,"tag":66,"props":348,"children":350},{"class":68,"line":349},6,[351],{"type":41,"tag":66,"props":352,"children":353},{},[354],{"type":46,"value":355},"                    isinstance(event, ai.events.HookEvent)\n",{"type":41,"tag":66,"props":357,"children":359},{"class":68,"line":358},7,[360],{"type":41,"tag":66,"props":361,"children":362},{},[363],{"type":46,"value":364},"                    and event.hook.status == \"pending\"\n",{"type":41,"tag":66,"props":366,"children":368},{"class":68,"line":367},8,[369],{"type":41,"tag":66,"props":370,"children":371},{},[372],{"type":46,"value":373},"                ):\n",{"type":41,"tag":66,"props":375,"children":377},{"class":68,"line":376},9,[378],{"type":41,"tag":66,"props":379,"children":380},{},[381],{"type":46,"value":382},"                    ai.defer_hook(event.hook)\n",{"type":41,"tag":66,"props":384,"children":386},{"class":68,"line":385},10,[387],{"type":41,"tag":66,"props":388,"children":389},{},[390],{"type":46,"value":391},"                yield event\n",{"type":41,"tag":66,"props":393,"children":394},{"class":68,"line":26},[395],{"type":41,"tag":66,"props":396,"children":397},{"emptyLinePlaceholder":274},[398],{"type":46,"value":277},{"type":41,"tag":66,"props":400,"children":402},{"class":68,"line":401},12,[403],{"type":41,"tag":66,"props":404,"children":405},{},[406],{"type":46,"value":407},"        async for chunk in ai.ui.ai_sdk.to_sse(events()):\n",{"type":41,"tag":66,"props":409,"children":411},{"class":68,"line":410},13,[412],{"type":41,"tag":66,"props":413,"children":414},{},[415],{"type":46,"value":416},"            yield chunk\n",{"type":41,"tag":66,"props":418,"children":420},{"class":68,"line":419},14,[421],{"type":41,"tag":66,"props":422,"children":423},{"emptyLinePlaceholder":274},[424],{"type":46,"value":277},{"type":41,"tag":66,"props":426,"children":428},{"class":68,"line":427},15,[429],{"type":41,"tag":66,"props":430,"children":431},{},[432],{"type":46,"value":433},"return StreamingResponse(\n",{"type":41,"tag":66,"props":435,"children":437},{"class":68,"line":436},16,[438],{"type":41,"tag":66,"props":439,"children":440},{},[441],{"type":46,"value":442},"    body(),\n",{"type":41,"tag":66,"props":444,"children":446},{"class":68,"line":445},17,[447],{"type":41,"tag":66,"props":448,"children":449},{},[450],{"type":46,"value":451},"    headers=ai.ui.ai_sdk.UI_MESSAGE_STREAM_HEADERS,\n",{"type":41,"tag":66,"props":453,"children":455},{"class":68,"line":454},18,[456],{"type":41,"tag":66,"props":457,"children":458},{},[459],{"type":46,"value":460},")\n",{"type":41,"tag":48,"props":462,"children":463},{},[464,466,472,474,480],{"type":46,"value":465},"The adapter handles ",{"type":41,"tag":62,"props":467,"children":469},{"className":468},[],[470],{"type":46,"value":471},"UIMessage",{"type":46,"value":473}," parsing, message IDs, tool state, approvals,\nsubagent ",{"type":41,"tag":62,"props":475,"children":477},{"className":476},[],[478],{"type":46,"value":479},"MessageBundle",{"type":46,"value":481}," values, and AI SDK UI stream events.",{"type":41,"tag":48,"props":483,"children":484},{},[485],{"type":46,"value":486},"You handle the HTTP route, auth, storage, session lookup, frontend rendering,\nand when to defer hooks.",{"type":41,"tag":48,"props":488,"children":489},{},[490],{"type":46,"value":491},"For saved UI history, use:",{"type":41,"tag":54,"props":493,"children":495},{"className":247,"code":494,"language":14,"meta":59,"style":59},"ui_messages = ai.ui.ai_sdk.to_ui_messages(messages)\n",[496],{"type":41,"tag":62,"props":497,"children":498},{"__ignoreMap":59},[499],{"type":41,"tag":66,"props":500,"children":501},{"class":68,"line":69},[502],{"type":41,"tag":66,"props":503,"children":504},{},[505],{"type":46,"value":494},{"type":41,"tag":507,"props":508,"children":509},"style",{},[510],{"type":46,"value":511},"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":513,"total":376},[514,529,539,548,558,570,580],{"slug":515,"name":515,"fn":516,"description":517,"org":518,"tags":519,"stars":22,"repoUrl":23,"updatedAt":528},"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},[520,523,524,527],{"name":521,"slug":522,"type":15},"Agents","agents",{"name":17,"slug":18,"type":15},{"name":525,"slug":526,"type":15},"LLM","llm",{"name":13,"slug":14,"type":15},"2026-07-29T05:40:38.753254",{"slug":530,"name":530,"fn":531,"description":532,"org":533,"tags":534,"stars":22,"repoUrl":23,"updatedAt":538},"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},[535,536,537],{"name":521,"slug":522,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},"2026-07-29T05:40:40.763184",{"slug":540,"name":540,"fn":541,"description":542,"org":543,"tags":544,"stars":22,"repoUrl":23,"updatedAt":547},"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},[545,546],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},"2026-07-29T05:40:39.785476",{"slug":549,"name":549,"fn":550,"description":551,"org":552,"tags":553,"stars":22,"repoUrl":23,"updatedAt":557},"ai-python-durable-execution","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},[554,555,556],{"name":521,"slug":522,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},"2026-07-29T05:40:42.780847",{"slug":559,"name":559,"fn":560,"description":561,"org":562,"tags":563,"stars":22,"repoUrl":23,"updatedAt":569},"ai-python-serverless-execution","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},[564,565,566],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":567,"slug":568,"type":15},"Serverless","serverless","2026-07-29T05:40:37.750244",{"slug":571,"name":571,"fn":572,"description":573,"org":574,"tags":575,"stars":22,"repoUrl":23,"updatedAt":579},"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},[576,577,578],{"name":521,"slug":522,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},"2026-07-29T05:40:36.755057",{"slug":581,"name":581,"fn":582,"description":583,"org":584,"tags":585,"stars":22,"repoUrl":23,"updatedAt":591},"ai-python-subagents","implement subagent patterns in Python","Use for the subagent-as-a-tool pattern.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[586,587,590],{"name":521,"slug":522,"type":15},{"name":588,"slug":589,"type":15},"Multi-Agent","multi-agent",{"name":13,"slug":14,"type":15},"2026-07-29T05:40:35.804764",{"items":593,"total":761},[594,610,622,634,649,666,678,691,704,717,729,746],{"slug":595,"name":595,"fn":596,"description":597,"org":598,"tags":599,"stars":607,"repoUrl":608,"updatedAt":609},"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},[600,601,604],{"name":521,"slug":522,"type":15},{"name":602,"slug":603,"type":15},"Automation","automation",{"name":605,"slug":606,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":611,"name":611,"fn":612,"description":613,"org":614,"tags":615,"stars":607,"repoUrl":608,"updatedAt":621},"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},[616,617,620],{"name":602,"slug":603,"type":15},{"name":618,"slug":619,"type":15},"AWS","aws",{"name":605,"slug":606,"type":15},"2026-07-17T06:08:33.665276",{"slug":623,"name":623,"fn":624,"description":625,"org":626,"tags":627,"stars":607,"repoUrl":608,"updatedAt":633},"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},[628,629,630],{"name":521,"slug":522,"type":15},{"name":605,"slug":606,"type":15},{"name":631,"slug":632,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":635,"name":635,"fn":636,"description":637,"org":638,"tags":639,"stars":607,"repoUrl":608,"updatedAt":648},"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},[640,643,644,645],{"name":641,"slug":642,"type":15},"API Development","api-development",{"name":602,"slug":603,"type":15},{"name":605,"slug":606,"type":15},{"name":646,"slug":647,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":650,"name":650,"fn":651,"description":652,"org":653,"tags":654,"stars":607,"repoUrl":608,"updatedAt":665},"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},[655,656,659,662],{"name":605,"slug":606,"type":15},{"name":657,"slug":658,"type":15},"Debugging","debugging",{"name":660,"slug":661,"type":15},"QA","qa",{"name":663,"slug":664,"type":15},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":667,"name":667,"fn":668,"description":669,"org":670,"tags":671,"stars":607,"repoUrl":608,"updatedAt":677},"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},[672,673,674],{"name":521,"slug":522,"type":15},{"name":605,"slug":606,"type":15},{"name":675,"slug":676,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":679,"name":679,"fn":680,"description":681,"org":682,"tags":683,"stars":607,"repoUrl":608,"updatedAt":690},"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},[684,685,688],{"name":605,"slug":606,"type":15},{"name":686,"slug":687,"type":15},"Messaging","messaging",{"name":689,"slug":679,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":692,"name":692,"fn":693,"description":694,"org":695,"tags":696,"stars":607,"repoUrl":608,"updatedAt":703},"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},[697,698,699,700],{"name":602,"slug":603,"type":15},{"name":605,"slug":606,"type":15},{"name":663,"slug":664,"type":15},{"name":701,"slug":702,"type":15},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":705,"name":705,"fn":706,"description":707,"org":708,"tags":709,"stars":714,"repoUrl":715,"updatedAt":716},"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},[710,713],{"name":711,"slug":712,"type":15},"Deployment","deployment",{"name":701,"slug":702,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":718,"name":718,"fn":719,"description":720,"org":721,"tags":722,"stars":714,"repoUrl":715,"updatedAt":728},"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},[723,726,727],{"name":724,"slug":725,"type":15},"CLI","cli",{"name":711,"slug":712,"type":15},{"name":701,"slug":702,"type":15},"2026-07-17T06:08:41.84179",{"slug":730,"name":730,"fn":731,"description":732,"org":733,"tags":734,"stars":714,"repoUrl":715,"updatedAt":745},"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},[735,738,739,742],{"name":736,"slug":737,"type":15},"Best Practices","best-practices",{"name":20,"slug":21,"type":15},{"name":740,"slug":741,"type":15},"React","react",{"name":743,"slug":744,"type":15},"UI Components","ui-components","2026-07-17T06:05:40.576913",{"slug":747,"name":747,"fn":748,"description":749,"org":750,"tags":751,"stars":714,"repoUrl":715,"updatedAt":760},"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},[752,755,756,759],{"name":753,"slug":754,"type":15},"Cost Optimization","cost-optimization",{"name":711,"slug":712,"type":15},{"name":757,"slug":758,"type":15},"Performance","performance",{"name":701,"slug":702,"type":15},"2026-07-17T06:04:08.327515",100]