[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-web-perf":3,"mdc--e4s8wd-key":36,"related-repo-openai-web-perf":1664,"related-org-openai-web-perf":1784},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"web-perf","analyze web performance with DevTools","Analyzes web performance using Chrome DevTools MCP. Measures Core Web Vitals (FCP, LCP, TBT, CLS, Speed Index), identifies render-blocking resources, network dependency chains, layout shifts, caching issues, and accessibility gaps. Use when asked to audit, profile, debug, or optimize page load performance, Lighthouse scores, or site speed. Biases towards retrieval from current documentation over pre-trained knowledge.",{"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,22],{"name":13,"slug":14,"type":15},"Observability","observability","tag",{"name":17,"slug":18,"type":15},"Performance","performance",{"name":20,"slug":21,"type":15},"Web Development","web-development",{"name":23,"slug":24,"type":15},"Frontend","frontend",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:39:44.207636",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fcloudflare\u002Fskills\u002Fweb-perf","---\nname: web-perf\ndescription: Analyzes web performance using Chrome DevTools MCP. Measures Core Web Vitals (FCP, LCP, TBT, CLS, Speed Index), identifies render-blocking resources, network dependency chains, layout shifts, caching issues, and accessibility gaps. Use when asked to audit, profile, debug, or optimize page load performance, Lighthouse scores, or site speed. Biases towards retrieval from current documentation over pre-trained knowledge.\n---\n\n# Web Performance Audit\n\nYour knowledge of web performance metrics, thresholds, and tooling APIs may be outdated. **Prefer retrieval over pre-training** when citing specific numbers or recommendations.\n\n## Retrieval Sources\n\n| Source | How to retrieve | Use for |\n|--------|----------------|---------|\n| web.dev | `https:\u002F\u002Fweb.dev\u002Farticles\u002Fvitals` | Core Web Vitals thresholds, definitions |\n| Chrome DevTools docs | `https:\u002F\u002Fdeveloper.chrome.com\u002Fdocs\u002Fdevtools\u002Fperformance` | Tooling APIs, trace analysis |\n| Lighthouse scoring | `https:\u002F\u002Fdeveloper.chrome.com\u002Fdocs\u002Flighthouse\u002Fperformance\u002Fperformance-scoring` | Score weights, metric thresholds |\n\n## FIRST: Verify MCP Tools Available\n\n**Run this before starting.** Try calling `navigate_page` or `performance_start_trace`. If unavailable, STOP—the chrome-devtools MCP server isn't configured.\n\nAsk the user to add this to their MCP config:\n\n```json\n\"chrome-devtools\": {\n  \"type\": \"local\",\n  \"command\": [\"npx\", \"-y\", \"chrome-devtools-mcp@latest\"]\n}\n```\n\n## Key Guidelines\n\n- **Be assertive**: Verify claims by checking network requests, DOM, or codebase—then state findings definitively.\n- **Verify before recommending**: Confirm something is unused before suggesting removal.\n- **Quantify impact**: Use estimated savings from insights. Don't prioritize changes with 0ms impact.\n- **Skip non-issues**: If render-blocking resources have 0ms estimated impact, note but don't recommend action.\n- **Be specific**: Say \"compress hero.png (450KB) to WebP\" not \"optimize images\".\n- **Prioritize ruthlessly**: A site with 200ms LCP and 0 CLS is already excellent—say so.\n\n## Quick Reference\n\n| Task | Tool Call |\n|------|-----------|\n| Load page | `navigate_page(url: \"...\")` |\n| Start trace | `performance_start_trace(autoStop: true, reload: true)` |\n| Analyze insight | `performance_analyze_insight(insightSetId: \"...\", insightName: \"...\")` |\n| List requests | `list_network_requests(resourceTypes: [\"Script\", \"Stylesheet\", ...])` |\n| Request details | `get_network_request(reqid: \u003Cid>)` |\n| A11y snapshot | `take_snapshot(verbose: true)` |\n\n## Workflow\n\nCopy this checklist to track progress:\n\n```\nAudit Progress:\n- [ ] Phase 1: Performance trace (navigate + record)\n- [ ] Phase 2: Core Web Vitals analysis (includes CLS culprits)\n- [ ] Phase 3: Network analysis\n- [ ] Phase 4: Accessibility snapshot\n- [ ] Phase 5: Codebase analysis (skip if third-party site)\n```\n\n### Phase 1: Performance Trace\n\n1. Navigate to the target URL:\n   ```\n   navigate_page(url: \"\u003Ctarget-url>\")\n   ```\n\n2. Start a performance trace with reload to capture cold-load metrics:\n   ```\n   performance_start_trace(autoStop: true, reload: true)\n   ```\n\n3. Wait for trace completion, then retrieve results.\n\n**Troubleshooting:**\n- If trace returns empty or fails, verify the page loaded correctly with `navigate_page` first\n- If insight names don't match, inspect the trace response to list available insights\n\n### Phase 2: Core Web Vitals Analysis\n\nUse `performance_analyze_insight` to extract key metrics.\n\n**Note:** Insight names may vary across Chrome DevTools versions. If an insight name doesn't work, check the `insightSetId` from the trace response to discover available insights.\n\nCommon insight names:\n\n| Metric | Insight Name | What to Look For |\n|--------|--------------|------------------|\n| LCP | `LCPBreakdown` | Time to largest contentful paint; breakdown of TTFB, resource load, render delay |\n| CLS | `CLSCulprits` | Elements causing layout shifts (images without dimensions, injected content, font swaps) |\n| Render Blocking | `RenderBlocking` | CSS\u002FJS blocking first paint |\n| Document Latency | `DocumentLatency` | Server response time issues |\n| Network Dependencies | `NetworkRequestsDepGraph` | Request chains delaying critical resources |\n\nExample:\n```\nperformance_analyze_insight(insightSetId: \"\u003Cid-from-trace>\", insightName: \"LCPBreakdown\")\n```\n\n**Key thresholds (good\u002Fneeds-improvement\u002Fpoor):**\n- TTFB: \u003C 800ms \u002F \u003C 1.8s \u002F > 1.8s\n- FCP: \u003C 1.8s \u002F \u003C 3s \u002F > 3s\n- LCP: \u003C 2.5s \u002F \u003C 4s \u002F > 4s\n- INP: \u003C 200ms \u002F \u003C 500ms \u002F > 500ms\n- TBT: \u003C 200ms \u002F \u003C 600ms \u002F > 600ms\n- CLS: \u003C 0.1 \u002F \u003C 0.25 \u002F > 0.25\n- Speed Index: \u003C 3.4s \u002F \u003C 5.8s \u002F > 5.8s\n\n### Phase 3: Network Analysis\n\nList all network requests to identify optimization opportunities:\n```\nlist_network_requests(resourceTypes: [\"Script\", \"Stylesheet\", \"Document\", \"Font\", \"Image\"])\n```\n\n**Look for:**\n\n1. **Render-blocking resources**: JS\u002FCSS in `\u003Chead>` without `async`\u002F`defer`\u002F`media` attributes\n2. **Network chains**: Resources discovered late because they depend on other resources loading first (e.g., CSS imports, JS-loaded fonts)\n3. **Missing preloads**: Critical resources (fonts, hero images, key scripts) not preloaded\n4. **Caching issues**: Missing or weak `Cache-Control`, `ETag`, or `Last-Modified` headers\n5. **Large payloads**: Uncompressed or oversized JS\u002FCSS bundles\n6. **Unused preconnects**: If flagged, verify by checking if ANY requests went to that origin. If zero requests, it's definitively unused—recommend removal. If requests exist but loaded late, the preconnect may still be valuable.\n\nFor detailed request info:\n```\nget_network_request(reqid: \u003Cid>)\n```\n\n### Phase 4: Accessibility Snapshot\n\nTake an accessibility tree snapshot:\n```\ntake_snapshot(verbose: true)\n```\n\n**Flag high-level gaps:**\n- Missing or duplicate ARIA IDs\n- Elements with poor contrast ratios (check against WCAG AA: 4.5:1 for normal text, 3:1 for large text)\n- Focus traps or missing focus indicators\n- Interactive elements without accessible names\n\n## Phase 5: Codebase Analysis\n\n**Skip if auditing a third-party site without codebase access.**\n\nAnalyze the codebase to understand where improvements can be made.\n\n### Detect Framework & Bundler\n\nSearch for configuration files to identify the stack:\n\n| Tool | Config Files |\n|------|--------------|\n| Webpack | `webpack.config.js`, `webpack.*.js` |\n| Vite | `vite.config.js`, `vite.config.ts` |\n| Rollup | `rollup.config.js`, `rollup.config.mjs` |\n| esbuild | `esbuild.config.js`, build scripts with `esbuild` |\n| Parcel | `.parcelrc`, `package.json` (parcel field) |\n| Next.js | `next.config.js`, `next.config.mjs` |\n| Nuxt | `nuxt.config.js`, `nuxt.config.ts` |\n| SvelteKit | `svelte.config.js` |\n| Astro | `astro.config.mjs` |\n\nAlso check `package.json` for framework dependencies and build scripts.\n\n### Tree-Shaking & Dead Code\n\n- **Webpack**: Check for `mode: 'production'`, `sideEffects` in package.json, `usedExports` optimization\n- **Vite\u002FRollup**: Tree-shaking enabled by default; check for `treeshake` options\n- **Look for**: Barrel files (`index.js` re-exports), large utility libraries imported wholesale (lodash, moment)\n\n### Unused JS\u002FCSS\n\n- Check for CSS-in-JS vs. static CSS extraction\n- Look for PurgeCSS\u002FUnCSS configuration (Tailwind's `content` config)\n- Identify dynamic imports vs. eager loading\n\n### Polyfills\n\n- Check for `@babel\u002Fpreset-env` targets and `useBuiltIns` setting\n- Look for `core-js` imports (often oversized)\n- Check `browserslist` config for overly broad targeting\n\n### Compression & Minification\n\n- Check for `terser`, `esbuild`, or `swc` minification\n- Look for gzip\u002Fbrotli compression in build output or server config\n- Check for source maps in production builds (should be external or disabled)\n\n## Output Format\n\nPresent findings as:\n\n1. **Core Web Vitals Summary** - Table with metric, value, and rating (good\u002Fneeds-improvement\u002Fpoor)\n2. **Top Issues** - Prioritized list of problems with estimated impact (high\u002Fmedium\u002Flow)\n3. **Recommendations** - Specific, actionable fixes with code snippets or config changes\n4. **Codebase Findings** - Framework\u002Fbundler detected, optimization opportunities (omit if no codebase access)\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,64,71,171,177,203,208,383,389,454,460,584,590,595,605,612,649,657,677,683,696,714,719,856,861,870,878,916,922,927,936,944,1062,1067,1076,1082,1087,1096,1104,1127,1133,1141,1146,1152,1157,1383,1395,1401,1472,1478,1504,1510,1560,1566,1604,1610,1615,1658],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"web-performance-audit",[47],{"type":48,"value":49},"text","Web Performance Audit",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54,56,62],{"type":48,"value":55},"Your knowledge of web performance metrics, thresholds, and tooling APIs may be outdated. ",{"type":42,"tag":57,"props":58,"children":59},"strong",{},[60],{"type":48,"value":61},"Prefer retrieval over pre-training",{"type":48,"value":63}," when citing specific numbers or recommendations.",{"type":42,"tag":65,"props":66,"children":68},"h2",{"id":67},"retrieval-sources",[69],{"type":48,"value":70},"Retrieval Sources",{"type":42,"tag":72,"props":73,"children":74},"table",{},[75,99],{"type":42,"tag":76,"props":77,"children":78},"thead",{},[79],{"type":42,"tag":80,"props":81,"children":82},"tr",{},[83,89,94],{"type":42,"tag":84,"props":85,"children":86},"th",{},[87],{"type":48,"value":88},"Source",{"type":42,"tag":84,"props":90,"children":91},{},[92],{"type":48,"value":93},"How to retrieve",{"type":42,"tag":84,"props":95,"children":96},{},[97],{"type":48,"value":98},"Use for",{"type":42,"tag":100,"props":101,"children":102},"tbody",{},[103,127,149],{"type":42,"tag":80,"props":104,"children":105},{},[106,112,122],{"type":42,"tag":107,"props":108,"children":109},"td",{},[110],{"type":48,"value":111},"web.dev",{"type":42,"tag":107,"props":113,"children":114},{},[115],{"type":42,"tag":116,"props":117,"children":119},"code",{"className":118},[],[120],{"type":48,"value":121},"https:\u002F\u002Fweb.dev\u002Farticles\u002Fvitals",{"type":42,"tag":107,"props":123,"children":124},{},[125],{"type":48,"value":126},"Core Web Vitals thresholds, definitions",{"type":42,"tag":80,"props":128,"children":129},{},[130,135,144],{"type":42,"tag":107,"props":131,"children":132},{},[133],{"type":48,"value":134},"Chrome DevTools docs",{"type":42,"tag":107,"props":136,"children":137},{},[138],{"type":42,"tag":116,"props":139,"children":141},{"className":140},[],[142],{"type":48,"value":143},"https:\u002F\u002Fdeveloper.chrome.com\u002Fdocs\u002Fdevtools\u002Fperformance",{"type":42,"tag":107,"props":145,"children":146},{},[147],{"type":48,"value":148},"Tooling APIs, trace analysis",{"type":42,"tag":80,"props":150,"children":151},{},[152,157,166],{"type":42,"tag":107,"props":153,"children":154},{},[155],{"type":48,"value":156},"Lighthouse scoring",{"type":42,"tag":107,"props":158,"children":159},{},[160],{"type":42,"tag":116,"props":161,"children":163},{"className":162},[],[164],{"type":48,"value":165},"https:\u002F\u002Fdeveloper.chrome.com\u002Fdocs\u002Flighthouse\u002Fperformance\u002Fperformance-scoring",{"type":42,"tag":107,"props":167,"children":168},{},[169],{"type":48,"value":170},"Score weights, metric thresholds",{"type":42,"tag":65,"props":172,"children":174},{"id":173},"first-verify-mcp-tools-available",[175],{"type":48,"value":176},"FIRST: Verify MCP Tools Available",{"type":42,"tag":51,"props":178,"children":179},{},[180,185,187,193,195,201],{"type":42,"tag":57,"props":181,"children":182},{},[183],{"type":48,"value":184},"Run this before starting.",{"type":48,"value":186}," Try calling ",{"type":42,"tag":116,"props":188,"children":190},{"className":189},[],[191],{"type":48,"value":192},"navigate_page",{"type":48,"value":194}," or ",{"type":42,"tag":116,"props":196,"children":198},{"className":197},[],[199],{"type":48,"value":200},"performance_start_trace",{"type":48,"value":202},". If unavailable, STOP—the chrome-devtools MCP server isn't configured.",{"type":42,"tag":51,"props":204,"children":205},{},[206],{"type":48,"value":207},"Ask the user to add this to their MCP config:",{"type":42,"tag":209,"props":210,"children":215},"pre",{"className":211,"code":212,"language":213,"meta":214,"style":214},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\"chrome-devtools\": {\n  \"type\": \"local\",\n  \"command\": [\"npx\", \"-y\", \"chrome-devtools-mcp@latest\"]\n}\n","json","",[216],{"type":42,"tag":116,"props":217,"children":218},{"__ignoreMap":214},[219,252,295,374],{"type":42,"tag":220,"props":221,"children":224},"span",{"class":222,"line":223},"line",1,[225,231,237,241,247],{"type":42,"tag":220,"props":226,"children":228},{"style":227},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[229],{"type":48,"value":230},"\"",{"type":42,"tag":220,"props":232,"children":234},{"style":233},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[235],{"type":48,"value":236},"chrome-devtools",{"type":42,"tag":220,"props":238,"children":239},{"style":227},[240],{"type":48,"value":230},{"type":42,"tag":220,"props":242,"children":244},{"style":243},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[245],{"type":48,"value":246},": ",{"type":42,"tag":220,"props":248,"children":249},{"style":227},[250],{"type":48,"value":251},"{\n",{"type":42,"tag":220,"props":253,"children":255},{"class":222,"line":254},2,[256,261,267,271,276,281,286,290],{"type":42,"tag":220,"props":257,"children":258},{"style":227},[259],{"type":48,"value":260},"  \"",{"type":42,"tag":220,"props":262,"children":264},{"style":263},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[265],{"type":48,"value":266},"type",{"type":42,"tag":220,"props":268,"children":269},{"style":227},[270],{"type":48,"value":230},{"type":42,"tag":220,"props":272,"children":273},{"style":227},[274],{"type":48,"value":275},":",{"type":42,"tag":220,"props":277,"children":278},{"style":227},[279],{"type":48,"value":280}," \"",{"type":42,"tag":220,"props":282,"children":283},{"style":233},[284],{"type":48,"value":285},"local",{"type":42,"tag":220,"props":287,"children":288},{"style":227},[289],{"type":48,"value":230},{"type":42,"tag":220,"props":291,"children":292},{"style":227},[293],{"type":48,"value":294},",\n",{"type":42,"tag":220,"props":296,"children":298},{"class":222,"line":297},3,[299,303,308,312,316,321,325,330,334,339,343,348,352,356,360,365,369],{"type":42,"tag":220,"props":300,"children":301},{"style":227},[302],{"type":48,"value":260},{"type":42,"tag":220,"props":304,"children":305},{"style":263},[306],{"type":48,"value":307},"command",{"type":42,"tag":220,"props":309,"children":310},{"style":227},[311],{"type":48,"value":230},{"type":42,"tag":220,"props":313,"children":314},{"style":227},[315],{"type":48,"value":275},{"type":42,"tag":220,"props":317,"children":318},{"style":227},[319],{"type":48,"value":320}," [",{"type":42,"tag":220,"props":322,"children":323},{"style":227},[324],{"type":48,"value":230},{"type":42,"tag":220,"props":326,"children":327},{"style":233},[328],{"type":48,"value":329},"npx",{"type":42,"tag":220,"props":331,"children":332},{"style":227},[333],{"type":48,"value":230},{"type":42,"tag":220,"props":335,"children":336},{"style":227},[337],{"type":48,"value":338},",",{"type":42,"tag":220,"props":340,"children":341},{"style":227},[342],{"type":48,"value":280},{"type":42,"tag":220,"props":344,"children":345},{"style":233},[346],{"type":48,"value":347},"-y",{"type":42,"tag":220,"props":349,"children":350},{"style":227},[351],{"type":48,"value":230},{"type":42,"tag":220,"props":353,"children":354},{"style":227},[355],{"type":48,"value":338},{"type":42,"tag":220,"props":357,"children":358},{"style":227},[359],{"type":48,"value":280},{"type":42,"tag":220,"props":361,"children":362},{"style":233},[363],{"type":48,"value":364},"chrome-devtools-mcp@latest",{"type":42,"tag":220,"props":366,"children":367},{"style":227},[368],{"type":48,"value":230},{"type":42,"tag":220,"props":370,"children":371},{"style":227},[372],{"type":48,"value":373},"]\n",{"type":42,"tag":220,"props":375,"children":377},{"class":222,"line":376},4,[378],{"type":42,"tag":220,"props":379,"children":380},{"style":227},[381],{"type":48,"value":382},"}\n",{"type":42,"tag":65,"props":384,"children":386},{"id":385},"key-guidelines",[387],{"type":48,"value":388},"Key Guidelines",{"type":42,"tag":390,"props":391,"children":392},"ul",{},[393,404,414,424,434,444],{"type":42,"tag":394,"props":395,"children":396},"li",{},[397,402],{"type":42,"tag":57,"props":398,"children":399},{},[400],{"type":48,"value":401},"Be assertive",{"type":48,"value":403},": Verify claims by checking network requests, DOM, or codebase—then state findings definitively.",{"type":42,"tag":394,"props":405,"children":406},{},[407,412],{"type":42,"tag":57,"props":408,"children":409},{},[410],{"type":48,"value":411},"Verify before recommending",{"type":48,"value":413},": Confirm something is unused before suggesting removal.",{"type":42,"tag":394,"props":415,"children":416},{},[417,422],{"type":42,"tag":57,"props":418,"children":419},{},[420],{"type":48,"value":421},"Quantify impact",{"type":48,"value":423},": Use estimated savings from insights. Don't prioritize changes with 0ms impact.",{"type":42,"tag":394,"props":425,"children":426},{},[427,432],{"type":42,"tag":57,"props":428,"children":429},{},[430],{"type":48,"value":431},"Skip non-issues",{"type":48,"value":433},": If render-blocking resources have 0ms estimated impact, note but don't recommend action.",{"type":42,"tag":394,"props":435,"children":436},{},[437,442],{"type":42,"tag":57,"props":438,"children":439},{},[440],{"type":48,"value":441},"Be specific",{"type":48,"value":443},": Say \"compress hero.png (450KB) to WebP\" not \"optimize images\".",{"type":42,"tag":394,"props":445,"children":446},{},[447,452],{"type":42,"tag":57,"props":448,"children":449},{},[450],{"type":48,"value":451},"Prioritize ruthlessly",{"type":48,"value":453},": A site with 200ms LCP and 0 CLS is already excellent—say so.",{"type":42,"tag":65,"props":455,"children":457},{"id":456},"quick-reference",[458],{"type":48,"value":459},"Quick Reference",{"type":42,"tag":72,"props":461,"children":462},{},[463,479],{"type":42,"tag":76,"props":464,"children":465},{},[466],{"type":42,"tag":80,"props":467,"children":468},{},[469,474],{"type":42,"tag":84,"props":470,"children":471},{},[472],{"type":48,"value":473},"Task",{"type":42,"tag":84,"props":475,"children":476},{},[477],{"type":48,"value":478},"Tool Call",{"type":42,"tag":100,"props":480,"children":481},{},[482,499,516,533,550,567],{"type":42,"tag":80,"props":483,"children":484},{},[485,490],{"type":42,"tag":107,"props":486,"children":487},{},[488],{"type":48,"value":489},"Load page",{"type":42,"tag":107,"props":491,"children":492},{},[493],{"type":42,"tag":116,"props":494,"children":496},{"className":495},[],[497],{"type":48,"value":498},"navigate_page(url: \"...\")",{"type":42,"tag":80,"props":500,"children":501},{},[502,507],{"type":42,"tag":107,"props":503,"children":504},{},[505],{"type":48,"value":506},"Start trace",{"type":42,"tag":107,"props":508,"children":509},{},[510],{"type":42,"tag":116,"props":511,"children":513},{"className":512},[],[514],{"type":48,"value":515},"performance_start_trace(autoStop: true, reload: true)",{"type":42,"tag":80,"props":517,"children":518},{},[519,524],{"type":42,"tag":107,"props":520,"children":521},{},[522],{"type":48,"value":523},"Analyze insight",{"type":42,"tag":107,"props":525,"children":526},{},[527],{"type":42,"tag":116,"props":528,"children":530},{"className":529},[],[531],{"type":48,"value":532},"performance_analyze_insight(insightSetId: \"...\", insightName: \"...\")",{"type":42,"tag":80,"props":534,"children":535},{},[536,541],{"type":42,"tag":107,"props":537,"children":538},{},[539],{"type":48,"value":540},"List requests",{"type":42,"tag":107,"props":542,"children":543},{},[544],{"type":42,"tag":116,"props":545,"children":547},{"className":546},[],[548],{"type":48,"value":549},"list_network_requests(resourceTypes: [\"Script\", \"Stylesheet\", ...])",{"type":42,"tag":80,"props":551,"children":552},{},[553,558],{"type":42,"tag":107,"props":554,"children":555},{},[556],{"type":48,"value":557},"Request details",{"type":42,"tag":107,"props":559,"children":560},{},[561],{"type":42,"tag":116,"props":562,"children":564},{"className":563},[],[565],{"type":48,"value":566},"get_network_request(reqid: \u003Cid>)",{"type":42,"tag":80,"props":568,"children":569},{},[570,575],{"type":42,"tag":107,"props":571,"children":572},{},[573],{"type":48,"value":574},"A11y snapshot",{"type":42,"tag":107,"props":576,"children":577},{},[578],{"type":42,"tag":116,"props":579,"children":581},{"className":580},[],[582],{"type":48,"value":583},"take_snapshot(verbose: true)",{"type":42,"tag":65,"props":585,"children":587},{"id":586},"workflow",[588],{"type":48,"value":589},"Workflow",{"type":42,"tag":51,"props":591,"children":592},{},[593],{"type":48,"value":594},"Copy this checklist to track progress:",{"type":42,"tag":209,"props":596,"children":600},{"className":597,"code":599,"language":48},[598],"language-text","Audit Progress:\n- [ ] Phase 1: Performance trace (navigate + record)\n- [ ] Phase 2: Core Web Vitals analysis (includes CLS culprits)\n- [ ] Phase 3: Network analysis\n- [ ] Phase 4: Accessibility snapshot\n- [ ] Phase 5: Codebase analysis (skip if third-party site)\n",[601],{"type":42,"tag":116,"props":602,"children":603},{"__ignoreMap":214},[604],{"type":48,"value":599},{"type":42,"tag":606,"props":607,"children":609},"h3",{"id":608},"phase-1-performance-trace",[610],{"type":48,"value":611},"Phase 1: Performance Trace",{"type":42,"tag":613,"props":614,"children":615},"ol",{},[616,630,644],{"type":42,"tag":394,"props":617,"children":618},{},[619,621],{"type":48,"value":620},"Navigate to the target URL:",{"type":42,"tag":209,"props":622,"children":625},{"className":623,"code":624,"language":48},[598],"navigate_page(url: \"\u003Ctarget-url>\")\n",[626],{"type":42,"tag":116,"props":627,"children":628},{"__ignoreMap":214},[629],{"type":48,"value":624},{"type":42,"tag":394,"props":631,"children":632},{},[633,635],{"type":48,"value":634},"Start a performance trace with reload to capture cold-load metrics:",{"type":42,"tag":209,"props":636,"children":639},{"className":637,"code":638,"language":48},[598],"performance_start_trace(autoStop: true, reload: true)\n",[640],{"type":42,"tag":116,"props":641,"children":642},{"__ignoreMap":214},[643],{"type":48,"value":638},{"type":42,"tag":394,"props":645,"children":646},{},[647],{"type":48,"value":648},"Wait for trace completion, then retrieve results.",{"type":42,"tag":51,"props":650,"children":651},{},[652],{"type":42,"tag":57,"props":653,"children":654},{},[655],{"type":48,"value":656},"Troubleshooting:",{"type":42,"tag":390,"props":658,"children":659},{},[660,672],{"type":42,"tag":394,"props":661,"children":662},{},[663,665,670],{"type":48,"value":664},"If trace returns empty or fails, verify the page loaded correctly with ",{"type":42,"tag":116,"props":666,"children":668},{"className":667},[],[669],{"type":48,"value":192},{"type":48,"value":671}," first",{"type":42,"tag":394,"props":673,"children":674},{},[675],{"type":48,"value":676},"If insight names don't match, inspect the trace response to list available insights",{"type":42,"tag":606,"props":678,"children":680},{"id":679},"phase-2-core-web-vitals-analysis",[681],{"type":48,"value":682},"Phase 2: Core Web Vitals Analysis",{"type":42,"tag":51,"props":684,"children":685},{},[686,688,694],{"type":48,"value":687},"Use ",{"type":42,"tag":116,"props":689,"children":691},{"className":690},[],[692],{"type":48,"value":693},"performance_analyze_insight",{"type":48,"value":695}," to extract key metrics.",{"type":42,"tag":51,"props":697,"children":698},{},[699,704,706,712],{"type":42,"tag":57,"props":700,"children":701},{},[702],{"type":48,"value":703},"Note:",{"type":48,"value":705}," Insight names may vary across Chrome DevTools versions. If an insight name doesn't work, check the ",{"type":42,"tag":116,"props":707,"children":709},{"className":708},[],[710],{"type":48,"value":711},"insightSetId",{"type":48,"value":713}," from the trace response to discover available insights.",{"type":42,"tag":51,"props":715,"children":716},{},[717],{"type":48,"value":718},"Common insight names:",{"type":42,"tag":72,"props":720,"children":721},{},[722,743],{"type":42,"tag":76,"props":723,"children":724},{},[725],{"type":42,"tag":80,"props":726,"children":727},{},[728,733,738],{"type":42,"tag":84,"props":729,"children":730},{},[731],{"type":48,"value":732},"Metric",{"type":42,"tag":84,"props":734,"children":735},{},[736],{"type":48,"value":737},"Insight Name",{"type":42,"tag":84,"props":739,"children":740},{},[741],{"type":48,"value":742},"What to Look For",{"type":42,"tag":100,"props":744,"children":745},{},[746,768,790,812,834],{"type":42,"tag":80,"props":747,"children":748},{},[749,754,763],{"type":42,"tag":107,"props":750,"children":751},{},[752],{"type":48,"value":753},"LCP",{"type":42,"tag":107,"props":755,"children":756},{},[757],{"type":42,"tag":116,"props":758,"children":760},{"className":759},[],[761],{"type":48,"value":762},"LCPBreakdown",{"type":42,"tag":107,"props":764,"children":765},{},[766],{"type":48,"value":767},"Time to largest contentful paint; breakdown of TTFB, resource load, render delay",{"type":42,"tag":80,"props":769,"children":770},{},[771,776,785],{"type":42,"tag":107,"props":772,"children":773},{},[774],{"type":48,"value":775},"CLS",{"type":42,"tag":107,"props":777,"children":778},{},[779],{"type":42,"tag":116,"props":780,"children":782},{"className":781},[],[783],{"type":48,"value":784},"CLSCulprits",{"type":42,"tag":107,"props":786,"children":787},{},[788],{"type":48,"value":789},"Elements causing layout shifts (images without dimensions, injected content, font swaps)",{"type":42,"tag":80,"props":791,"children":792},{},[793,798,807],{"type":42,"tag":107,"props":794,"children":795},{},[796],{"type":48,"value":797},"Render Blocking",{"type":42,"tag":107,"props":799,"children":800},{},[801],{"type":42,"tag":116,"props":802,"children":804},{"className":803},[],[805],{"type":48,"value":806},"RenderBlocking",{"type":42,"tag":107,"props":808,"children":809},{},[810],{"type":48,"value":811},"CSS\u002FJS blocking first paint",{"type":42,"tag":80,"props":813,"children":814},{},[815,820,829],{"type":42,"tag":107,"props":816,"children":817},{},[818],{"type":48,"value":819},"Document Latency",{"type":42,"tag":107,"props":821,"children":822},{},[823],{"type":42,"tag":116,"props":824,"children":826},{"className":825},[],[827],{"type":48,"value":828},"DocumentLatency",{"type":42,"tag":107,"props":830,"children":831},{},[832],{"type":48,"value":833},"Server response time issues",{"type":42,"tag":80,"props":835,"children":836},{},[837,842,851],{"type":42,"tag":107,"props":838,"children":839},{},[840],{"type":48,"value":841},"Network Dependencies",{"type":42,"tag":107,"props":843,"children":844},{},[845],{"type":42,"tag":116,"props":846,"children":848},{"className":847},[],[849],{"type":48,"value":850},"NetworkRequestsDepGraph",{"type":42,"tag":107,"props":852,"children":853},{},[854],{"type":48,"value":855},"Request chains delaying critical resources",{"type":42,"tag":51,"props":857,"children":858},{},[859],{"type":48,"value":860},"Example:",{"type":42,"tag":209,"props":862,"children":865},{"className":863,"code":864,"language":48},[598],"performance_analyze_insight(insightSetId: \"\u003Cid-from-trace>\", insightName: \"LCPBreakdown\")\n",[866],{"type":42,"tag":116,"props":867,"children":868},{"__ignoreMap":214},[869],{"type":48,"value":864},{"type":42,"tag":51,"props":871,"children":872},{},[873],{"type":42,"tag":57,"props":874,"children":875},{},[876],{"type":48,"value":877},"Key thresholds (good\u002Fneeds-improvement\u002Fpoor):",{"type":42,"tag":390,"props":879,"children":880},{},[881,886,891,896,901,906,911],{"type":42,"tag":394,"props":882,"children":883},{},[884],{"type":48,"value":885},"TTFB: \u003C 800ms \u002F \u003C 1.8s \u002F > 1.8s",{"type":42,"tag":394,"props":887,"children":888},{},[889],{"type":48,"value":890},"FCP: \u003C 1.8s \u002F \u003C 3s \u002F > 3s",{"type":42,"tag":394,"props":892,"children":893},{},[894],{"type":48,"value":895},"LCP: \u003C 2.5s \u002F \u003C 4s \u002F > 4s",{"type":42,"tag":394,"props":897,"children":898},{},[899],{"type":48,"value":900},"INP: \u003C 200ms \u002F \u003C 500ms \u002F > 500ms",{"type":42,"tag":394,"props":902,"children":903},{},[904],{"type":48,"value":905},"TBT: \u003C 200ms \u002F \u003C 600ms \u002F > 600ms",{"type":42,"tag":394,"props":907,"children":908},{},[909],{"type":48,"value":910},"CLS: \u003C 0.1 \u002F \u003C 0.25 \u002F > 0.25",{"type":42,"tag":394,"props":912,"children":913},{},[914],{"type":48,"value":915},"Speed Index: \u003C 3.4s \u002F \u003C 5.8s \u002F > 5.8s",{"type":42,"tag":606,"props":917,"children":919},{"id":918},"phase-3-network-analysis",[920],{"type":48,"value":921},"Phase 3: Network Analysis",{"type":42,"tag":51,"props":923,"children":924},{},[925],{"type":48,"value":926},"List all network requests to identify optimization opportunities:",{"type":42,"tag":209,"props":928,"children":931},{"className":929,"code":930,"language":48},[598],"list_network_requests(resourceTypes: [\"Script\", \"Stylesheet\", \"Document\", \"Font\", \"Image\"])\n",[932],{"type":42,"tag":116,"props":933,"children":934},{"__ignoreMap":214},[935],{"type":48,"value":930},{"type":42,"tag":51,"props":937,"children":938},{},[939],{"type":42,"tag":57,"props":940,"children":941},{},[942],{"type":48,"value":943},"Look for:",{"type":42,"tag":613,"props":945,"children":946},{},[947,988,998,1008,1042,1052],{"type":42,"tag":394,"props":948,"children":949},{},[950,955,957,963,965,971,973,979,980,986],{"type":42,"tag":57,"props":951,"children":952},{},[953],{"type":48,"value":954},"Render-blocking resources",{"type":48,"value":956},": JS\u002FCSS in ",{"type":42,"tag":116,"props":958,"children":960},{"className":959},[],[961],{"type":48,"value":962},"\u003Chead>",{"type":48,"value":964}," without ",{"type":42,"tag":116,"props":966,"children":968},{"className":967},[],[969],{"type":48,"value":970},"async",{"type":48,"value":972},"\u002F",{"type":42,"tag":116,"props":974,"children":976},{"className":975},[],[977],{"type":48,"value":978},"defer",{"type":48,"value":972},{"type":42,"tag":116,"props":981,"children":983},{"className":982},[],[984],{"type":48,"value":985},"media",{"type":48,"value":987}," attributes",{"type":42,"tag":394,"props":989,"children":990},{},[991,996],{"type":42,"tag":57,"props":992,"children":993},{},[994],{"type":48,"value":995},"Network chains",{"type":48,"value":997},": Resources discovered late because they depend on other resources loading first (e.g., CSS imports, JS-loaded fonts)",{"type":42,"tag":394,"props":999,"children":1000},{},[1001,1006],{"type":42,"tag":57,"props":1002,"children":1003},{},[1004],{"type":48,"value":1005},"Missing preloads",{"type":48,"value":1007},": Critical resources (fonts, hero images, key scripts) not preloaded",{"type":42,"tag":394,"props":1009,"children":1010},{},[1011,1016,1018,1024,1026,1032,1034,1040],{"type":42,"tag":57,"props":1012,"children":1013},{},[1014],{"type":48,"value":1015},"Caching issues",{"type":48,"value":1017},": Missing or weak ",{"type":42,"tag":116,"props":1019,"children":1021},{"className":1020},[],[1022],{"type":48,"value":1023},"Cache-Control",{"type":48,"value":1025},", ",{"type":42,"tag":116,"props":1027,"children":1029},{"className":1028},[],[1030],{"type":48,"value":1031},"ETag",{"type":48,"value":1033},", or ",{"type":42,"tag":116,"props":1035,"children":1037},{"className":1036},[],[1038],{"type":48,"value":1039},"Last-Modified",{"type":48,"value":1041}," headers",{"type":42,"tag":394,"props":1043,"children":1044},{},[1045,1050],{"type":42,"tag":57,"props":1046,"children":1047},{},[1048],{"type":48,"value":1049},"Large payloads",{"type":48,"value":1051},": Uncompressed or oversized JS\u002FCSS bundles",{"type":42,"tag":394,"props":1053,"children":1054},{},[1055,1060],{"type":42,"tag":57,"props":1056,"children":1057},{},[1058],{"type":48,"value":1059},"Unused preconnects",{"type":48,"value":1061},": If flagged, verify by checking if ANY requests went to that origin. If zero requests, it's definitively unused—recommend removal. If requests exist but loaded late, the preconnect may still be valuable.",{"type":42,"tag":51,"props":1063,"children":1064},{},[1065],{"type":48,"value":1066},"For detailed request info:",{"type":42,"tag":209,"props":1068,"children":1071},{"className":1069,"code":1070,"language":48},[598],"get_network_request(reqid: \u003Cid>)\n",[1072],{"type":42,"tag":116,"props":1073,"children":1074},{"__ignoreMap":214},[1075],{"type":48,"value":1070},{"type":42,"tag":606,"props":1077,"children":1079},{"id":1078},"phase-4-accessibility-snapshot",[1080],{"type":48,"value":1081},"Phase 4: Accessibility Snapshot",{"type":42,"tag":51,"props":1083,"children":1084},{},[1085],{"type":48,"value":1086},"Take an accessibility tree snapshot:",{"type":42,"tag":209,"props":1088,"children":1091},{"className":1089,"code":1090,"language":48},[598],"take_snapshot(verbose: true)\n",[1092],{"type":42,"tag":116,"props":1093,"children":1094},{"__ignoreMap":214},[1095],{"type":48,"value":1090},{"type":42,"tag":51,"props":1097,"children":1098},{},[1099],{"type":42,"tag":57,"props":1100,"children":1101},{},[1102],{"type":48,"value":1103},"Flag high-level gaps:",{"type":42,"tag":390,"props":1105,"children":1106},{},[1107,1112,1117,1122],{"type":42,"tag":394,"props":1108,"children":1109},{},[1110],{"type":48,"value":1111},"Missing or duplicate ARIA IDs",{"type":42,"tag":394,"props":1113,"children":1114},{},[1115],{"type":48,"value":1116},"Elements with poor contrast ratios (check against WCAG AA: 4.5:1 for normal text, 3:1 for large text)",{"type":42,"tag":394,"props":1118,"children":1119},{},[1120],{"type":48,"value":1121},"Focus traps or missing focus indicators",{"type":42,"tag":394,"props":1123,"children":1124},{},[1125],{"type":48,"value":1126},"Interactive elements without accessible names",{"type":42,"tag":65,"props":1128,"children":1130},{"id":1129},"phase-5-codebase-analysis",[1131],{"type":48,"value":1132},"Phase 5: Codebase Analysis",{"type":42,"tag":51,"props":1134,"children":1135},{},[1136],{"type":42,"tag":57,"props":1137,"children":1138},{},[1139],{"type":48,"value":1140},"Skip if auditing a third-party site without codebase access.",{"type":42,"tag":51,"props":1142,"children":1143},{},[1144],{"type":48,"value":1145},"Analyze the codebase to understand where improvements can be made.",{"type":42,"tag":606,"props":1147,"children":1149},{"id":1148},"detect-framework-bundler",[1150],{"type":48,"value":1151},"Detect Framework & Bundler",{"type":42,"tag":51,"props":1153,"children":1154},{},[1155],{"type":48,"value":1156},"Search for configuration files to identify the stack:",{"type":42,"tag":72,"props":1158,"children":1159},{},[1160,1176],{"type":42,"tag":76,"props":1161,"children":1162},{},[1163],{"type":42,"tag":80,"props":1164,"children":1165},{},[1166,1171],{"type":42,"tag":84,"props":1167,"children":1168},{},[1169],{"type":48,"value":1170},"Tool",{"type":42,"tag":84,"props":1172,"children":1173},{},[1174],{"type":48,"value":1175},"Config Files",{"type":42,"tag":100,"props":1177,"children":1178},{},[1179,1203,1227,1251,1275,1301,1325,1349,1366],{"type":42,"tag":80,"props":1180,"children":1181},{},[1182,1187],{"type":42,"tag":107,"props":1183,"children":1184},{},[1185],{"type":48,"value":1186},"Webpack",{"type":42,"tag":107,"props":1188,"children":1189},{},[1190,1196,1197],{"type":42,"tag":116,"props":1191,"children":1193},{"className":1192},[],[1194],{"type":48,"value":1195},"webpack.config.js",{"type":48,"value":1025},{"type":42,"tag":116,"props":1198,"children":1200},{"className":1199},[],[1201],{"type":48,"value":1202},"webpack.*.js",{"type":42,"tag":80,"props":1204,"children":1205},{},[1206,1211],{"type":42,"tag":107,"props":1207,"children":1208},{},[1209],{"type":48,"value":1210},"Vite",{"type":42,"tag":107,"props":1212,"children":1213},{},[1214,1220,1221],{"type":42,"tag":116,"props":1215,"children":1217},{"className":1216},[],[1218],{"type":48,"value":1219},"vite.config.js",{"type":48,"value":1025},{"type":42,"tag":116,"props":1222,"children":1224},{"className":1223},[],[1225],{"type":48,"value":1226},"vite.config.ts",{"type":42,"tag":80,"props":1228,"children":1229},{},[1230,1235],{"type":42,"tag":107,"props":1231,"children":1232},{},[1233],{"type":48,"value":1234},"Rollup",{"type":42,"tag":107,"props":1236,"children":1237},{},[1238,1244,1245],{"type":42,"tag":116,"props":1239,"children":1241},{"className":1240},[],[1242],{"type":48,"value":1243},"rollup.config.js",{"type":48,"value":1025},{"type":42,"tag":116,"props":1246,"children":1248},{"className":1247},[],[1249],{"type":48,"value":1250},"rollup.config.mjs",{"type":42,"tag":80,"props":1252,"children":1253},{},[1254,1259],{"type":42,"tag":107,"props":1255,"children":1256},{},[1257],{"type":48,"value":1258},"esbuild",{"type":42,"tag":107,"props":1260,"children":1261},{},[1262,1268,1270],{"type":42,"tag":116,"props":1263,"children":1265},{"className":1264},[],[1266],{"type":48,"value":1267},"esbuild.config.js",{"type":48,"value":1269},", build scripts with ",{"type":42,"tag":116,"props":1271,"children":1273},{"className":1272},[],[1274],{"type":48,"value":1258},{"type":42,"tag":80,"props":1276,"children":1277},{},[1278,1283],{"type":42,"tag":107,"props":1279,"children":1280},{},[1281],{"type":48,"value":1282},"Parcel",{"type":42,"tag":107,"props":1284,"children":1285},{},[1286,1292,1293,1299],{"type":42,"tag":116,"props":1287,"children":1289},{"className":1288},[],[1290],{"type":48,"value":1291},".parcelrc",{"type":48,"value":1025},{"type":42,"tag":116,"props":1294,"children":1296},{"className":1295},[],[1297],{"type":48,"value":1298},"package.json",{"type":48,"value":1300}," (parcel field)",{"type":42,"tag":80,"props":1302,"children":1303},{},[1304,1309],{"type":42,"tag":107,"props":1305,"children":1306},{},[1307],{"type":48,"value":1308},"Next.js",{"type":42,"tag":107,"props":1310,"children":1311},{},[1312,1318,1319],{"type":42,"tag":116,"props":1313,"children":1315},{"className":1314},[],[1316],{"type":48,"value":1317},"next.config.js",{"type":48,"value":1025},{"type":42,"tag":116,"props":1320,"children":1322},{"className":1321},[],[1323],{"type":48,"value":1324},"next.config.mjs",{"type":42,"tag":80,"props":1326,"children":1327},{},[1328,1333],{"type":42,"tag":107,"props":1329,"children":1330},{},[1331],{"type":48,"value":1332},"Nuxt",{"type":42,"tag":107,"props":1334,"children":1335},{},[1336,1342,1343],{"type":42,"tag":116,"props":1337,"children":1339},{"className":1338},[],[1340],{"type":48,"value":1341},"nuxt.config.js",{"type":48,"value":1025},{"type":42,"tag":116,"props":1344,"children":1346},{"className":1345},[],[1347],{"type":48,"value":1348},"nuxt.config.ts",{"type":42,"tag":80,"props":1350,"children":1351},{},[1352,1357],{"type":42,"tag":107,"props":1353,"children":1354},{},[1355],{"type":48,"value":1356},"SvelteKit",{"type":42,"tag":107,"props":1358,"children":1359},{},[1360],{"type":42,"tag":116,"props":1361,"children":1363},{"className":1362},[],[1364],{"type":48,"value":1365},"svelte.config.js",{"type":42,"tag":80,"props":1367,"children":1368},{},[1369,1374],{"type":42,"tag":107,"props":1370,"children":1371},{},[1372],{"type":48,"value":1373},"Astro",{"type":42,"tag":107,"props":1375,"children":1376},{},[1377],{"type":42,"tag":116,"props":1378,"children":1380},{"className":1379},[],[1381],{"type":48,"value":1382},"astro.config.mjs",{"type":42,"tag":51,"props":1384,"children":1385},{},[1386,1388,1393],{"type":48,"value":1387},"Also check ",{"type":42,"tag":116,"props":1389,"children":1391},{"className":1390},[],[1392],{"type":48,"value":1298},{"type":48,"value":1394}," for framework dependencies and build scripts.",{"type":42,"tag":606,"props":1396,"children":1398},{"id":1397},"tree-shaking-dead-code",[1399],{"type":48,"value":1400},"Tree-Shaking & Dead Code",{"type":42,"tag":390,"props":1402,"children":1403},{},[1404,1436,1454],{"type":42,"tag":394,"props":1405,"children":1406},{},[1407,1411,1413,1419,1420,1426,1428,1434],{"type":42,"tag":57,"props":1408,"children":1409},{},[1410],{"type":48,"value":1186},{"type":48,"value":1412},": Check for ",{"type":42,"tag":116,"props":1414,"children":1416},{"className":1415},[],[1417],{"type":48,"value":1418},"mode: 'production'",{"type":48,"value":1025},{"type":42,"tag":116,"props":1421,"children":1423},{"className":1422},[],[1424],{"type":48,"value":1425},"sideEffects",{"type":48,"value":1427}," in package.json, ",{"type":42,"tag":116,"props":1429,"children":1431},{"className":1430},[],[1432],{"type":48,"value":1433},"usedExports",{"type":48,"value":1435}," optimization",{"type":42,"tag":394,"props":1437,"children":1438},{},[1439,1444,1446,1452],{"type":42,"tag":57,"props":1440,"children":1441},{},[1442],{"type":48,"value":1443},"Vite\u002FRollup",{"type":48,"value":1445},": Tree-shaking enabled by default; check for ",{"type":42,"tag":116,"props":1447,"children":1449},{"className":1448},[],[1450],{"type":48,"value":1451},"treeshake",{"type":48,"value":1453}," options",{"type":42,"tag":394,"props":1455,"children":1456},{},[1457,1462,1464,1470],{"type":42,"tag":57,"props":1458,"children":1459},{},[1460],{"type":48,"value":1461},"Look for",{"type":48,"value":1463},": Barrel files (",{"type":42,"tag":116,"props":1465,"children":1467},{"className":1466},[],[1468],{"type":48,"value":1469},"index.js",{"type":48,"value":1471}," re-exports), large utility libraries imported wholesale (lodash, moment)",{"type":42,"tag":606,"props":1473,"children":1475},{"id":1474},"unused-jscss",[1476],{"type":48,"value":1477},"Unused JS\u002FCSS",{"type":42,"tag":390,"props":1479,"children":1480},{},[1481,1486,1499],{"type":42,"tag":394,"props":1482,"children":1483},{},[1484],{"type":48,"value":1485},"Check for CSS-in-JS vs. static CSS extraction",{"type":42,"tag":394,"props":1487,"children":1488},{},[1489,1491,1497],{"type":48,"value":1490},"Look for PurgeCSS\u002FUnCSS configuration (Tailwind's ",{"type":42,"tag":116,"props":1492,"children":1494},{"className":1493},[],[1495],{"type":48,"value":1496},"content",{"type":48,"value":1498}," config)",{"type":42,"tag":394,"props":1500,"children":1501},{},[1502],{"type":48,"value":1503},"Identify dynamic imports vs. eager loading",{"type":42,"tag":606,"props":1505,"children":1507},{"id":1506},"polyfills",[1508],{"type":48,"value":1509},"Polyfills",{"type":42,"tag":390,"props":1511,"children":1512},{},[1513,1534,1547],{"type":42,"tag":394,"props":1514,"children":1515},{},[1516,1518,1524,1526,1532],{"type":48,"value":1517},"Check for ",{"type":42,"tag":116,"props":1519,"children":1521},{"className":1520},[],[1522],{"type":48,"value":1523},"@babel\u002Fpreset-env",{"type":48,"value":1525}," targets and ",{"type":42,"tag":116,"props":1527,"children":1529},{"className":1528},[],[1530],{"type":48,"value":1531},"useBuiltIns",{"type":48,"value":1533}," setting",{"type":42,"tag":394,"props":1535,"children":1536},{},[1537,1539,1545],{"type":48,"value":1538},"Look for ",{"type":42,"tag":116,"props":1540,"children":1542},{"className":1541},[],[1543],{"type":48,"value":1544},"core-js",{"type":48,"value":1546}," imports (often oversized)",{"type":42,"tag":394,"props":1548,"children":1549},{},[1550,1552,1558],{"type":48,"value":1551},"Check ",{"type":42,"tag":116,"props":1553,"children":1555},{"className":1554},[],[1556],{"type":48,"value":1557},"browserslist",{"type":48,"value":1559}," config for overly broad targeting",{"type":42,"tag":606,"props":1561,"children":1563},{"id":1562},"compression-minification",[1564],{"type":48,"value":1565},"Compression & Minification",{"type":42,"tag":390,"props":1567,"children":1568},{},[1569,1594,1599],{"type":42,"tag":394,"props":1570,"children":1571},{},[1572,1573,1579,1580,1585,1586,1592],{"type":48,"value":1517},{"type":42,"tag":116,"props":1574,"children":1576},{"className":1575},[],[1577],{"type":48,"value":1578},"terser",{"type":48,"value":1025},{"type":42,"tag":116,"props":1581,"children":1583},{"className":1582},[],[1584],{"type":48,"value":1258},{"type":48,"value":1033},{"type":42,"tag":116,"props":1587,"children":1589},{"className":1588},[],[1590],{"type":48,"value":1591},"swc",{"type":48,"value":1593}," minification",{"type":42,"tag":394,"props":1595,"children":1596},{},[1597],{"type":48,"value":1598},"Look for gzip\u002Fbrotli compression in build output or server config",{"type":42,"tag":394,"props":1600,"children":1601},{},[1602],{"type":48,"value":1603},"Check for source maps in production builds (should be external or disabled)",{"type":42,"tag":65,"props":1605,"children":1607},{"id":1606},"output-format",[1608],{"type":48,"value":1609},"Output Format",{"type":42,"tag":51,"props":1611,"children":1612},{},[1613],{"type":48,"value":1614},"Present findings as:",{"type":42,"tag":613,"props":1616,"children":1617},{},[1618,1628,1638,1648],{"type":42,"tag":394,"props":1619,"children":1620},{},[1621,1626],{"type":42,"tag":57,"props":1622,"children":1623},{},[1624],{"type":48,"value":1625},"Core Web Vitals Summary",{"type":48,"value":1627}," - Table with metric, value, and rating (good\u002Fneeds-improvement\u002Fpoor)",{"type":42,"tag":394,"props":1629,"children":1630},{},[1631,1636],{"type":42,"tag":57,"props":1632,"children":1633},{},[1634],{"type":48,"value":1635},"Top Issues",{"type":48,"value":1637}," - Prioritized list of problems with estimated impact (high\u002Fmedium\u002Flow)",{"type":42,"tag":394,"props":1639,"children":1640},{},[1641,1646],{"type":42,"tag":57,"props":1642,"children":1643},{},[1644],{"type":48,"value":1645},"Recommendations",{"type":48,"value":1647}," - Specific, actionable fixes with code snippets or config changes",{"type":42,"tag":394,"props":1649,"children":1650},{},[1651,1656],{"type":42,"tag":57,"props":1652,"children":1653},{},[1654],{"type":48,"value":1655},"Codebase Findings",{"type":48,"value":1657}," - Framework\u002Fbundler detected, optimization opportunities (omit if no codebase access)",{"type":42,"tag":1659,"props":1660,"children":1661},"style",{},[1662],{"type":48,"value":1663},"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":1665,"total":1783},[1666,1685,1701,1713,1733,1753,1771],{"slug":1667,"name":1667,"fn":1668,"description":1669,"org":1670,"tags":1671,"stars":25,"repoUrl":26,"updatedAt":1684},"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},[1672,1675,1678,1681],{"name":1673,"slug":1674,"type":15},"Accessibility","accessibility",{"name":1676,"slug":1677,"type":15},"Charts","charts",{"name":1679,"slug":1680,"type":15},"Data Visualization","data-visualization",{"name":1682,"slug":1683,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":1686,"name":1686,"fn":1687,"description":1688,"org":1689,"tags":1690,"stars":25,"repoUrl":26,"updatedAt":1700},"agent-browser","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},[1691,1694,1697],{"name":1692,"slug":1693,"type":15},"Agents","agents",{"name":1695,"slug":1696,"type":15},"Browser Automation","browser-automation",{"name":1698,"slug":1699,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1702,"name":1702,"fn":1703,"description":1704,"org":1705,"tags":1706,"stars":25,"repoUrl":26,"updatedAt":1712},"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},[1707,1708,1711],{"name":1695,"slug":1696,"type":15},{"name":1709,"slug":1710,"type":15},"Local Development","local-development",{"name":1698,"slug":1699,"type":15},"2026-04-06T18:41:17.526867",{"slug":1714,"name":1714,"fn":1715,"description":1716,"org":1717,"tags":1718,"stars":25,"repoUrl":26,"updatedAt":1732},"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},[1719,1720,1723,1726,1729],{"name":1692,"slug":1693,"type":15},{"name":1721,"slug":1722,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1724,"slug":1725,"type":15},"SDK","sdk",{"name":1727,"slug":1728,"type":15},"Serverless","serverless",{"name":1730,"slug":1731,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1734,"name":1734,"fn":1735,"description":1736,"org":1737,"tags":1738,"stars":25,"repoUrl":26,"updatedAt":1752},"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},[1739,1740,1743,1746,1749],{"name":23,"slug":24,"type":15},{"name":1741,"slug":1742,"type":15},"React","react",{"name":1744,"slug":1745,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1747,"slug":1748,"type":15},"UI Components","ui-components",{"name":1750,"slug":1751,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1754,"name":1754,"fn":1755,"description":1756,"org":1757,"tags":1758,"stars":25,"repoUrl":26,"updatedAt":1770},"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},[1759,1762,1765,1768,1769],{"name":1760,"slug":1761,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1763,"slug":1764,"type":15},"Cost Optimization","cost-optimization",{"name":1766,"slug":1767,"type":15},"LLM","llm",{"name":17,"slug":18,"type":15},{"name":1750,"slug":1751,"type":15},"2026-04-06T18:40:44.377464",{"slug":1772,"name":1772,"fn":1773,"description":1774,"org":1775,"tags":1776,"stars":25,"repoUrl":26,"updatedAt":1782},"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},[1777,1778,1781],{"name":1763,"slug":1764,"type":15},{"name":1779,"slug":1780,"type":15},"Database","database",{"name":1766,"slug":1767,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1785,"total":1980},[1786,1807,1828,1845,1861,1878,1897,1909,1923,1937,1949,1964],{"slug":1787,"name":1787,"fn":1788,"description":1789,"org":1790,"tags":1791,"stars":1804,"repoUrl":1805,"updatedAt":1806},"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},[1792,1795,1798,1801],{"name":1793,"slug":1794,"type":15},"Documents","documents",{"name":1796,"slug":1797,"type":15},"Healthcare","healthcare",{"name":1799,"slug":1800,"type":15},"Insurance","insurance",{"name":1802,"slug":1803,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1808,"name":1808,"fn":1809,"description":1810,"org":1811,"tags":1812,"stars":1825,"repoUrl":1826,"updatedAt":1827},"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},[1813,1816,1818,1821,1824],{"name":1814,"slug":1815,"type":15},".NET","dotnet",{"name":1817,"slug":1808,"type":15},"ASP.NET Core",{"name":1819,"slug":1820,"type":15},"Blazor","blazor",{"name":1822,"slug":1823,"type":15},"C#","csharp",{"name":20,"slug":21,"type":15},23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1829,"name":1829,"fn":1830,"description":1831,"org":1832,"tags":1833,"stars":1825,"repoUrl":1826,"updatedAt":1844},"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},[1834,1837,1840,1843],{"name":1835,"slug":1836,"type":15},"Apps SDK","apps-sdk",{"name":1838,"slug":1839,"type":15},"ChatGPT","chatgpt",{"name":1841,"slug":1842,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1846,"name":1846,"fn":1847,"description":1848,"org":1849,"tags":1850,"stars":1825,"repoUrl":1826,"updatedAt":1860},"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},[1851,1854,1857],{"name":1852,"slug":1853,"type":15},"API Development","api-development",{"name":1855,"slug":1856,"type":15},"CLI","cli",{"name":1858,"slug":1859,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1862,"name":1862,"fn":1863,"description":1864,"org":1865,"tags":1866,"stars":1825,"repoUrl":1826,"updatedAt":1877},"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},[1867,1870,1873,1874],{"name":1868,"slug":1869,"type":15},"Cloudflare","cloudflare",{"name":1871,"slug":1872,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1721,"slug":1722,"type":15},{"name":1875,"slug":1876,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1879,"name":1879,"fn":1880,"description":1881,"org":1882,"tags":1883,"stars":1825,"repoUrl":1826,"updatedAt":1896},"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},[1884,1887,1890,1893],{"name":1885,"slug":1886,"type":15},"Productivity","productivity",{"name":1888,"slug":1889,"type":15},"Project Management","project-management",{"name":1891,"slug":1892,"type":15},"Strategy","strategy",{"name":1894,"slug":1895,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1898,"name":1898,"fn":1899,"description":1900,"org":1901,"tags":1902,"stars":1825,"repoUrl":1826,"updatedAt":1908},"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},[1903,1904,1906,1907],{"name":1682,"slug":1683,"type":15},{"name":1905,"slug":1898,"type":15},"Figma",{"name":23,"slug":24,"type":15},{"name":1841,"slug":1842,"type":15},"2026-04-12T05:06:47.939943",{"slug":1910,"name":1910,"fn":1911,"description":1912,"org":1913,"tags":1914,"stars":1825,"repoUrl":1826,"updatedAt":1922},"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},[1915,1916,1919,1920,1921],{"name":1682,"slug":1683,"type":15},{"name":1917,"slug":1918,"type":15},"Design System","design-system",{"name":1905,"slug":1898,"type":15},{"name":23,"slug":24,"type":15},{"name":1747,"slug":1748,"type":15},"2026-05-10T05:59:52.971881",{"slug":1924,"name":1924,"fn":1925,"description":1926,"org":1927,"tags":1928,"stars":1825,"repoUrl":1826,"updatedAt":1936},"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},[1929,1930,1931,1934,1935],{"name":1682,"slug":1683,"type":15},{"name":1917,"slug":1918,"type":15},{"name":1932,"slug":1933,"type":15},"Documentation","documentation",{"name":1905,"slug":1898,"type":15},{"name":23,"slug":24,"type":15},"2026-05-16T06:07:47.821474",{"slug":1938,"name":1938,"fn":1939,"description":1940,"org":1941,"tags":1942,"stars":1825,"repoUrl":1826,"updatedAt":1948},"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},[1943,1944,1945,1946,1947],{"name":1682,"slug":1683,"type":15},{"name":1905,"slug":1898,"type":15},{"name":23,"slug":24,"type":15},{"name":1747,"slug":1748,"type":15},{"name":20,"slug":21,"type":15},"2026-05-16T06:07:40.583615",{"slug":1950,"name":1950,"fn":1951,"description":1952,"org":1953,"tags":1954,"stars":1825,"repoUrl":1826,"updatedAt":1963},"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},[1955,1958,1959,1962],{"name":1956,"slug":1957,"type":15},"Animation","animation",{"name":1858,"slug":1859,"type":15},{"name":1960,"slug":1961,"type":15},"Creative","creative",{"name":1682,"slug":1683,"type":15},"2026-05-02T05:31:48.48485",{"slug":1965,"name":1965,"fn":1966,"description":1967,"org":1968,"tags":1969,"stars":1825,"repoUrl":1826,"updatedAt":1979},"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},[1970,1971,1972,1975,1978],{"name":1960,"slug":1961,"type":15},{"name":1682,"slug":1683,"type":15},{"name":1973,"slug":1974,"type":15},"Image Generation","image-generation",{"name":1976,"slug":1977,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]