[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-render-static-sites":3,"mdc--h1yy59-key":36,"related-repo-openai-render-static-sites":1585,"related-org-openai-render-static-sites":1706},{"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},"render-static-sites","deploy static sites on Render","Deploys and configures static sites on Render's global CDN—build commands, publish paths, SPA routing, redirects, custom headers, and PR previews. Use when the user needs to deploy a static site, set up a React\u002FVue\u002FHugo\u002FGatsby frontend, configure SPA fallback routing, add redirect rules, customize response headers, or choose between a static site and a web service for their frontend. Trigger terms: static site, CDN, SPA, single-page app, React deploy, Vue deploy, Hugo, Gatsby, Docusaurus, Jekyll, staticPublishPath.",{"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},"Render","render","tag",{"name":17,"slug":18,"type":15},"Deployment","deployment",{"name":20,"slug":21,"type":15},"Infrastructure","infrastructure",{"name":23,"slug":24,"type":15},"Frontend","frontend",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102","MIT",465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Frender\u002Fskills\u002Frender-static-sites","---\nname: render-static-sites\ndescription: >-\n  Deploys and configures static sites on Render's global CDN—build commands,\n  publish paths, SPA routing, redirects, custom headers, and PR previews. Use\n  when the user needs to deploy a static site, set up a React\u002FVue\u002FHugo\u002FGatsby\n  frontend, configure SPA fallback routing, add redirect rules, customize\n  response headers, or choose between a static site and a web service for\n  their frontend.\n  Trigger terms: static site, CDN, SPA, single-page app, React deploy,\n  Vue deploy, Hugo, Gatsby, Docusaurus, Jekyll, staticPublishPath.\nlicense: MIT\ncompatibility: Render static sites (free tier available)\nmetadata:\n  author: Render\n  version: \"1.0.0\"\n  category: compute\n---\n\n# Render Static Sites\n\nDeploys static frontends (React, Vue, Hugo, Gatsby, Docusaurus, Jekyll, etc.) to Render's global CDN with automatic TLS, Brotli compression, HTTP\u002F2, and DDoS protection. Free tier available.\n\n## When to Use\n\n- Deploying a **static site or SPA** (no server-side rendering)\n- Choosing between a **Static Site** and a **Web Service** for a frontend\n- Configuring **SPA fallback routing**, **redirects\u002Frewrites**, or **custom headers**\n- Setting up **PR preview environments** for a static site\n- Troubleshooting **build failures** or **stale content** on a CDN-hosted site\n\nFor SSR frameworks (Next.js, Nuxt, SvelteKit) that need a running server, use **render-web-services** instead. For Blueprint authoring, see **render-blueprints**.\n\n## Static Site vs Web Service\n\n| Need | Use | Why |\n|------|-----|-----|\n| Pure HTML\u002FCSS\u002FJS, SPA, docs, blog | **Static Site** | Free, global CDN, instant cache invalidation |\n| SSR (Next.js `next start`, Nuxt server) | **Web Service** | Needs a running Node\u002FPython\u002Fetc. process |\n| Static export from SSR framework | **Static Site** | If the framework supports full static export (`next export`, `nuxt generate`) |\n| API backend | **Web Service** | Static sites cannot run server code |\n\n**Key constraint:** Static sites are **not on the private network**. They cannot communicate with other Render services over internal hostnames.\n\n## Build and Publish\n\n| Setting | Purpose |\n|---------|---------|\n| `buildCommand` | Installs dependencies and builds assets (e.g. `npm ci && npm run build`) |\n| `staticPublishPath` | Directory of built output to serve (e.g. `build`, `dist`, `public`) |\n\nRender auto-detects and installs dependencies. Set `SKIP_INSTALL_DEPS=true` to handle installation yourself in the build command.\n\n### Common frameworks\n\n| Framework | Build command | Publish path |\n|-----------|--------------|--------------|\n| Create React App | `npm ci && npm run build` | `build` |\n| Vite (React\u002FVue\u002FSvelte) | `npm ci && npm run build` | `dist` |\n| Next.js (static export) | `npm ci && next build` | `out` |\n| Nuxt (static) | `npm ci && nuxt generate` | `.output\u002Fpublic` |\n| Hugo | `hugo --minify` | `public` |\n| Gatsby | `npm ci && gatsby build` | `public` |\n| Docusaurus | `npm ci && npm run build` | `build` |\n| Jekyll | `bundle exec jekyll build` | `_site` |\n| Astro | `npm ci && astro build` | `dist` |\n\n## SPA Routing and Redirects\n\nSingle-page apps need a catch-all rule so the CDN serves `index.html` for all routes instead of returning 404.\n\nConfigure **Redirect\u002FRewrite Rules** in the Dashboard (Settings > Redirects\u002FRewrites) or via the Blueprint `routes` field:\n\n```yaml\nroutes:\n  - type: rewrite\n    source: \u002F*\n    destination: \u002Findex.html\n```\n\nFor multi-path redirects (e.g. old blog URLs), add specific rules **above** the catch-all so they take priority.\n\nSee `references\u002Frouting-and-headers.md` for redirect types, header rules, and caching patterns.\n\n## Custom Response Headers\n\nAdd security and performance headers from the Dashboard (Settings > Headers) or the Blueprint `headers` field:\n\n```yaml\nheaders:\n  - path: \u002F*\n    name: X-Frame-Options\n    value: DENY\n  - path: \u002Fassets\u002F*\n    name: Cache-Control\n    value: public, max-age=31536000, immutable\n```\n\n## PR Previews\n\nStatic sites support automatic PR previews—each pull request gets a unique URL with the built site.\n\n- Enable in Dashboard: Settings > PR Previews\n- Blueprint: set `previews.generation` to `automatic` or `manual`\n- Preview URLs follow the pattern `\u003Cservice>-\u003Cpr-id>.onrender.com`\n\n## Blueprint Configuration\n\n```yaml\nservices:\n  - type: web\n    runtime: static\n    name: my-frontend\n    buildCommand: npm ci && npm run build\n    staticPublishPath: dist\n    routes:\n      - type: rewrite\n        source: \u002F*\n        destination: \u002Findex.html\n    headers:\n      - path: \u002F*\n        name: X-Frame-Options\n        value: DENY\n    previews:\n      generation: automatic\n```\n\n**Note:** Static sites use `type: web` with `runtime: static` in Blueprints. There is no separate `type: static`.\n\n## CDN and Performance\n\n- **Global CDN** with edge caching worldwide\n- **Brotli compression** (better than gzip)\n- **HTTP\u002F2** by default\n- **Immediate cache invalidation** on every deploy (zero-downtime, atomic deploys)\n- **DDoS protection** included free\n\n## Billing\n\nStatic sites have a **free tier**. They count against workspace-level monthly included amounts for:\n\n- **Outbound bandwidth** (data served to users)\n- **Pipeline minutes** (build time)\n\n## References\n\n| Document | Contents |\n|----------|----------|\n| `references\u002Frouting-and-headers.md` | Redirect types, rewrite rules, header patterns, SPA config |\n| `references\u002Fframework-configs.md` | Build commands and publish paths for 10+ frameworks |\n\n## Related Skills\n\n- **render-web-services** — For SSR frameworks that need a running server\n- **render-blueprints** — Full `render.yaml` schema for static site fields\n- **render-domains** — Custom domain and TLS setup\n- **render-deploy** — Deploy flows, CLI, MCP operations\n",{"data":37,"body":42},{"name":4,"description":6,"license":28,"compatibility":38,"metadata":39},"Render static sites (free tier available)",{"author":13,"version":40,"category":41},"1.0.0","compute",{"type":43,"children":44},"root",[45,53,59,66,158,177,183,320,337,343,427,440,447,699,705,718,738,827,839,852,858,870,997,1003,1008,1053,1059,1330,1363,1369,1422,1428,1440,1463,1469,1524,1530,1579],{"type":46,"tag":47,"props":48,"children":49},"element","h1",{"id":4},[50],{"type":51,"value":52},"text","Render Static Sites",{"type":46,"tag":54,"props":55,"children":56},"p",{},[57],{"type":51,"value":58},"Deploys static frontends (React, Vue, Hugo, Gatsby, Docusaurus, Jekyll, etc.) to Render's global CDN with automatic TLS, Brotli compression, HTTP\u002F2, and DDoS protection. Free tier available.",{"type":46,"tag":60,"props":61,"children":63},"h2",{"id":62},"when-to-use",[64],{"type":51,"value":65},"When to Use",{"type":46,"tag":67,"props":68,"children":69},"ul",{},[70,84,103,127,139],{"type":46,"tag":71,"props":72,"children":73},"li",{},[74,76,82],{"type":51,"value":75},"Deploying a ",{"type":46,"tag":77,"props":78,"children":79},"strong",{},[80],{"type":51,"value":81},"static site or SPA",{"type":51,"value":83}," (no server-side rendering)",{"type":46,"tag":71,"props":85,"children":86},{},[87,89,94,96,101],{"type":51,"value":88},"Choosing between a ",{"type":46,"tag":77,"props":90,"children":91},{},[92],{"type":51,"value":93},"Static Site",{"type":51,"value":95}," and a ",{"type":46,"tag":77,"props":97,"children":98},{},[99],{"type":51,"value":100},"Web Service",{"type":51,"value":102}," for a frontend",{"type":46,"tag":71,"props":104,"children":105},{},[106,108,113,115,120,122],{"type":51,"value":107},"Configuring ",{"type":46,"tag":77,"props":109,"children":110},{},[111],{"type":51,"value":112},"SPA fallback routing",{"type":51,"value":114},", ",{"type":46,"tag":77,"props":116,"children":117},{},[118],{"type":51,"value":119},"redirects\u002Frewrites",{"type":51,"value":121},", or ",{"type":46,"tag":77,"props":123,"children":124},{},[125],{"type":51,"value":126},"custom headers",{"type":46,"tag":71,"props":128,"children":129},{},[130,132,137],{"type":51,"value":131},"Setting up ",{"type":46,"tag":77,"props":133,"children":134},{},[135],{"type":51,"value":136},"PR preview environments",{"type":51,"value":138}," for a static site",{"type":46,"tag":71,"props":140,"children":141},{},[142,144,149,151,156],{"type":51,"value":143},"Troubleshooting ",{"type":46,"tag":77,"props":145,"children":146},{},[147],{"type":51,"value":148},"build failures",{"type":51,"value":150}," or ",{"type":46,"tag":77,"props":152,"children":153},{},[154],{"type":51,"value":155},"stale content",{"type":51,"value":157}," on a CDN-hosted site",{"type":46,"tag":54,"props":159,"children":160},{},[161,163,168,170,175],{"type":51,"value":162},"For SSR frameworks (Next.js, Nuxt, SvelteKit) that need a running server, use ",{"type":46,"tag":77,"props":164,"children":165},{},[166],{"type":51,"value":167},"render-web-services",{"type":51,"value":169}," instead. For Blueprint authoring, see ",{"type":46,"tag":77,"props":171,"children":172},{},[173],{"type":51,"value":174},"render-blueprints",{"type":51,"value":176},".",{"type":46,"tag":60,"props":178,"children":180},{"id":179},"static-site-vs-web-service",[181],{"type":51,"value":182},"Static Site vs Web Service",{"type":46,"tag":184,"props":185,"children":186},"table",{},[187,211],{"type":46,"tag":188,"props":189,"children":190},"thead",{},[191],{"type":46,"tag":192,"props":193,"children":194},"tr",{},[195,201,206],{"type":46,"tag":196,"props":197,"children":198},"th",{},[199],{"type":51,"value":200},"Need",{"type":46,"tag":196,"props":202,"children":203},{},[204],{"type":51,"value":205},"Use",{"type":46,"tag":196,"props":207,"children":208},{},[209],{"type":51,"value":210},"Why",{"type":46,"tag":212,"props":213,"children":214},"tbody",{},[215,236,265,300],{"type":46,"tag":192,"props":216,"children":217},{},[218,224,231],{"type":46,"tag":219,"props":220,"children":221},"td",{},[222],{"type":51,"value":223},"Pure HTML\u002FCSS\u002FJS, SPA, docs, blog",{"type":46,"tag":219,"props":225,"children":226},{},[227],{"type":46,"tag":77,"props":228,"children":229},{},[230],{"type":51,"value":93},{"type":46,"tag":219,"props":232,"children":233},{},[234],{"type":51,"value":235},"Free, global CDN, instant cache invalidation",{"type":46,"tag":192,"props":237,"children":238},{},[239,253,260],{"type":46,"tag":219,"props":240,"children":241},{},[242,244,251],{"type":51,"value":243},"SSR (Next.js ",{"type":46,"tag":245,"props":246,"children":248},"code",{"className":247},[],[249],{"type":51,"value":250},"next start",{"type":51,"value":252},", Nuxt server)",{"type":46,"tag":219,"props":254,"children":255},{},[256],{"type":46,"tag":77,"props":257,"children":258},{},[259],{"type":51,"value":100},{"type":46,"tag":219,"props":261,"children":262},{},[263],{"type":51,"value":264},"Needs a running Node\u002FPython\u002Fetc. process",{"type":46,"tag":192,"props":266,"children":267},{},[268,273,280],{"type":46,"tag":219,"props":269,"children":270},{},[271],{"type":51,"value":272},"Static export from SSR framework",{"type":46,"tag":219,"props":274,"children":275},{},[276],{"type":46,"tag":77,"props":277,"children":278},{},[279],{"type":51,"value":93},{"type":46,"tag":219,"props":281,"children":282},{},[283,285,291,292,298],{"type":51,"value":284},"If the framework supports full static export (",{"type":46,"tag":245,"props":286,"children":288},{"className":287},[],[289],{"type":51,"value":290},"next export",{"type":51,"value":114},{"type":46,"tag":245,"props":293,"children":295},{"className":294},[],[296],{"type":51,"value":297},"nuxt generate",{"type":51,"value":299},")",{"type":46,"tag":192,"props":301,"children":302},{},[303,308,315],{"type":46,"tag":219,"props":304,"children":305},{},[306],{"type":51,"value":307},"API backend",{"type":46,"tag":219,"props":309,"children":310},{},[311],{"type":46,"tag":77,"props":312,"children":313},{},[314],{"type":51,"value":100},{"type":46,"tag":219,"props":316,"children":317},{},[318],{"type":51,"value":319},"Static sites cannot run server code",{"type":46,"tag":54,"props":321,"children":322},{},[323,328,330,335],{"type":46,"tag":77,"props":324,"children":325},{},[326],{"type":51,"value":327},"Key constraint:",{"type":51,"value":329}," Static sites are ",{"type":46,"tag":77,"props":331,"children":332},{},[333],{"type":51,"value":334},"not on the private network",{"type":51,"value":336},". They cannot communicate with other Render services over internal hostnames.",{"type":46,"tag":60,"props":338,"children":340},{"id":339},"build-and-publish",[341],{"type":51,"value":342},"Build and Publish",{"type":46,"tag":184,"props":344,"children":345},{},[346,362],{"type":46,"tag":188,"props":347,"children":348},{},[349],{"type":46,"tag":192,"props":350,"children":351},{},[352,357],{"type":46,"tag":196,"props":353,"children":354},{},[355],{"type":51,"value":356},"Setting",{"type":46,"tag":196,"props":358,"children":359},{},[360],{"type":51,"value":361},"Purpose",{"type":46,"tag":212,"props":363,"children":364},{},[365,389],{"type":46,"tag":192,"props":366,"children":367},{},[368,377],{"type":46,"tag":219,"props":369,"children":370},{},[371],{"type":46,"tag":245,"props":372,"children":374},{"className":373},[],[375],{"type":51,"value":376},"buildCommand",{"type":46,"tag":219,"props":378,"children":379},{},[380,382,388],{"type":51,"value":381},"Installs dependencies and builds assets (e.g. ",{"type":46,"tag":245,"props":383,"children":385},{"className":384},[],[386],{"type":51,"value":387},"npm ci && npm run build",{"type":51,"value":299},{"type":46,"tag":192,"props":390,"children":391},{},[392,401],{"type":46,"tag":219,"props":393,"children":394},{},[395],{"type":46,"tag":245,"props":396,"children":398},{"className":397},[],[399],{"type":51,"value":400},"staticPublishPath",{"type":46,"tag":219,"props":402,"children":403},{},[404,406,412,413,419,420,426],{"type":51,"value":405},"Directory of built output to serve (e.g. ",{"type":46,"tag":245,"props":407,"children":409},{"className":408},[],[410],{"type":51,"value":411},"build",{"type":51,"value":114},{"type":46,"tag":245,"props":414,"children":416},{"className":415},[],[417],{"type":51,"value":418},"dist",{"type":51,"value":114},{"type":46,"tag":245,"props":421,"children":423},{"className":422},[],[424],{"type":51,"value":425},"public",{"type":51,"value":299},{"type":46,"tag":54,"props":428,"children":429},{},[430,432,438],{"type":51,"value":431},"Render auto-detects and installs dependencies. Set ",{"type":46,"tag":245,"props":433,"children":435},{"className":434},[],[436],{"type":51,"value":437},"SKIP_INSTALL_DEPS=true",{"type":51,"value":439}," to handle installation yourself in the build command.",{"type":46,"tag":441,"props":442,"children":444},"h3",{"id":443},"common-frameworks",[445],{"type":51,"value":446},"Common frameworks",{"type":46,"tag":184,"props":448,"children":449},{},[450,471],{"type":46,"tag":188,"props":451,"children":452},{},[453],{"type":46,"tag":192,"props":454,"children":455},{},[456,461,466],{"type":46,"tag":196,"props":457,"children":458},{},[459],{"type":51,"value":460},"Framework",{"type":46,"tag":196,"props":462,"children":463},{},[464],{"type":51,"value":465},"Build command",{"type":46,"tag":196,"props":467,"children":468},{},[469],{"type":51,"value":470},"Publish path",{"type":46,"tag":212,"props":472,"children":473},{},[474,498,522,548,574,599,624,648,674],{"type":46,"tag":192,"props":475,"children":476},{},[477,482,490],{"type":46,"tag":219,"props":478,"children":479},{},[480],{"type":51,"value":481},"Create React App",{"type":46,"tag":219,"props":483,"children":484},{},[485],{"type":46,"tag":245,"props":486,"children":488},{"className":487},[],[489],{"type":51,"value":387},{"type":46,"tag":219,"props":491,"children":492},{},[493],{"type":46,"tag":245,"props":494,"children":496},{"className":495},[],[497],{"type":51,"value":411},{"type":46,"tag":192,"props":499,"children":500},{},[501,506,514],{"type":46,"tag":219,"props":502,"children":503},{},[504],{"type":51,"value":505},"Vite (React\u002FVue\u002FSvelte)",{"type":46,"tag":219,"props":507,"children":508},{},[509],{"type":46,"tag":245,"props":510,"children":512},{"className":511},[],[513],{"type":51,"value":387},{"type":46,"tag":219,"props":515,"children":516},{},[517],{"type":46,"tag":245,"props":518,"children":520},{"className":519},[],[521],{"type":51,"value":418},{"type":46,"tag":192,"props":523,"children":524},{},[525,530,539],{"type":46,"tag":219,"props":526,"children":527},{},[528],{"type":51,"value":529},"Next.js (static export)",{"type":46,"tag":219,"props":531,"children":532},{},[533],{"type":46,"tag":245,"props":534,"children":536},{"className":535},[],[537],{"type":51,"value":538},"npm ci && next build",{"type":46,"tag":219,"props":540,"children":541},{},[542],{"type":46,"tag":245,"props":543,"children":545},{"className":544},[],[546],{"type":51,"value":547},"out",{"type":46,"tag":192,"props":549,"children":550},{},[551,556,565],{"type":46,"tag":219,"props":552,"children":553},{},[554],{"type":51,"value":555},"Nuxt (static)",{"type":46,"tag":219,"props":557,"children":558},{},[559],{"type":46,"tag":245,"props":560,"children":562},{"className":561},[],[563],{"type":51,"value":564},"npm ci && nuxt generate",{"type":46,"tag":219,"props":566,"children":567},{},[568],{"type":46,"tag":245,"props":569,"children":571},{"className":570},[],[572],{"type":51,"value":573},".output\u002Fpublic",{"type":46,"tag":192,"props":575,"children":576},{},[577,582,591],{"type":46,"tag":219,"props":578,"children":579},{},[580],{"type":51,"value":581},"Hugo",{"type":46,"tag":219,"props":583,"children":584},{},[585],{"type":46,"tag":245,"props":586,"children":588},{"className":587},[],[589],{"type":51,"value":590},"hugo --minify",{"type":46,"tag":219,"props":592,"children":593},{},[594],{"type":46,"tag":245,"props":595,"children":597},{"className":596},[],[598],{"type":51,"value":425},{"type":46,"tag":192,"props":600,"children":601},{},[602,607,616],{"type":46,"tag":219,"props":603,"children":604},{},[605],{"type":51,"value":606},"Gatsby",{"type":46,"tag":219,"props":608,"children":609},{},[610],{"type":46,"tag":245,"props":611,"children":613},{"className":612},[],[614],{"type":51,"value":615},"npm ci && gatsby build",{"type":46,"tag":219,"props":617,"children":618},{},[619],{"type":46,"tag":245,"props":620,"children":622},{"className":621},[],[623],{"type":51,"value":425},{"type":46,"tag":192,"props":625,"children":626},{},[627,632,640],{"type":46,"tag":219,"props":628,"children":629},{},[630],{"type":51,"value":631},"Docusaurus",{"type":46,"tag":219,"props":633,"children":634},{},[635],{"type":46,"tag":245,"props":636,"children":638},{"className":637},[],[639],{"type":51,"value":387},{"type":46,"tag":219,"props":641,"children":642},{},[643],{"type":46,"tag":245,"props":644,"children":646},{"className":645},[],[647],{"type":51,"value":411},{"type":46,"tag":192,"props":649,"children":650},{},[651,656,665],{"type":46,"tag":219,"props":652,"children":653},{},[654],{"type":51,"value":655},"Jekyll",{"type":46,"tag":219,"props":657,"children":658},{},[659],{"type":46,"tag":245,"props":660,"children":662},{"className":661},[],[663],{"type":51,"value":664},"bundle exec jekyll build",{"type":46,"tag":219,"props":666,"children":667},{},[668],{"type":46,"tag":245,"props":669,"children":671},{"className":670},[],[672],{"type":51,"value":673},"_site",{"type":46,"tag":192,"props":675,"children":676},{},[677,682,691],{"type":46,"tag":219,"props":678,"children":679},{},[680],{"type":51,"value":681},"Astro",{"type":46,"tag":219,"props":683,"children":684},{},[685],{"type":46,"tag":245,"props":686,"children":688},{"className":687},[],[689],{"type":51,"value":690},"npm ci && astro build",{"type":46,"tag":219,"props":692,"children":693},{},[694],{"type":46,"tag":245,"props":695,"children":697},{"className":696},[],[698],{"type":51,"value":418},{"type":46,"tag":60,"props":700,"children":702},{"id":701},"spa-routing-and-redirects",[703],{"type":51,"value":704},"SPA Routing and Redirects",{"type":46,"tag":54,"props":706,"children":707},{},[708,710,716],{"type":51,"value":709},"Single-page apps need a catch-all rule so the CDN serves ",{"type":46,"tag":245,"props":711,"children":713},{"className":712},[],[714],{"type":51,"value":715},"index.html",{"type":51,"value":717}," for all routes instead of returning 404.",{"type":46,"tag":54,"props":719,"children":720},{},[721,723,728,730,736],{"type":51,"value":722},"Configure ",{"type":46,"tag":77,"props":724,"children":725},{},[726],{"type":51,"value":727},"Redirect\u002FRewrite Rules",{"type":51,"value":729}," in the Dashboard (Settings > Redirects\u002FRewrites) or via the Blueprint ",{"type":46,"tag":245,"props":731,"children":733},{"className":732},[],[734],{"type":51,"value":735},"routes",{"type":51,"value":737}," field:",{"type":46,"tag":739,"props":740,"children":745},"pre",{"className":741,"code":742,"language":743,"meta":744,"style":744},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","routes:\n  - type: rewrite\n    source: \u002F*\n    destination: \u002Findex.html\n","yaml","",[746],{"type":46,"tag":245,"props":747,"children":748},{"__ignoreMap":744},[749,766,791,809],{"type":46,"tag":750,"props":751,"children":754},"span",{"class":752,"line":753},"line",1,[755,760],{"type":46,"tag":750,"props":756,"children":758},{"style":757},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[759],{"type":51,"value":735},{"type":46,"tag":750,"props":761,"children":763},{"style":762},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[764],{"type":51,"value":765},":\n",{"type":46,"tag":750,"props":767,"children":769},{"class":752,"line":768},2,[770,775,780,785],{"type":46,"tag":750,"props":771,"children":772},{"style":762},[773],{"type":51,"value":774},"  -",{"type":46,"tag":750,"props":776,"children":777},{"style":757},[778],{"type":51,"value":779}," type",{"type":46,"tag":750,"props":781,"children":782},{"style":762},[783],{"type":51,"value":784},":",{"type":46,"tag":750,"props":786,"children":788},{"style":787},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[789],{"type":51,"value":790}," rewrite\n",{"type":46,"tag":750,"props":792,"children":794},{"class":752,"line":793},3,[795,800,804],{"type":46,"tag":750,"props":796,"children":797},{"style":757},[798],{"type":51,"value":799},"    source",{"type":46,"tag":750,"props":801,"children":802},{"style":762},[803],{"type":51,"value":784},{"type":46,"tag":750,"props":805,"children":806},{"style":787},[807],{"type":51,"value":808}," \u002F*\n",{"type":46,"tag":750,"props":810,"children":812},{"class":752,"line":811},4,[813,818,822],{"type":46,"tag":750,"props":814,"children":815},{"style":757},[816],{"type":51,"value":817},"    destination",{"type":46,"tag":750,"props":819,"children":820},{"style":762},[821],{"type":51,"value":784},{"type":46,"tag":750,"props":823,"children":824},{"style":787},[825],{"type":51,"value":826}," \u002Findex.html\n",{"type":46,"tag":54,"props":828,"children":829},{},[830,832,837],{"type":51,"value":831},"For multi-path redirects (e.g. old blog URLs), add specific rules ",{"type":46,"tag":77,"props":833,"children":834},{},[835],{"type":51,"value":836},"above",{"type":51,"value":838}," the catch-all so they take priority.",{"type":46,"tag":54,"props":840,"children":841},{},[842,844,850],{"type":51,"value":843},"See ",{"type":46,"tag":245,"props":845,"children":847},{"className":846},[],[848],{"type":51,"value":849},"references\u002Frouting-and-headers.md",{"type":51,"value":851}," for redirect types, header rules, and caching patterns.",{"type":46,"tag":60,"props":853,"children":855},{"id":854},"custom-response-headers",[856],{"type":51,"value":857},"Custom Response Headers",{"type":46,"tag":54,"props":859,"children":860},{},[861,863,869],{"type":51,"value":862},"Add security and performance headers from the Dashboard (Settings > Headers) or the Blueprint ",{"type":46,"tag":245,"props":864,"children":866},{"className":865},[],[867],{"type":51,"value":868},"headers",{"type":51,"value":737},{"type":46,"tag":739,"props":871,"children":873},{"className":741,"code":872,"language":743,"meta":744,"style":744},"headers:\n  - path: \u002F*\n    name: X-Frame-Options\n    value: DENY\n  - path: \u002Fassets\u002F*\n    name: Cache-Control\n    value: public, max-age=31536000, immutable\n",[874],{"type":46,"tag":245,"props":875,"children":876},{"__ignoreMap":744},[877,888,908,925,942,963,980],{"type":46,"tag":750,"props":878,"children":879},{"class":752,"line":753},[880,884],{"type":46,"tag":750,"props":881,"children":882},{"style":757},[883],{"type":51,"value":868},{"type":46,"tag":750,"props":885,"children":886},{"style":762},[887],{"type":51,"value":765},{"type":46,"tag":750,"props":889,"children":890},{"class":752,"line":768},[891,895,900,904],{"type":46,"tag":750,"props":892,"children":893},{"style":762},[894],{"type":51,"value":774},{"type":46,"tag":750,"props":896,"children":897},{"style":757},[898],{"type":51,"value":899}," path",{"type":46,"tag":750,"props":901,"children":902},{"style":762},[903],{"type":51,"value":784},{"type":46,"tag":750,"props":905,"children":906},{"style":787},[907],{"type":51,"value":808},{"type":46,"tag":750,"props":909,"children":910},{"class":752,"line":793},[911,916,920],{"type":46,"tag":750,"props":912,"children":913},{"style":757},[914],{"type":51,"value":915},"    name",{"type":46,"tag":750,"props":917,"children":918},{"style":762},[919],{"type":51,"value":784},{"type":46,"tag":750,"props":921,"children":922},{"style":787},[923],{"type":51,"value":924}," X-Frame-Options\n",{"type":46,"tag":750,"props":926,"children":927},{"class":752,"line":811},[928,933,937],{"type":46,"tag":750,"props":929,"children":930},{"style":757},[931],{"type":51,"value":932},"    value",{"type":46,"tag":750,"props":934,"children":935},{"style":762},[936],{"type":51,"value":784},{"type":46,"tag":750,"props":938,"children":939},{"style":787},[940],{"type":51,"value":941}," DENY\n",{"type":46,"tag":750,"props":943,"children":945},{"class":752,"line":944},5,[946,950,954,958],{"type":46,"tag":750,"props":947,"children":948},{"style":762},[949],{"type":51,"value":774},{"type":46,"tag":750,"props":951,"children":952},{"style":757},[953],{"type":51,"value":899},{"type":46,"tag":750,"props":955,"children":956},{"style":762},[957],{"type":51,"value":784},{"type":46,"tag":750,"props":959,"children":960},{"style":787},[961],{"type":51,"value":962}," \u002Fassets\u002F*\n",{"type":46,"tag":750,"props":964,"children":966},{"class":752,"line":965},6,[967,971,975],{"type":46,"tag":750,"props":968,"children":969},{"style":757},[970],{"type":51,"value":915},{"type":46,"tag":750,"props":972,"children":973},{"style":762},[974],{"type":51,"value":784},{"type":46,"tag":750,"props":976,"children":977},{"style":787},[978],{"type":51,"value":979}," Cache-Control\n",{"type":46,"tag":750,"props":981,"children":983},{"class":752,"line":982},7,[984,988,992],{"type":46,"tag":750,"props":985,"children":986},{"style":757},[987],{"type":51,"value":932},{"type":46,"tag":750,"props":989,"children":990},{"style":762},[991],{"type":51,"value":784},{"type":46,"tag":750,"props":993,"children":994},{"style":787},[995],{"type":51,"value":996}," public, max-age=31536000, immutable\n",{"type":46,"tag":60,"props":998,"children":1000},{"id":999},"pr-previews",[1001],{"type":51,"value":1002},"PR Previews",{"type":46,"tag":54,"props":1004,"children":1005},{},[1006],{"type":51,"value":1007},"Static sites support automatic PR previews—each pull request gets a unique URL with the built site.",{"type":46,"tag":67,"props":1009,"children":1010},{},[1011,1016,1042],{"type":46,"tag":71,"props":1012,"children":1013},{},[1014],{"type":51,"value":1015},"Enable in Dashboard: Settings > PR Previews",{"type":46,"tag":71,"props":1017,"children":1018},{},[1019,1021,1027,1029,1035,1036],{"type":51,"value":1020},"Blueprint: set ",{"type":46,"tag":245,"props":1022,"children":1024},{"className":1023},[],[1025],{"type":51,"value":1026},"previews.generation",{"type":51,"value":1028}," to ",{"type":46,"tag":245,"props":1030,"children":1032},{"className":1031},[],[1033],{"type":51,"value":1034},"automatic",{"type":51,"value":150},{"type":46,"tag":245,"props":1037,"children":1039},{"className":1038},[],[1040],{"type":51,"value":1041},"manual",{"type":46,"tag":71,"props":1043,"children":1044},{},[1045,1047],{"type":51,"value":1046},"Preview URLs follow the pattern ",{"type":46,"tag":245,"props":1048,"children":1050},{"className":1049},[],[1051],{"type":51,"value":1052},"\u003Cservice>-\u003Cpr-id>.onrender.com",{"type":46,"tag":60,"props":1054,"children":1056},{"id":1055},"blueprint-configuration",[1057],{"type":51,"value":1058},"Blueprint Configuration",{"type":46,"tag":739,"props":1060,"children":1062},{"className":741,"code":1061,"language":743,"meta":744,"style":744},"services:\n  - type: web\n    runtime: static\n    name: my-frontend\n    buildCommand: npm ci && npm run build\n    staticPublishPath: dist\n    routes:\n      - type: rewrite\n        source: \u002F*\n        destination: \u002Findex.html\n    headers:\n      - path: \u002F*\n        name: X-Frame-Options\n        value: DENY\n    previews:\n      generation: automatic\n",[1063],{"type":46,"tag":245,"props":1064,"children":1065},{"__ignoreMap":744},[1066,1078,1098,1115,1131,1148,1165,1177,1198,1215,1232,1245,1265,1282,1299,1312],{"type":46,"tag":750,"props":1067,"children":1068},{"class":752,"line":753},[1069,1074],{"type":46,"tag":750,"props":1070,"children":1071},{"style":757},[1072],{"type":51,"value":1073},"services",{"type":46,"tag":750,"props":1075,"children":1076},{"style":762},[1077],{"type":51,"value":765},{"type":46,"tag":750,"props":1079,"children":1080},{"class":752,"line":768},[1081,1085,1089,1093],{"type":46,"tag":750,"props":1082,"children":1083},{"style":762},[1084],{"type":51,"value":774},{"type":46,"tag":750,"props":1086,"children":1087},{"style":757},[1088],{"type":51,"value":779},{"type":46,"tag":750,"props":1090,"children":1091},{"style":762},[1092],{"type":51,"value":784},{"type":46,"tag":750,"props":1094,"children":1095},{"style":787},[1096],{"type":51,"value":1097}," web\n",{"type":46,"tag":750,"props":1099,"children":1100},{"class":752,"line":793},[1101,1106,1110],{"type":46,"tag":750,"props":1102,"children":1103},{"style":757},[1104],{"type":51,"value":1105},"    runtime",{"type":46,"tag":750,"props":1107,"children":1108},{"style":762},[1109],{"type":51,"value":784},{"type":46,"tag":750,"props":1111,"children":1112},{"style":787},[1113],{"type":51,"value":1114}," static\n",{"type":46,"tag":750,"props":1116,"children":1117},{"class":752,"line":811},[1118,1122,1126],{"type":46,"tag":750,"props":1119,"children":1120},{"style":757},[1121],{"type":51,"value":915},{"type":46,"tag":750,"props":1123,"children":1124},{"style":762},[1125],{"type":51,"value":784},{"type":46,"tag":750,"props":1127,"children":1128},{"style":787},[1129],{"type":51,"value":1130}," my-frontend\n",{"type":46,"tag":750,"props":1132,"children":1133},{"class":752,"line":944},[1134,1139,1143],{"type":46,"tag":750,"props":1135,"children":1136},{"style":757},[1137],{"type":51,"value":1138},"    buildCommand",{"type":46,"tag":750,"props":1140,"children":1141},{"style":762},[1142],{"type":51,"value":784},{"type":46,"tag":750,"props":1144,"children":1145},{"style":787},[1146],{"type":51,"value":1147}," npm ci && npm run build\n",{"type":46,"tag":750,"props":1149,"children":1150},{"class":752,"line":965},[1151,1156,1160],{"type":46,"tag":750,"props":1152,"children":1153},{"style":757},[1154],{"type":51,"value":1155},"    staticPublishPath",{"type":46,"tag":750,"props":1157,"children":1158},{"style":762},[1159],{"type":51,"value":784},{"type":46,"tag":750,"props":1161,"children":1162},{"style":787},[1163],{"type":51,"value":1164}," dist\n",{"type":46,"tag":750,"props":1166,"children":1167},{"class":752,"line":982},[1168,1173],{"type":46,"tag":750,"props":1169,"children":1170},{"style":757},[1171],{"type":51,"value":1172},"    routes",{"type":46,"tag":750,"props":1174,"children":1175},{"style":762},[1176],{"type":51,"value":765},{"type":46,"tag":750,"props":1178,"children":1180},{"class":752,"line":1179},8,[1181,1186,1190,1194],{"type":46,"tag":750,"props":1182,"children":1183},{"style":762},[1184],{"type":51,"value":1185},"      -",{"type":46,"tag":750,"props":1187,"children":1188},{"style":757},[1189],{"type":51,"value":779},{"type":46,"tag":750,"props":1191,"children":1192},{"style":762},[1193],{"type":51,"value":784},{"type":46,"tag":750,"props":1195,"children":1196},{"style":787},[1197],{"type":51,"value":790},{"type":46,"tag":750,"props":1199,"children":1201},{"class":752,"line":1200},9,[1202,1207,1211],{"type":46,"tag":750,"props":1203,"children":1204},{"style":757},[1205],{"type":51,"value":1206},"        source",{"type":46,"tag":750,"props":1208,"children":1209},{"style":762},[1210],{"type":51,"value":784},{"type":46,"tag":750,"props":1212,"children":1213},{"style":787},[1214],{"type":51,"value":808},{"type":46,"tag":750,"props":1216,"children":1218},{"class":752,"line":1217},10,[1219,1224,1228],{"type":46,"tag":750,"props":1220,"children":1221},{"style":757},[1222],{"type":51,"value":1223},"        destination",{"type":46,"tag":750,"props":1225,"children":1226},{"style":762},[1227],{"type":51,"value":784},{"type":46,"tag":750,"props":1229,"children":1230},{"style":787},[1231],{"type":51,"value":826},{"type":46,"tag":750,"props":1233,"children":1235},{"class":752,"line":1234},11,[1236,1241],{"type":46,"tag":750,"props":1237,"children":1238},{"style":757},[1239],{"type":51,"value":1240},"    headers",{"type":46,"tag":750,"props":1242,"children":1243},{"style":762},[1244],{"type":51,"value":765},{"type":46,"tag":750,"props":1246,"children":1248},{"class":752,"line":1247},12,[1249,1253,1257,1261],{"type":46,"tag":750,"props":1250,"children":1251},{"style":762},[1252],{"type":51,"value":1185},{"type":46,"tag":750,"props":1254,"children":1255},{"style":757},[1256],{"type":51,"value":899},{"type":46,"tag":750,"props":1258,"children":1259},{"style":762},[1260],{"type":51,"value":784},{"type":46,"tag":750,"props":1262,"children":1263},{"style":787},[1264],{"type":51,"value":808},{"type":46,"tag":750,"props":1266,"children":1268},{"class":752,"line":1267},13,[1269,1274,1278],{"type":46,"tag":750,"props":1270,"children":1271},{"style":757},[1272],{"type":51,"value":1273},"        name",{"type":46,"tag":750,"props":1275,"children":1276},{"style":762},[1277],{"type":51,"value":784},{"type":46,"tag":750,"props":1279,"children":1280},{"style":787},[1281],{"type":51,"value":924},{"type":46,"tag":750,"props":1283,"children":1285},{"class":752,"line":1284},14,[1286,1291,1295],{"type":46,"tag":750,"props":1287,"children":1288},{"style":757},[1289],{"type":51,"value":1290},"        value",{"type":46,"tag":750,"props":1292,"children":1293},{"style":762},[1294],{"type":51,"value":784},{"type":46,"tag":750,"props":1296,"children":1297},{"style":787},[1298],{"type":51,"value":941},{"type":46,"tag":750,"props":1300,"children":1302},{"class":752,"line":1301},15,[1303,1308],{"type":46,"tag":750,"props":1304,"children":1305},{"style":757},[1306],{"type":51,"value":1307},"    previews",{"type":46,"tag":750,"props":1309,"children":1310},{"style":762},[1311],{"type":51,"value":765},{"type":46,"tag":750,"props":1313,"children":1315},{"class":752,"line":1314},16,[1316,1321,1325],{"type":46,"tag":750,"props":1317,"children":1318},{"style":757},[1319],{"type":51,"value":1320},"      generation",{"type":46,"tag":750,"props":1322,"children":1323},{"style":762},[1324],{"type":51,"value":784},{"type":46,"tag":750,"props":1326,"children":1327},{"style":787},[1328],{"type":51,"value":1329}," automatic\n",{"type":46,"tag":54,"props":1331,"children":1332},{},[1333,1338,1340,1346,1348,1354,1356,1362],{"type":46,"tag":77,"props":1334,"children":1335},{},[1336],{"type":51,"value":1337},"Note:",{"type":51,"value":1339}," Static sites use ",{"type":46,"tag":245,"props":1341,"children":1343},{"className":1342},[],[1344],{"type":51,"value":1345},"type: web",{"type":51,"value":1347}," with ",{"type":46,"tag":245,"props":1349,"children":1351},{"className":1350},[],[1352],{"type":51,"value":1353},"runtime: static",{"type":51,"value":1355}," in Blueprints. There is no separate ",{"type":46,"tag":245,"props":1357,"children":1359},{"className":1358},[],[1360],{"type":51,"value":1361},"type: static",{"type":51,"value":176},{"type":46,"tag":60,"props":1364,"children":1366},{"id":1365},"cdn-and-performance",[1367],{"type":51,"value":1368},"CDN and Performance",{"type":46,"tag":67,"props":1370,"children":1371},{},[1372,1382,1392,1402,1412],{"type":46,"tag":71,"props":1373,"children":1374},{},[1375,1380],{"type":46,"tag":77,"props":1376,"children":1377},{},[1378],{"type":51,"value":1379},"Global CDN",{"type":51,"value":1381}," with edge caching worldwide",{"type":46,"tag":71,"props":1383,"children":1384},{},[1385,1390],{"type":46,"tag":77,"props":1386,"children":1387},{},[1388],{"type":51,"value":1389},"Brotli compression",{"type":51,"value":1391}," (better than gzip)",{"type":46,"tag":71,"props":1393,"children":1394},{},[1395,1400],{"type":46,"tag":77,"props":1396,"children":1397},{},[1398],{"type":51,"value":1399},"HTTP\u002F2",{"type":51,"value":1401}," by default",{"type":46,"tag":71,"props":1403,"children":1404},{},[1405,1410],{"type":46,"tag":77,"props":1406,"children":1407},{},[1408],{"type":51,"value":1409},"Immediate cache invalidation",{"type":51,"value":1411}," on every deploy (zero-downtime, atomic deploys)",{"type":46,"tag":71,"props":1413,"children":1414},{},[1415,1420],{"type":46,"tag":77,"props":1416,"children":1417},{},[1418],{"type":51,"value":1419},"DDoS protection",{"type":51,"value":1421}," included free",{"type":46,"tag":60,"props":1423,"children":1425},{"id":1424},"billing",[1426],{"type":51,"value":1427},"Billing",{"type":46,"tag":54,"props":1429,"children":1430},{},[1431,1433,1438],{"type":51,"value":1432},"Static sites have a ",{"type":46,"tag":77,"props":1434,"children":1435},{},[1436],{"type":51,"value":1437},"free tier",{"type":51,"value":1439},". They count against workspace-level monthly included amounts for:",{"type":46,"tag":67,"props":1441,"children":1442},{},[1443,1453],{"type":46,"tag":71,"props":1444,"children":1445},{},[1446,1451],{"type":46,"tag":77,"props":1447,"children":1448},{},[1449],{"type":51,"value":1450},"Outbound bandwidth",{"type":51,"value":1452}," (data served to users)",{"type":46,"tag":71,"props":1454,"children":1455},{},[1456,1461],{"type":46,"tag":77,"props":1457,"children":1458},{},[1459],{"type":51,"value":1460},"Pipeline minutes",{"type":51,"value":1462}," (build time)",{"type":46,"tag":60,"props":1464,"children":1466},{"id":1465},"references",[1467],{"type":51,"value":1468},"References",{"type":46,"tag":184,"props":1470,"children":1471},{},[1472,1488],{"type":46,"tag":188,"props":1473,"children":1474},{},[1475],{"type":46,"tag":192,"props":1476,"children":1477},{},[1478,1483],{"type":46,"tag":196,"props":1479,"children":1480},{},[1481],{"type":51,"value":1482},"Document",{"type":46,"tag":196,"props":1484,"children":1485},{},[1486],{"type":51,"value":1487},"Contents",{"type":46,"tag":212,"props":1489,"children":1490},{},[1491,1507],{"type":46,"tag":192,"props":1492,"children":1493},{},[1494,1502],{"type":46,"tag":219,"props":1495,"children":1496},{},[1497],{"type":46,"tag":245,"props":1498,"children":1500},{"className":1499},[],[1501],{"type":51,"value":849},{"type":46,"tag":219,"props":1503,"children":1504},{},[1505],{"type":51,"value":1506},"Redirect types, rewrite rules, header patterns, SPA config",{"type":46,"tag":192,"props":1508,"children":1509},{},[1510,1519],{"type":46,"tag":219,"props":1511,"children":1512},{},[1513],{"type":46,"tag":245,"props":1514,"children":1516},{"className":1515},[],[1517],{"type":51,"value":1518},"references\u002Fframework-configs.md",{"type":46,"tag":219,"props":1520,"children":1521},{},[1522],{"type":51,"value":1523},"Build commands and publish paths for 10+ frameworks",{"type":46,"tag":60,"props":1525,"children":1527},{"id":1526},"related-skills",[1528],{"type":51,"value":1529},"Related Skills",{"type":46,"tag":67,"props":1531,"children":1532},{},[1533,1542,1559,1569],{"type":46,"tag":71,"props":1534,"children":1535},{},[1536,1540],{"type":46,"tag":77,"props":1537,"children":1538},{},[1539],{"type":51,"value":167},{"type":51,"value":1541}," — For SSR frameworks that need a running server",{"type":46,"tag":71,"props":1543,"children":1544},{},[1545,1549,1551,1557],{"type":46,"tag":77,"props":1546,"children":1547},{},[1548],{"type":51,"value":174},{"type":51,"value":1550}," — Full ",{"type":46,"tag":245,"props":1552,"children":1554},{"className":1553},[],[1555],{"type":51,"value":1556},"render.yaml",{"type":51,"value":1558}," schema for static site fields",{"type":46,"tag":71,"props":1560,"children":1561},{},[1562,1567],{"type":46,"tag":77,"props":1563,"children":1564},{},[1565],{"type":51,"value":1566},"render-domains",{"type":51,"value":1568}," — Custom domain and TLS setup",{"type":46,"tag":71,"props":1570,"children":1571},{},[1572,1577],{"type":46,"tag":77,"props":1573,"children":1574},{},[1575],{"type":51,"value":1576},"render-deploy",{"type":51,"value":1578}," — Deploy flows, CLI, MCP operations",{"type":46,"tag":1580,"props":1581,"children":1582},"style",{},[1583],{"type":51,"value":1584},"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":1586,"total":1705},[1587,1605,1621,1633,1653,1673,1693],{"slug":1588,"name":1588,"fn":1589,"description":1590,"org":1591,"tags":1592,"stars":25,"repoUrl":26,"updatedAt":27},"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},[1593,1596,1599,1602],{"name":1594,"slug":1595,"type":15},"Accessibility","accessibility",{"name":1597,"slug":1598,"type":15},"Charts","charts",{"name":1600,"slug":1601,"type":15},"Data Visualization","data-visualization",{"name":1603,"slug":1604,"type":15},"Design","design",{"slug":1606,"name":1606,"fn":1607,"description":1608,"org":1609,"tags":1610,"stars":25,"repoUrl":26,"updatedAt":1620},"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},[1611,1614,1617],{"name":1612,"slug":1613,"type":15},"Agents","agents",{"name":1615,"slug":1616,"type":15},"Browser Automation","browser-automation",{"name":1618,"slug":1619,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1622,"name":1622,"fn":1623,"description":1624,"org":1625,"tags":1626,"stars":25,"repoUrl":26,"updatedAt":1632},"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},[1627,1628,1631],{"name":1615,"slug":1616,"type":15},{"name":1629,"slug":1630,"type":15},"Local Development","local-development",{"name":1618,"slug":1619,"type":15},"2026-04-06T18:41:17.526867",{"slug":1634,"name":1634,"fn":1635,"description":1636,"org":1637,"tags":1638,"stars":25,"repoUrl":26,"updatedAt":1652},"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},[1639,1640,1643,1646,1649],{"name":1612,"slug":1613,"type":15},{"name":1641,"slug":1642,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1644,"slug":1645,"type":15},"SDK","sdk",{"name":1647,"slug":1648,"type":15},"Serverless","serverless",{"name":1650,"slug":1651,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1654,"name":1654,"fn":1655,"description":1656,"org":1657,"tags":1658,"stars":25,"repoUrl":26,"updatedAt":1672},"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},[1659,1660,1663,1666,1669],{"name":23,"slug":24,"type":15},{"name":1661,"slug":1662,"type":15},"React","react",{"name":1664,"slug":1665,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1667,"slug":1668,"type":15},"UI Components","ui-components",{"name":1670,"slug":1671,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1674,"name":1674,"fn":1675,"description":1676,"org":1677,"tags":1678,"stars":25,"repoUrl":26,"updatedAt":1692},"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},[1679,1682,1685,1688,1691],{"name":1680,"slug":1681,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1683,"slug":1684,"type":15},"Cost Optimization","cost-optimization",{"name":1686,"slug":1687,"type":15},"LLM","llm",{"name":1689,"slug":1690,"type":15},"Performance","performance",{"name":1670,"slug":1671,"type":15},"2026-04-06T18:40:44.377464",{"slug":1694,"name":1694,"fn":1695,"description":1696,"org":1697,"tags":1698,"stars":25,"repoUrl":26,"updatedAt":1704},"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},[1699,1700,1703],{"name":1683,"slug":1684,"type":15},{"name":1701,"slug":1702,"type":15},"Database","database",{"name":1686,"slug":1687,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1707,"total":1902},[1708,1729,1752,1769,1785,1800,1819,1831,1845,1859,1871,1886],{"slug":1709,"name":1709,"fn":1710,"description":1711,"org":1712,"tags":1713,"stars":1726,"repoUrl":1727,"updatedAt":1728},"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},[1714,1717,1720,1723],{"name":1715,"slug":1716,"type":15},"Documents","documents",{"name":1718,"slug":1719,"type":15},"Healthcare","healthcare",{"name":1721,"slug":1722,"type":15},"Insurance","insurance",{"name":1724,"slug":1725,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1730,"name":1730,"fn":1731,"description":1732,"org":1733,"tags":1734,"stars":1749,"repoUrl":1750,"updatedAt":1751},"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},[1735,1738,1740,1743,1746],{"name":1736,"slug":1737,"type":15},".NET","dotnet",{"name":1739,"slug":1730,"type":15},"ASP.NET Core",{"name":1741,"slug":1742,"type":15},"Blazor","blazor",{"name":1744,"slug":1745,"type":15},"C#","csharp",{"name":1747,"slug":1748,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1753,"name":1753,"fn":1754,"description":1755,"org":1756,"tags":1757,"stars":1749,"repoUrl":1750,"updatedAt":1768},"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},[1758,1761,1764,1767],{"name":1759,"slug":1760,"type":15},"Apps SDK","apps-sdk",{"name":1762,"slug":1763,"type":15},"ChatGPT","chatgpt",{"name":1765,"slug":1766,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1770,"name":1770,"fn":1771,"description":1772,"org":1773,"tags":1774,"stars":1749,"repoUrl":1750,"updatedAt":1784},"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},[1775,1778,1781],{"name":1776,"slug":1777,"type":15},"API Development","api-development",{"name":1779,"slug":1780,"type":15},"CLI","cli",{"name":1782,"slug":1783,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1786,"name":1786,"fn":1787,"description":1788,"org":1789,"tags":1790,"stars":1749,"repoUrl":1750,"updatedAt":1799},"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},[1791,1794,1797,1798],{"name":1792,"slug":1793,"type":15},"Cloudflare","cloudflare",{"name":1795,"slug":1796,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1641,"slug":1642,"type":15},{"name":17,"slug":18,"type":15},"2026-04-12T05:07:14.275118",{"slug":1801,"name":1801,"fn":1802,"description":1803,"org":1804,"tags":1805,"stars":1749,"repoUrl":1750,"updatedAt":1818},"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},[1806,1809,1812,1815],{"name":1807,"slug":1808,"type":15},"Productivity","productivity",{"name":1810,"slug":1811,"type":15},"Project Management","project-management",{"name":1813,"slug":1814,"type":15},"Strategy","strategy",{"name":1816,"slug":1817,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1820,"name":1820,"fn":1821,"description":1822,"org":1823,"tags":1824,"stars":1749,"repoUrl":1750,"updatedAt":1830},"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},[1825,1826,1828,1829],{"name":1603,"slug":1604,"type":15},{"name":1827,"slug":1820,"type":15},"Figma",{"name":23,"slug":24,"type":15},{"name":1765,"slug":1766,"type":15},"2026-04-12T05:06:47.939943",{"slug":1832,"name":1832,"fn":1833,"description":1834,"org":1835,"tags":1836,"stars":1749,"repoUrl":1750,"updatedAt":1844},"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},[1837,1838,1841,1842,1843],{"name":1603,"slug":1604,"type":15},{"name":1839,"slug":1840,"type":15},"Design System","design-system",{"name":1827,"slug":1820,"type":15},{"name":23,"slug":24,"type":15},{"name":1667,"slug":1668,"type":15},"2026-05-10T05:59:52.971881",{"slug":1846,"name":1846,"fn":1847,"description":1848,"org":1849,"tags":1850,"stars":1749,"repoUrl":1750,"updatedAt":1858},"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},[1851,1852,1853,1856,1857],{"name":1603,"slug":1604,"type":15},{"name":1839,"slug":1840,"type":15},{"name":1854,"slug":1855,"type":15},"Documentation","documentation",{"name":1827,"slug":1820,"type":15},{"name":23,"slug":24,"type":15},"2026-05-16T06:07:47.821474",{"slug":1860,"name":1860,"fn":1861,"description":1862,"org":1863,"tags":1864,"stars":1749,"repoUrl":1750,"updatedAt":1870},"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},[1865,1866,1867,1868,1869],{"name":1603,"slug":1604,"type":15},{"name":1827,"slug":1820,"type":15},{"name":23,"slug":24,"type":15},{"name":1667,"slug":1668,"type":15},{"name":1747,"slug":1748,"type":15},"2026-05-16T06:07:40.583615",{"slug":1872,"name":1872,"fn":1873,"description":1874,"org":1875,"tags":1876,"stars":1749,"repoUrl":1750,"updatedAt":1885},"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},[1877,1880,1881,1884],{"name":1878,"slug":1879,"type":15},"Animation","animation",{"name":1782,"slug":1783,"type":15},{"name":1882,"slug":1883,"type":15},"Creative","creative",{"name":1603,"slug":1604,"type":15},"2026-05-02T05:31:48.48485",{"slug":1887,"name":1887,"fn":1888,"description":1889,"org":1890,"tags":1891,"stars":1749,"repoUrl":1750,"updatedAt":1901},"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},[1892,1893,1894,1897,1900],{"name":1882,"slug":1883,"type":15},{"name":1603,"slug":1604,"type":15},{"name":1895,"slug":1896,"type":15},"Image Generation","image-generation",{"name":1898,"slug":1899,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]