[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-agent-browser-verify":3,"mdc--u5ndlh-key":33,"related-org-openai-agent-browser-verify":1216,"related-repo-openai-agent-browser-verify":1423},{"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},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19],{"name":13,"slug":14,"type":15},"Local Development","local-development","tag",{"name":17,"slug":18,"type":15},"Testing","testing",{"name":20,"slug":21,"type":15},"Browser Automation","browser-automation",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:41:17.526867",null,465,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fvercel\u002Fskills\u002Fagent-browser-verify","---\nname: agent-browser-verify\ndescription: Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.\nmetadata:\n  priority: 2\n  docs:\n    - \"https:\u002F\u002Fopenai.com\u002Findex\u002Fintroducing-codex\u002F\"\n  pathPatterns: []\n  bashPatterns:\n    - '\\bnext\\s+dev\\b'\n    - '\\bnpm\\s+run\\s+dev\\b'\n    - '\\bpnpm\\s+dev\\b'\n    - '\\bbun\\s+run\\s+dev\\b'\n    - '\\byarn\\s+dev\\b'\n    - '\\bvite\\s*(dev)?\\b'\n    - '\\bnuxt\\s+dev\\b'\n    - '\\bvercel\\s+dev\\b'\n  promptSignals:\n    phrases:\n      - \"check the page\"\n      - \"check the browser\"\n      - \"check the site\"\n      - \"is the page working\"\n      - \"is it loading\"\n      - \"blank page\"\n      - \"white screen\"\n      - \"nothing showing\"\n      - \"page is broken\"\n      - \"screenshot the page\"\n      - \"take a screenshot\"\n      - \"check for errors\"\n      - \"console errors\"\n      - \"browser errors\"\n      - \"page is stuck\"\n      - \"page is hanging\"\n      - \"page not loading\"\n      - \"page frozen\"\n      - \"spinner not stopping\"\n      - \"page not responding\"\n      - \"page won't load\"\n      - \"page will not load\"\n      - \"nothing renders\"\n      - \"nothing rendered\"\n      - \"ui is broken\"\n      - \"screen is blank\"\n      - \"screen is white\"\n      - \"app won't load\"\n    allOf:\n      - [check, page]\n      - [check, browser]\n      - [check, site]\n      - [blank, page]\n      - [white, screen]\n      - [console, errors]\n      - [page, broken]\n      - [page, loading]\n      - [not, rendering]\n      - [page, stuck]\n      - [page, hanging]\n      - [page, frozen]\n      - [page, timeout]\n    anyOf:\n      - \"page\"\n      - \"browser\"\n      - \"screen\"\n      - \"rendering\"\n      - \"visual\"\n      - \"spinner\"\n      - \"loading\"\n    minScore: 6\n---\n\n# Dev Server Verification with agent-browser\n\n**You MUST verify the dev server with agent-browser after starting it.** Do not assume the page works just because the dev server process started. Many issues (blank pages, hydration errors, missing env vars, broken imports) are only visible in the browser. Run this verification before continuing with any other work:\n\n## Quick Verification Flow\n\n```bash\n# 1. Open the dev server\nagent-browser open http:\u002F\u002Flocalhost:3000\nagent-browser wait --load networkidle\n\n# 2. Screenshot for visual check\nagent-browser screenshot --annotate\n\n# 3. Check for errors\nagent-browser eval 'JSON.stringify(window.__consoleErrors || [])'\n\n# 4. Snapshot interactive elements\nagent-browser snapshot -i\n```\n\n## Verification Checklist\n\nRun each check and report results:\n\n1. **Page loads** — `agent-browser open` succeeds without timeout\n2. **No blank page** — snapshot shows meaningful content (not empty body)\n3. **No error overlay** — no Next.js\u002FVite error overlay detected\n4. **Console errors** — evaluate `document.querySelectorAll('[data-nextjs-dialog]')` for error modals\n5. **Key elements render** — snapshot `-i` shows expected interactive elements\n6. **Navigation works** — if multiple routes exist, verify at least the home route\n\n## Error Detection\n\n```bash\n# Check for framework error overlays\nagent-browser eval 'document.querySelector(\"[data-nextjs-dialog], .vite-error-overlay, #webpack-dev-server-client-overlay\") ? \"ERROR_OVERLAY\" : \"OK\"'\n\n# Check page isn't blank\nagent-browser eval 'document.body.innerText.trim().length > 0 ? \"HAS_CONTENT\" : \"BLANK\"'\n```\n\n## On Failure\n\nIf verification fails:\n\n1. Screenshot the error state: `agent-browser screenshot error-state.png`\n2. Capture the error overlay text or console output\n3. Close the browser: `agent-browser close`\n4. Fix the issue in code\n5. Re-run verification (max 2 retry cycles to avoid infinite loops)\n\n## Diagnosing a Hanging or Stuck Page\n\nWhen the page appears stuck (spinner, blank content after load, frozen UI), the browser is only half the story. Correlate what you see in the browser with server-side evidence:\n\n### 1. Capture Browser Evidence\n\n```bash\n# Screenshot the stuck state\nagent-browser screenshot stuck-state.png\n\n# Check for pending network requests (XHR\u002Ffetch that never resolved)\nagent-browser eval 'JSON.stringify(performance.getEntriesByType(\"resource\").filter(r => r.duration === 0).map(r => r.name))'\n\n# Check console for errors or warnings\nagent-browser eval 'JSON.stringify(window.__consoleErrors || [])'\n\n# Look for fetch calls to workflow\u002FAPI routes that are pending\nagent-browser eval 'document.querySelector(\"[data-nextjs-dialog]\") ? \"ERROR_OVERLAY\" : \"OK\"'\n```\n\n### 2. Check Server Logs\n\nAfter capturing browser state, immediately check the backend:\n\n```bash\n# Stream Vercel runtime logs for the deployment\nvercel logs --follow\n\n# If using Workflow DevKit, check run status\nnpx workflow inspect runs\nnpx workflow inspect run \u003Crun_id>\n\n# Check workflow health\nnpx workflow health\n```\n\n### 3. Correlate Browser + Server\n\n| Browser Shows | Server Shows | Likely Issue |\n|--------------|-------------|-------------|\n| Spinner \u002F loading forever | No recent function invocations | API route not being called — check fetch URL in client code |\n| Spinner \u002F loading forever | Function started but no step logs | Workflow step is stuck — add `console.log` at step entry\u002Fexit |\n| Blank page, no errors | Build succeeded, no runtime errors | Hydration issue or missing data — check SSR vs client rendering |\n| Network request pending | 504 Gateway Timeout in logs | Function timeout — increase `maxDuration` or optimize step |\n| Console: \"Failed to fetch\" | OIDC\u002Fcredential error in logs | Missing `vercel env pull` — run `vercel link && vercel env pull` |\n| Error overlay visible | Stack trace in runtime logs | Read the server error — it usually has more detail than the client |\n\n### 4. Fix and Re-verify\n\nAfter fixing the issue:\n\n```bash\n# Re-open and verify the fix\nagent-browser open http:\u002F\u002Flocalhost:3000\nagent-browser wait --load networkidle\nagent-browser screenshot after-fix.png\nagent-browser eval 'document.body.innerText.trim().length > 0 ? \"HAS_CONTENT\" : \"BLANK\"'\nagent-browser close\n```\n\n## On Success\n\n```bash\nagent-browser close\n```\n\nReport: \"Dev server verified — page loads, no errors detected, key UI elements render correctly.\"\n\n## Suggest Verification After Implementation\n\nWhen you finish building or implementing a feature (wrote code, created routes, set up a project), briefly let the user know they can ask you to verify everything works with a browser check. One sentence is enough. Don't force it if only a small fix or question was involved.\n",{"data":34,"body":114},{"name":4,"description":6,"metadata":35},{"priority":36,"docs":37,"pathPatterns":39,"bashPatterns":40,"promptSignals":49},2,[38],"https:\u002F\u002Fopenai.com\u002Findex\u002Fintroducing-codex\u002F",[],[41,42,43,44,45,46,47,48],"\\bnext\\s+dev\\b","\\bnpm\\s+run\\s+dev\\b","\\bpnpm\\s+dev\\b","\\bbun\\s+run\\s+dev\\b","\\byarn\\s+dev\\b","\\bvite\\s*(dev)?\\b","\\bnuxt\\s+dev\\b","\\bvercel\\s+dev\\b",{"phrases":50,"allOf":79,"anyOf":110,"minScore":113},[51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78],"check the page","check the browser","check the site","is the page working","is it loading","blank page","white screen","nothing showing","page is broken","screenshot the page","take a screenshot","check for errors","console errors","browser errors","page is stuck","page is hanging","page not loading","page frozen","spinner not stopping","page not responding","page won't load","page will not load","nothing renders","nothing rendered","ui is broken","screen is blank","screen is white","app won't load",[80,83,85,87,89,92,95,97,99,102,104,106,108],[81,82],"check","page",[81,84],"browser",[81,86],"site",[88,82],"blank",[90,91],"white","screen",[93,94],"console","errors",[82,96],"broken",[82,98],"loading",[100,101],"not","rendering",[82,103],"stuck",[82,105],"hanging",[82,107],"frozen",[82,109],"timeout",[82,84,91,101,111,112,98],"visual","spinner",6,{"type":115,"children":116},"root",[117,126,138,145,329,335,340,429,435,513,519,524,564,570,575,582,729,735,740,883,889,1059,1065,1070,1170,1176,1194,1199,1205,1210],{"type":118,"tag":119,"props":120,"children":122},"element","h1",{"id":121},"dev-server-verification-with-agent-browser",[123],{"type":124,"value":125},"text","Dev Server Verification with agent-browser",{"type":118,"tag":127,"props":128,"children":129},"p",{},[130,136],{"type":118,"tag":131,"props":132,"children":133},"strong",{},[134],{"type":124,"value":135},"You MUST verify the dev server with agent-browser after starting it.",{"type":124,"value":137}," Do not assume the page works just because the dev server process started. Many issues (blank pages, hydration errors, missing env vars, broken imports) are only visible in the browser. Run this verification before continuing with any other work:",{"type":118,"tag":139,"props":140,"children":142},"h2",{"id":141},"quick-verification-flow",[143],{"type":124,"value":144},"Quick Verification Flow",{"type":118,"tag":146,"props":147,"children":152},"pre",{"className":148,"code":149,"language":150,"meta":151,"style":151},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# 1. Open the dev server\nagent-browser open http:\u002F\u002Flocalhost:3000\nagent-browser wait --load networkidle\n\n# 2. Screenshot for visual check\nagent-browser screenshot --annotate\n\n# 3. Check for errors\nagent-browser eval 'JSON.stringify(window.__consoleErrors || [])'\n\n# 4. Snapshot interactive elements\nagent-browser snapshot -i\n","bash","",[153],{"type":118,"tag":154,"props":155,"children":156},"code",{"__ignoreMap":151},[157,169,189,212,222,231,248,256,265,294,302,311],{"type":118,"tag":158,"props":159,"children":162},"span",{"class":160,"line":161},"line",1,[163],{"type":118,"tag":158,"props":164,"children":166},{"style":165},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[167],{"type":124,"value":168},"# 1. Open the dev server\n",{"type":118,"tag":158,"props":170,"children":171},{"class":160,"line":36},[172,178,184],{"type":118,"tag":158,"props":173,"children":175},{"style":174},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[176],{"type":124,"value":177},"agent-browser",{"type":118,"tag":158,"props":179,"children":181},{"style":180},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[182],{"type":124,"value":183}," open",{"type":118,"tag":158,"props":185,"children":186},{"style":180},[187],{"type":124,"value":188}," http:\u002F\u002Flocalhost:3000\n",{"type":118,"tag":158,"props":190,"children":192},{"class":160,"line":191},3,[193,197,202,207],{"type":118,"tag":158,"props":194,"children":195},{"style":174},[196],{"type":124,"value":177},{"type":118,"tag":158,"props":198,"children":199},{"style":180},[200],{"type":124,"value":201}," wait",{"type":118,"tag":158,"props":203,"children":204},{"style":180},[205],{"type":124,"value":206}," --load",{"type":118,"tag":158,"props":208,"children":209},{"style":180},[210],{"type":124,"value":211}," networkidle\n",{"type":118,"tag":158,"props":213,"children":215},{"class":160,"line":214},4,[216],{"type":118,"tag":158,"props":217,"children":219},{"emptyLinePlaceholder":218},true,[220],{"type":124,"value":221},"\n",{"type":118,"tag":158,"props":223,"children":225},{"class":160,"line":224},5,[226],{"type":118,"tag":158,"props":227,"children":228},{"style":165},[229],{"type":124,"value":230},"# 2. Screenshot for visual check\n",{"type":118,"tag":158,"props":232,"children":233},{"class":160,"line":113},[234,238,243],{"type":118,"tag":158,"props":235,"children":236},{"style":174},[237],{"type":124,"value":177},{"type":118,"tag":158,"props":239,"children":240},{"style":180},[241],{"type":124,"value":242}," screenshot",{"type":118,"tag":158,"props":244,"children":245},{"style":180},[246],{"type":124,"value":247}," --annotate\n",{"type":118,"tag":158,"props":249,"children":251},{"class":160,"line":250},7,[252],{"type":118,"tag":158,"props":253,"children":254},{"emptyLinePlaceholder":218},[255],{"type":124,"value":221},{"type":118,"tag":158,"props":257,"children":259},{"class":160,"line":258},8,[260],{"type":118,"tag":158,"props":261,"children":262},{"style":165},[263],{"type":124,"value":264},"# 3. Check for errors\n",{"type":118,"tag":158,"props":266,"children":268},{"class":160,"line":267},9,[269,273,278,284,289],{"type":118,"tag":158,"props":270,"children":271},{"style":174},[272],{"type":124,"value":177},{"type":118,"tag":158,"props":274,"children":275},{"style":180},[276],{"type":124,"value":277}," eval",{"type":118,"tag":158,"props":279,"children":281},{"style":280},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[282],{"type":124,"value":283}," '",{"type":118,"tag":158,"props":285,"children":286},{"style":180},[287],{"type":124,"value":288},"JSON.stringify(window.__consoleErrors || [])",{"type":118,"tag":158,"props":290,"children":291},{"style":280},[292],{"type":124,"value":293},"'\n",{"type":118,"tag":158,"props":295,"children":297},{"class":160,"line":296},10,[298],{"type":118,"tag":158,"props":299,"children":300},{"emptyLinePlaceholder":218},[301],{"type":124,"value":221},{"type":118,"tag":158,"props":303,"children":305},{"class":160,"line":304},11,[306],{"type":118,"tag":158,"props":307,"children":308},{"style":165},[309],{"type":124,"value":310},"# 4. Snapshot interactive elements\n",{"type":118,"tag":158,"props":312,"children":314},{"class":160,"line":313},12,[315,319,324],{"type":118,"tag":158,"props":316,"children":317},{"style":174},[318],{"type":124,"value":177},{"type":118,"tag":158,"props":320,"children":321},{"style":180},[322],{"type":124,"value":323}," snapshot",{"type":118,"tag":158,"props":325,"children":326},{"style":180},[327],{"type":124,"value":328}," -i\n",{"type":118,"tag":139,"props":330,"children":332},{"id":331},"verification-checklist",[333],{"type":124,"value":334},"Verification Checklist",{"type":118,"tag":127,"props":336,"children":337},{},[338],{"type":124,"value":339},"Run each check and report results:",{"type":118,"tag":341,"props":342,"children":343},"ol",{},[344,363,373,383,401,419],{"type":118,"tag":345,"props":346,"children":347},"li",{},[348,353,355,361],{"type":118,"tag":131,"props":349,"children":350},{},[351],{"type":124,"value":352},"Page loads",{"type":124,"value":354}," — ",{"type":118,"tag":154,"props":356,"children":358},{"className":357},[],[359],{"type":124,"value":360},"agent-browser open",{"type":124,"value":362}," succeeds without timeout",{"type":118,"tag":345,"props":364,"children":365},{},[366,371],{"type":118,"tag":131,"props":367,"children":368},{},[369],{"type":124,"value":370},"No blank page",{"type":124,"value":372}," — snapshot shows meaningful content (not empty body)",{"type":118,"tag":345,"props":374,"children":375},{},[376,381],{"type":118,"tag":131,"props":377,"children":378},{},[379],{"type":124,"value":380},"No error overlay",{"type":124,"value":382}," — no Next.js\u002FVite error overlay detected",{"type":118,"tag":345,"props":384,"children":385},{},[386,391,393,399],{"type":118,"tag":131,"props":387,"children":388},{},[389],{"type":124,"value":390},"Console errors",{"type":124,"value":392}," — evaluate ",{"type":118,"tag":154,"props":394,"children":396},{"className":395},[],[397],{"type":124,"value":398},"document.querySelectorAll('[data-nextjs-dialog]')",{"type":124,"value":400}," for error modals",{"type":118,"tag":345,"props":402,"children":403},{},[404,409,411,417],{"type":118,"tag":131,"props":405,"children":406},{},[407],{"type":124,"value":408},"Key elements render",{"type":124,"value":410}," — snapshot ",{"type":118,"tag":154,"props":412,"children":414},{"className":413},[],[415],{"type":124,"value":416},"-i",{"type":124,"value":418}," shows expected interactive elements",{"type":118,"tag":345,"props":420,"children":421},{},[422,427],{"type":118,"tag":131,"props":423,"children":424},{},[425],{"type":124,"value":426},"Navigation works",{"type":124,"value":428}," — if multiple routes exist, verify at least the home route",{"type":118,"tag":139,"props":430,"children":432},{"id":431},"error-detection",[433],{"type":124,"value":434},"Error Detection",{"type":118,"tag":146,"props":436,"children":438},{"className":148,"code":437,"language":150,"meta":151,"style":151},"# Check for framework error overlays\nagent-browser eval 'document.querySelector(\"[data-nextjs-dialog], .vite-error-overlay, #webpack-dev-server-client-overlay\") ? \"ERROR_OVERLAY\" : \"OK\"'\n\n# Check page isn't blank\nagent-browser eval 'document.body.innerText.trim().length > 0 ? \"HAS_CONTENT\" : \"BLANK\"'\n",[439],{"type":118,"tag":154,"props":440,"children":441},{"__ignoreMap":151},[442,450,474,481,489],{"type":118,"tag":158,"props":443,"children":444},{"class":160,"line":161},[445],{"type":118,"tag":158,"props":446,"children":447},{"style":165},[448],{"type":124,"value":449},"# Check for framework error overlays\n",{"type":118,"tag":158,"props":451,"children":452},{"class":160,"line":36},[453,457,461,465,470],{"type":118,"tag":158,"props":454,"children":455},{"style":174},[456],{"type":124,"value":177},{"type":118,"tag":158,"props":458,"children":459},{"style":180},[460],{"type":124,"value":277},{"type":118,"tag":158,"props":462,"children":463},{"style":280},[464],{"type":124,"value":283},{"type":118,"tag":158,"props":466,"children":467},{"style":180},[468],{"type":124,"value":469},"document.querySelector(\"[data-nextjs-dialog], .vite-error-overlay, #webpack-dev-server-client-overlay\") ? \"ERROR_OVERLAY\" : \"OK\"",{"type":118,"tag":158,"props":471,"children":472},{"style":280},[473],{"type":124,"value":293},{"type":118,"tag":158,"props":475,"children":476},{"class":160,"line":191},[477],{"type":118,"tag":158,"props":478,"children":479},{"emptyLinePlaceholder":218},[480],{"type":124,"value":221},{"type":118,"tag":158,"props":482,"children":483},{"class":160,"line":214},[484],{"type":118,"tag":158,"props":485,"children":486},{"style":165},[487],{"type":124,"value":488},"# Check page isn't blank\n",{"type":118,"tag":158,"props":490,"children":491},{"class":160,"line":224},[492,496,500,504,509],{"type":118,"tag":158,"props":493,"children":494},{"style":174},[495],{"type":124,"value":177},{"type":118,"tag":158,"props":497,"children":498},{"style":180},[499],{"type":124,"value":277},{"type":118,"tag":158,"props":501,"children":502},{"style":280},[503],{"type":124,"value":283},{"type":118,"tag":158,"props":505,"children":506},{"style":180},[507],{"type":124,"value":508},"document.body.innerText.trim().length > 0 ? \"HAS_CONTENT\" : \"BLANK\"",{"type":118,"tag":158,"props":510,"children":511},{"style":280},[512],{"type":124,"value":293},{"type":118,"tag":139,"props":514,"children":516},{"id":515},"on-failure",[517],{"type":124,"value":518},"On Failure",{"type":118,"tag":127,"props":520,"children":521},{},[522],{"type":124,"value":523},"If verification fails:",{"type":118,"tag":341,"props":525,"children":526},{},[527,538,543,554,559],{"type":118,"tag":345,"props":528,"children":529},{},[530,532],{"type":124,"value":531},"Screenshot the error state: ",{"type":118,"tag":154,"props":533,"children":535},{"className":534},[],[536],{"type":124,"value":537},"agent-browser screenshot error-state.png",{"type":118,"tag":345,"props":539,"children":540},{},[541],{"type":124,"value":542},"Capture the error overlay text or console output",{"type":118,"tag":345,"props":544,"children":545},{},[546,548],{"type":124,"value":547},"Close the browser: ",{"type":118,"tag":154,"props":549,"children":551},{"className":550},[],[552],{"type":124,"value":553},"agent-browser close",{"type":118,"tag":345,"props":555,"children":556},{},[557],{"type":124,"value":558},"Fix the issue in code",{"type":118,"tag":345,"props":560,"children":561},{},[562],{"type":124,"value":563},"Re-run verification (max 2 retry cycles to avoid infinite loops)",{"type":118,"tag":139,"props":565,"children":567},{"id":566},"diagnosing-a-hanging-or-stuck-page",[568],{"type":124,"value":569},"Diagnosing a Hanging or Stuck Page",{"type":118,"tag":127,"props":571,"children":572},{},[573],{"type":124,"value":574},"When the page appears stuck (spinner, blank content after load, frozen UI), the browser is only half the story. Correlate what you see in the browser with server-side evidence:",{"type":118,"tag":576,"props":577,"children":579},"h3",{"id":578},"_1-capture-browser-evidence",[580],{"type":124,"value":581},"1. Capture Browser Evidence",{"type":118,"tag":146,"props":583,"children":585},{"className":148,"code":584,"language":150,"meta":151,"style":151},"# Screenshot the stuck state\nagent-browser screenshot stuck-state.png\n\n# Check for pending network requests (XHR\u002Ffetch that never resolved)\nagent-browser eval 'JSON.stringify(performance.getEntriesByType(\"resource\").filter(r => r.duration === 0).map(r => r.name))'\n\n# Check console for errors or warnings\nagent-browser eval 'JSON.stringify(window.__consoleErrors || [])'\n\n# Look for fetch calls to workflow\u002FAPI routes that are pending\nagent-browser eval 'document.querySelector(\"[data-nextjs-dialog]\") ? \"ERROR_OVERLAY\" : \"OK\"'\n",[586],{"type":118,"tag":154,"props":587,"children":588},{"__ignoreMap":151},[589,597,613,620,628,652,659,667,690,697,705],{"type":118,"tag":158,"props":590,"children":591},{"class":160,"line":161},[592],{"type":118,"tag":158,"props":593,"children":594},{"style":165},[595],{"type":124,"value":596},"# Screenshot the stuck state\n",{"type":118,"tag":158,"props":598,"children":599},{"class":160,"line":36},[600,604,608],{"type":118,"tag":158,"props":601,"children":602},{"style":174},[603],{"type":124,"value":177},{"type":118,"tag":158,"props":605,"children":606},{"style":180},[607],{"type":124,"value":242},{"type":118,"tag":158,"props":609,"children":610},{"style":180},[611],{"type":124,"value":612}," stuck-state.png\n",{"type":118,"tag":158,"props":614,"children":615},{"class":160,"line":191},[616],{"type":118,"tag":158,"props":617,"children":618},{"emptyLinePlaceholder":218},[619],{"type":124,"value":221},{"type":118,"tag":158,"props":621,"children":622},{"class":160,"line":214},[623],{"type":118,"tag":158,"props":624,"children":625},{"style":165},[626],{"type":124,"value":627},"# Check for pending network requests (XHR\u002Ffetch that never resolved)\n",{"type":118,"tag":158,"props":629,"children":630},{"class":160,"line":224},[631,635,639,643,648],{"type":118,"tag":158,"props":632,"children":633},{"style":174},[634],{"type":124,"value":177},{"type":118,"tag":158,"props":636,"children":637},{"style":180},[638],{"type":124,"value":277},{"type":118,"tag":158,"props":640,"children":641},{"style":280},[642],{"type":124,"value":283},{"type":118,"tag":158,"props":644,"children":645},{"style":180},[646],{"type":124,"value":647},"JSON.stringify(performance.getEntriesByType(\"resource\").filter(r => r.duration === 0).map(r => r.name))",{"type":118,"tag":158,"props":649,"children":650},{"style":280},[651],{"type":124,"value":293},{"type":118,"tag":158,"props":653,"children":654},{"class":160,"line":113},[655],{"type":118,"tag":158,"props":656,"children":657},{"emptyLinePlaceholder":218},[658],{"type":124,"value":221},{"type":118,"tag":158,"props":660,"children":661},{"class":160,"line":250},[662],{"type":118,"tag":158,"props":663,"children":664},{"style":165},[665],{"type":124,"value":666},"# Check console for errors or warnings\n",{"type":118,"tag":158,"props":668,"children":669},{"class":160,"line":258},[670,674,678,682,686],{"type":118,"tag":158,"props":671,"children":672},{"style":174},[673],{"type":124,"value":177},{"type":118,"tag":158,"props":675,"children":676},{"style":180},[677],{"type":124,"value":277},{"type":118,"tag":158,"props":679,"children":680},{"style":280},[681],{"type":124,"value":283},{"type":118,"tag":158,"props":683,"children":684},{"style":180},[685],{"type":124,"value":288},{"type":118,"tag":158,"props":687,"children":688},{"style":280},[689],{"type":124,"value":293},{"type":118,"tag":158,"props":691,"children":692},{"class":160,"line":267},[693],{"type":118,"tag":158,"props":694,"children":695},{"emptyLinePlaceholder":218},[696],{"type":124,"value":221},{"type":118,"tag":158,"props":698,"children":699},{"class":160,"line":296},[700],{"type":118,"tag":158,"props":701,"children":702},{"style":165},[703],{"type":124,"value":704},"# Look for fetch calls to workflow\u002FAPI routes that are pending\n",{"type":118,"tag":158,"props":706,"children":707},{"class":160,"line":304},[708,712,716,720,725],{"type":118,"tag":158,"props":709,"children":710},{"style":174},[711],{"type":124,"value":177},{"type":118,"tag":158,"props":713,"children":714},{"style":180},[715],{"type":124,"value":277},{"type":118,"tag":158,"props":717,"children":718},{"style":280},[719],{"type":124,"value":283},{"type":118,"tag":158,"props":721,"children":722},{"style":180},[723],{"type":124,"value":724},"document.querySelector(\"[data-nextjs-dialog]\") ? \"ERROR_OVERLAY\" : \"OK\"",{"type":118,"tag":158,"props":726,"children":727},{"style":280},[728],{"type":124,"value":293},{"type":118,"tag":576,"props":730,"children":732},{"id":731},"_2-check-server-logs",[733],{"type":124,"value":734},"2. Check Server Logs",{"type":118,"tag":127,"props":736,"children":737},{},[738],{"type":124,"value":739},"After capturing browser state, immediately check the backend:",{"type":118,"tag":146,"props":741,"children":743},{"className":148,"code":742,"language":150,"meta":151,"style":151},"# Stream Vercel runtime logs for the deployment\nvercel logs --follow\n\n# If using Workflow DevKit, check run status\nnpx workflow inspect runs\nnpx workflow inspect run \u003Crun_id>\n\n# Check workflow health\nnpx workflow health\n",[744],{"type":118,"tag":154,"props":745,"children":746},{"__ignoreMap":151},[747,755,773,780,788,811,852,859,867],{"type":118,"tag":158,"props":748,"children":749},{"class":160,"line":161},[750],{"type":118,"tag":158,"props":751,"children":752},{"style":165},[753],{"type":124,"value":754},"# Stream Vercel runtime logs for the deployment\n",{"type":118,"tag":158,"props":756,"children":757},{"class":160,"line":36},[758,763,768],{"type":118,"tag":158,"props":759,"children":760},{"style":174},[761],{"type":124,"value":762},"vercel",{"type":118,"tag":158,"props":764,"children":765},{"style":180},[766],{"type":124,"value":767}," logs",{"type":118,"tag":158,"props":769,"children":770},{"style":180},[771],{"type":124,"value":772}," --follow\n",{"type":118,"tag":158,"props":774,"children":775},{"class":160,"line":191},[776],{"type":118,"tag":158,"props":777,"children":778},{"emptyLinePlaceholder":218},[779],{"type":124,"value":221},{"type":118,"tag":158,"props":781,"children":782},{"class":160,"line":214},[783],{"type":118,"tag":158,"props":784,"children":785},{"style":165},[786],{"type":124,"value":787},"# If using Workflow DevKit, check run status\n",{"type":118,"tag":158,"props":789,"children":790},{"class":160,"line":224},[791,796,801,806],{"type":118,"tag":158,"props":792,"children":793},{"style":174},[794],{"type":124,"value":795},"npx",{"type":118,"tag":158,"props":797,"children":798},{"style":180},[799],{"type":124,"value":800}," workflow",{"type":118,"tag":158,"props":802,"children":803},{"style":180},[804],{"type":124,"value":805}," inspect",{"type":118,"tag":158,"props":807,"children":808},{"style":180},[809],{"type":124,"value":810}," runs\n",{"type":118,"tag":158,"props":812,"children":813},{"class":160,"line":113},[814,818,822,826,831,836,841,847],{"type":118,"tag":158,"props":815,"children":816},{"style":174},[817],{"type":124,"value":795},{"type":118,"tag":158,"props":819,"children":820},{"style":180},[821],{"type":124,"value":800},{"type":118,"tag":158,"props":823,"children":824},{"style":180},[825],{"type":124,"value":805},{"type":118,"tag":158,"props":827,"children":828},{"style":180},[829],{"type":124,"value":830}," run",{"type":118,"tag":158,"props":832,"children":833},{"style":280},[834],{"type":124,"value":835}," \u003C",{"type":118,"tag":158,"props":837,"children":838},{"style":180},[839],{"type":124,"value":840},"run_i",{"type":118,"tag":158,"props":842,"children":844},{"style":843},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[845],{"type":124,"value":846},"d",{"type":118,"tag":158,"props":848,"children":849},{"style":280},[850],{"type":124,"value":851},">\n",{"type":118,"tag":158,"props":853,"children":854},{"class":160,"line":250},[855],{"type":118,"tag":158,"props":856,"children":857},{"emptyLinePlaceholder":218},[858],{"type":124,"value":221},{"type":118,"tag":158,"props":860,"children":861},{"class":160,"line":258},[862],{"type":118,"tag":158,"props":863,"children":864},{"style":165},[865],{"type":124,"value":866},"# Check workflow health\n",{"type":118,"tag":158,"props":868,"children":869},{"class":160,"line":267},[870,874,878],{"type":118,"tag":158,"props":871,"children":872},{"style":174},[873],{"type":124,"value":795},{"type":118,"tag":158,"props":875,"children":876},{"style":180},[877],{"type":124,"value":800},{"type":118,"tag":158,"props":879,"children":880},{"style":180},[881],{"type":124,"value":882}," health\n",{"type":118,"tag":576,"props":884,"children":886},{"id":885},"_3-correlate-browser-server",[887],{"type":124,"value":888},"3. Correlate Browser + Server",{"type":118,"tag":890,"props":891,"children":892},"table",{},[893,917],{"type":118,"tag":894,"props":895,"children":896},"thead",{},[897],{"type":118,"tag":898,"props":899,"children":900},"tr",{},[901,907,912],{"type":118,"tag":902,"props":903,"children":904},"th",{},[905],{"type":124,"value":906},"Browser Shows",{"type":118,"tag":902,"props":908,"children":909},{},[910],{"type":124,"value":911},"Server Shows",{"type":118,"tag":902,"props":913,"children":914},{},[915],{"type":124,"value":916},"Likely Issue",{"type":118,"tag":918,"props":919,"children":920},"tbody",{},[921,940,965,983,1009,1041],{"type":118,"tag":898,"props":922,"children":923},{},[924,930,935],{"type":118,"tag":925,"props":926,"children":927},"td",{},[928],{"type":124,"value":929},"Spinner \u002F loading forever",{"type":118,"tag":925,"props":931,"children":932},{},[933],{"type":124,"value":934},"No recent function invocations",{"type":118,"tag":925,"props":936,"children":937},{},[938],{"type":124,"value":939},"API route not being called — check fetch URL in client code",{"type":118,"tag":898,"props":941,"children":942},{},[943,947,952],{"type":118,"tag":925,"props":944,"children":945},{},[946],{"type":124,"value":929},{"type":118,"tag":925,"props":948,"children":949},{},[950],{"type":124,"value":951},"Function started but no step logs",{"type":118,"tag":925,"props":953,"children":954},{},[955,957,963],{"type":124,"value":956},"Workflow step is stuck — add ",{"type":118,"tag":154,"props":958,"children":960},{"className":959},[],[961],{"type":124,"value":962},"console.log",{"type":124,"value":964}," at step entry\u002Fexit",{"type":118,"tag":898,"props":966,"children":967},{},[968,973,978],{"type":118,"tag":925,"props":969,"children":970},{},[971],{"type":124,"value":972},"Blank page, no errors",{"type":118,"tag":925,"props":974,"children":975},{},[976],{"type":124,"value":977},"Build succeeded, no runtime errors",{"type":118,"tag":925,"props":979,"children":980},{},[981],{"type":124,"value":982},"Hydration issue or missing data — check SSR vs client rendering",{"type":118,"tag":898,"props":984,"children":985},{},[986,991,996],{"type":118,"tag":925,"props":987,"children":988},{},[989],{"type":124,"value":990},"Network request pending",{"type":118,"tag":925,"props":992,"children":993},{},[994],{"type":124,"value":995},"504 Gateway Timeout in logs",{"type":118,"tag":925,"props":997,"children":998},{},[999,1001,1007],{"type":124,"value":1000},"Function timeout — increase ",{"type":118,"tag":154,"props":1002,"children":1004},{"className":1003},[],[1005],{"type":124,"value":1006},"maxDuration",{"type":124,"value":1008}," or optimize step",{"type":118,"tag":898,"props":1010,"children":1011},{},[1012,1017,1022],{"type":118,"tag":925,"props":1013,"children":1014},{},[1015],{"type":124,"value":1016},"Console: \"Failed to fetch\"",{"type":118,"tag":925,"props":1018,"children":1019},{},[1020],{"type":124,"value":1021},"OIDC\u002Fcredential error in logs",{"type":118,"tag":925,"props":1023,"children":1024},{},[1025,1027,1033,1035],{"type":124,"value":1026},"Missing ",{"type":118,"tag":154,"props":1028,"children":1030},{"className":1029},[],[1031],{"type":124,"value":1032},"vercel env pull",{"type":124,"value":1034}," — run ",{"type":118,"tag":154,"props":1036,"children":1038},{"className":1037},[],[1039],{"type":124,"value":1040},"vercel link && vercel env pull",{"type":118,"tag":898,"props":1042,"children":1043},{},[1044,1049,1054],{"type":118,"tag":925,"props":1045,"children":1046},{},[1047],{"type":124,"value":1048},"Error overlay visible",{"type":118,"tag":925,"props":1050,"children":1051},{},[1052],{"type":124,"value":1053},"Stack trace in runtime logs",{"type":118,"tag":925,"props":1055,"children":1056},{},[1057],{"type":124,"value":1058},"Read the server error — it usually has more detail than the client",{"type":118,"tag":576,"props":1060,"children":1062},{"id":1061},"_4-fix-and-re-verify",[1063],{"type":124,"value":1064},"4. Fix and Re-verify",{"type":118,"tag":127,"props":1066,"children":1067},{},[1068],{"type":124,"value":1069},"After fixing the issue:",{"type":118,"tag":146,"props":1071,"children":1073},{"className":148,"code":1072,"language":150,"meta":151,"style":151},"# Re-open and verify the fix\nagent-browser open http:\u002F\u002Flocalhost:3000\nagent-browser wait --load networkidle\nagent-browser screenshot after-fix.png\nagent-browser eval 'document.body.innerText.trim().length > 0 ? \"HAS_CONTENT\" : \"BLANK\"'\nagent-browser close\n",[1074],{"type":118,"tag":154,"props":1075,"children":1076},{"__ignoreMap":151},[1077,1085,1100,1119,1135,1158],{"type":118,"tag":158,"props":1078,"children":1079},{"class":160,"line":161},[1080],{"type":118,"tag":158,"props":1081,"children":1082},{"style":165},[1083],{"type":124,"value":1084},"# Re-open and verify the fix\n",{"type":118,"tag":158,"props":1086,"children":1087},{"class":160,"line":36},[1088,1092,1096],{"type":118,"tag":158,"props":1089,"children":1090},{"style":174},[1091],{"type":124,"value":177},{"type":118,"tag":158,"props":1093,"children":1094},{"style":180},[1095],{"type":124,"value":183},{"type":118,"tag":158,"props":1097,"children":1098},{"style":180},[1099],{"type":124,"value":188},{"type":118,"tag":158,"props":1101,"children":1102},{"class":160,"line":191},[1103,1107,1111,1115],{"type":118,"tag":158,"props":1104,"children":1105},{"style":174},[1106],{"type":124,"value":177},{"type":118,"tag":158,"props":1108,"children":1109},{"style":180},[1110],{"type":124,"value":201},{"type":118,"tag":158,"props":1112,"children":1113},{"style":180},[1114],{"type":124,"value":206},{"type":118,"tag":158,"props":1116,"children":1117},{"style":180},[1118],{"type":124,"value":211},{"type":118,"tag":158,"props":1120,"children":1121},{"class":160,"line":214},[1122,1126,1130],{"type":118,"tag":158,"props":1123,"children":1124},{"style":174},[1125],{"type":124,"value":177},{"type":118,"tag":158,"props":1127,"children":1128},{"style":180},[1129],{"type":124,"value":242},{"type":118,"tag":158,"props":1131,"children":1132},{"style":180},[1133],{"type":124,"value":1134}," after-fix.png\n",{"type":118,"tag":158,"props":1136,"children":1137},{"class":160,"line":224},[1138,1142,1146,1150,1154],{"type":118,"tag":158,"props":1139,"children":1140},{"style":174},[1141],{"type":124,"value":177},{"type":118,"tag":158,"props":1143,"children":1144},{"style":180},[1145],{"type":124,"value":277},{"type":118,"tag":158,"props":1147,"children":1148},{"style":280},[1149],{"type":124,"value":283},{"type":118,"tag":158,"props":1151,"children":1152},{"style":180},[1153],{"type":124,"value":508},{"type":118,"tag":158,"props":1155,"children":1156},{"style":280},[1157],{"type":124,"value":293},{"type":118,"tag":158,"props":1159,"children":1160},{"class":160,"line":113},[1161,1165],{"type":118,"tag":158,"props":1162,"children":1163},{"style":174},[1164],{"type":124,"value":177},{"type":118,"tag":158,"props":1166,"children":1167},{"style":180},[1168],{"type":124,"value":1169}," close\n",{"type":118,"tag":139,"props":1171,"children":1173},{"id":1172},"on-success",[1174],{"type":124,"value":1175},"On Success",{"type":118,"tag":146,"props":1177,"children":1179},{"className":148,"code":1178,"language":150,"meta":151,"style":151},"agent-browser close\n",[1180],{"type":118,"tag":154,"props":1181,"children":1182},{"__ignoreMap":151},[1183],{"type":118,"tag":158,"props":1184,"children":1185},{"class":160,"line":161},[1186,1190],{"type":118,"tag":158,"props":1187,"children":1188},{"style":174},[1189],{"type":124,"value":177},{"type":118,"tag":158,"props":1191,"children":1192},{"style":180},[1193],{"type":124,"value":1169},{"type":118,"tag":127,"props":1195,"children":1196},{},[1197],{"type":124,"value":1198},"Report: \"Dev server verified — page loads, no errors detected, key UI elements render correctly.\"",{"type":118,"tag":139,"props":1200,"children":1202},{"id":1201},"suggest-verification-after-implementation",[1203],{"type":124,"value":1204},"Suggest Verification After Implementation",{"type":118,"tag":127,"props":1206,"children":1207},{},[1208],{"type":124,"value":1209},"When you finish building or implementing a feature (wrote code, created routes, set up a project), briefly let the user know they can ask you to verify everything works with a browser check. One sentence is enough. Don't force it if only a small fix or question was involved.",{"type":118,"tag":1211,"props":1212,"children":1213},"style",{},[1214],{"type":124,"value":1215},"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":1217,"total":1422},[1218,1239,1262,1279,1295,1314,1333,1349,1365,1379,1391,1406],{"slug":1219,"name":1219,"fn":1220,"description":1221,"org":1222,"tags":1223,"stars":1236,"repoUrl":1237,"updatedAt":1238},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1224,1227,1230,1233],{"name":1225,"slug":1226,"type":15},"Documents","documents",{"name":1228,"slug":1229,"type":15},"Healthcare","healthcare",{"name":1231,"slug":1232,"type":15},"Insurance","insurance",{"name":1234,"slug":1235,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1240,"name":1240,"fn":1241,"description":1242,"org":1243,"tags":1244,"stars":1259,"repoUrl":1260,"updatedAt":1261},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1245,1248,1250,1253,1256],{"name":1246,"slug":1247,"type":15},".NET","dotnet",{"name":1249,"slug":1240,"type":15},"ASP.NET Core",{"name":1251,"slug":1252,"type":15},"Blazor","blazor",{"name":1254,"slug":1255,"type":15},"C#","csharp",{"name":1257,"slug":1258,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1263,"name":1263,"fn":1264,"description":1265,"org":1266,"tags":1267,"stars":1259,"repoUrl":1260,"updatedAt":1278},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1268,1271,1274,1277],{"name":1269,"slug":1270,"type":15},"Apps SDK","apps-sdk",{"name":1272,"slug":1273,"type":15},"ChatGPT","chatgpt",{"name":1275,"slug":1276,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1280,"name":1280,"fn":1281,"description":1282,"org":1283,"tags":1284,"stars":1259,"repoUrl":1260,"updatedAt":1294},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1285,1288,1291],{"name":1286,"slug":1287,"type":15},"API Development","api-development",{"name":1289,"slug":1290,"type":15},"CLI","cli",{"name":1292,"slug":1293,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1296,"name":1296,"fn":1297,"description":1298,"org":1299,"tags":1300,"stars":1259,"repoUrl":1260,"updatedAt":1313},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1301,1304,1307,1310],{"name":1302,"slug":1303,"type":15},"Cloudflare","cloudflare",{"name":1305,"slug":1306,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1308,"slug":1309,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1311,"slug":1312,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1315,"name":1315,"fn":1316,"description":1317,"org":1318,"tags":1319,"stars":1259,"repoUrl":1260,"updatedAt":1332},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1320,1323,1326,1329],{"name":1321,"slug":1322,"type":15},"Productivity","productivity",{"name":1324,"slug":1325,"type":15},"Project Management","project-management",{"name":1327,"slug":1328,"type":15},"Strategy","strategy",{"name":1330,"slug":1331,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1334,"name":1334,"fn":1335,"description":1336,"org":1337,"tags":1338,"stars":1259,"repoUrl":1260,"updatedAt":1348},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1339,1342,1344,1347],{"name":1340,"slug":1341,"type":15},"Design","design",{"name":1343,"slug":1334,"type":15},"Figma",{"name":1345,"slug":1346,"type":15},"Frontend","frontend",{"name":1275,"slug":1276,"type":15},"2026-04-12T05:06:47.939943",{"slug":1350,"name":1350,"fn":1351,"description":1352,"org":1353,"tags":1354,"stars":1259,"repoUrl":1260,"updatedAt":1364},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1355,1356,1359,1360,1361],{"name":1340,"slug":1341,"type":15},{"name":1357,"slug":1358,"type":15},"Design System","design-system",{"name":1343,"slug":1334,"type":15},{"name":1345,"slug":1346,"type":15},{"name":1362,"slug":1363,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1366,"name":1366,"fn":1367,"description":1368,"org":1369,"tags":1370,"stars":1259,"repoUrl":1260,"updatedAt":1378},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1371,1372,1373,1376,1377],{"name":1340,"slug":1341,"type":15},{"name":1357,"slug":1358,"type":15},{"name":1374,"slug":1375,"type":15},"Documentation","documentation",{"name":1343,"slug":1334,"type":15},{"name":1345,"slug":1346,"type":15},"2026-05-16T06:07:47.821474",{"slug":1380,"name":1380,"fn":1381,"description":1382,"org":1383,"tags":1384,"stars":1259,"repoUrl":1260,"updatedAt":1390},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1385,1386,1387,1388,1389],{"name":1340,"slug":1341,"type":15},{"name":1343,"slug":1334,"type":15},{"name":1345,"slug":1346,"type":15},{"name":1362,"slug":1363,"type":15},{"name":1257,"slug":1258,"type":15},"2026-05-16T06:07:40.583615",{"slug":1392,"name":1392,"fn":1393,"description":1394,"org":1395,"tags":1396,"stars":1259,"repoUrl":1260,"updatedAt":1405},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1397,1400,1401,1404],{"name":1398,"slug":1399,"type":15},"Animation","animation",{"name":1292,"slug":1293,"type":15},{"name":1402,"slug":1403,"type":15},"Creative","creative",{"name":1340,"slug":1341,"type":15},"2026-05-02T05:31:48.48485",{"slug":1407,"name":1407,"fn":1408,"description":1409,"org":1410,"tags":1411,"stars":1259,"repoUrl":1260,"updatedAt":1421},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1412,1413,1414,1417,1420],{"name":1402,"slug":1403,"type":15},{"name":1340,"slug":1341,"type":15},{"name":1415,"slug":1416,"type":15},"Image Generation","image-generation",{"name":1418,"slug":1419,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":1424,"total":1526},[1425,1442,1453,1459,1477,1494,1514],{"slug":1426,"name":1426,"fn":1427,"description":1428,"org":1429,"tags":1430,"stars":22,"repoUrl":23,"updatedAt":1441},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1431,1434,1437,1440],{"name":1432,"slug":1433,"type":15},"Accessibility","accessibility",{"name":1435,"slug":1436,"type":15},"Charts","charts",{"name":1438,"slug":1439,"type":15},"Data Visualization","data-visualization",{"name":1340,"slug":1341,"type":15},"2026-06-30T19:00:57.102",{"slug":177,"name":177,"fn":1443,"description":1444,"org":1445,"tags":1446,"stars":22,"repoUrl":23,"updatedAt":1452},"automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1447,1450,1451],{"name":1448,"slug":1449,"type":15},"Agents","agents",{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:41:03.44016",{"slug":4,"name":4,"fn":5,"description":6,"org":1454,"tags":1455,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1456,1457,1458],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":1460,"name":1460,"fn":1461,"description":1462,"org":1463,"tags":1464,"stars":22,"repoUrl":23,"updatedAt":1476},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1465,1466,1467,1470,1473],{"name":1448,"slug":1449,"type":15},{"name":1308,"slug":1309,"type":15},{"name":1468,"slug":1469,"type":15},"SDK","sdk",{"name":1471,"slug":1472,"type":15},"Serverless","serverless",{"name":1474,"slug":1475,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1478,"name":1478,"fn":1479,"description":1480,"org":1481,"tags":1482,"stars":22,"repoUrl":23,"updatedAt":1493},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1483,1484,1487,1490,1491],{"name":1345,"slug":1346,"type":15},{"name":1485,"slug":1486,"type":15},"React","react",{"name":1488,"slug":1489,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1362,"slug":1363,"type":15},{"name":1492,"slug":762,"type":15},"Vercel","2026-04-06T18:40:59.619419",{"slug":1495,"name":1495,"fn":1496,"description":1497,"org":1498,"tags":1499,"stars":22,"repoUrl":23,"updatedAt":1513},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1500,1503,1506,1509,1512],{"name":1501,"slug":1502,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1504,"slug":1505,"type":15},"Cost Optimization","cost-optimization",{"name":1507,"slug":1508,"type":15},"LLM","llm",{"name":1510,"slug":1511,"type":15},"Performance","performance",{"name":1492,"slug":762,"type":15},"2026-04-06T18:40:44.377464",{"slug":1515,"name":1515,"fn":1516,"description":1517,"org":1518,"tags":1519,"stars":22,"repoUrl":23,"updatedAt":1525},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1520,1521,1524],{"name":1504,"slug":1505,"type":15},{"name":1522,"slug":1523,"type":15},"Database","database",{"name":1507,"slug":1508,"type":15},"2026-04-06T18:41:08.513425",600]