[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-cloudflare-deploy":3,"mdc--lcl6mt-key":36,"related-org-openai-cloudflare-deploy":1652,"related-repo-openai-cloudflare-deploy":1844},{"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},"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},"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},"Cloudflare Pages","cloudflare-pages","tag",{"name":17,"slug":18,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":20,"slug":21,"type":15},"Cloudflare","cloudflare",{"name":23,"slug":24,"type":15},"Deployment","deployment",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:14.275118",null,1614,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"Skills Catalog for Codex","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002F.curated\u002Fcloudflare-deploy","---\nname: cloudflare-deploy\ndescription: 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.\n---\n\n# Cloudflare Deploy\n\nConsolidated skill for building on the Cloudflare platform. Use decision trees below to find the right product, then load detailed references.\n\n## Prerequisites\n\n- When sandboxing blocks the deployment network calls, rerun with `sandbox_permissions=require_escalated`.\n- The deployment might take a few minutes. Use appropriate timeout values.\n\n## Authentication (Required Before Deploy)\n\nVerify auth before `wrangler deploy`, `wrangler pages deploy`, or `npm run deploy`:\n\n```bash\nnpx wrangler whoami    # Shows account if authenticated\n```\n\nNot authenticated? → `references\u002Fwrangler\u002Fauth.md`\n- Interactive\u002Flocal: `wrangler login` (one-time OAuth)\n- CI\u002FCD: Set `CLOUDFLARE_API_TOKEN` env var\n\n## Quick Decision Trees\n\n### \"I need to run code\"\n\n```\nNeed to run code?\n├─ Serverless functions at the edge → workers\u002F\n├─ Full-stack web app with Git deploys → pages\u002F\n├─ Stateful coordination\u002Freal-time → durable-objects\u002F\n├─ Long-running multi-step jobs → workflows\u002F\n├─ Run containers → containers\u002F\n├─ Multi-tenant (customers deploy code) → workers-for-platforms\u002F\n├─ Scheduled tasks (cron) → cron-triggers\u002F\n├─ Lightweight edge logic (modify HTTP) → snippets\u002F\n├─ Process Worker execution events (logs\u002Fobservability) → tail-workers\u002F\n└─ Optimize latency to backend infrastructure → smart-placement\u002F\n```\n\n### \"I need to store data\"\n\n```\nNeed storage?\n├─ Key-value (config, sessions, cache) → kv\u002F\n├─ Relational SQL → d1\u002F (SQLite) or hyperdrive\u002F (existing Postgres\u002FMySQL)\n├─ Object\u002Ffile storage (S3-compatible) → r2\u002F\n├─ Message queue (async processing) → queues\u002F\n├─ Vector embeddings (AI\u002Fsemantic search) → vectorize\u002F\n├─ Strongly-consistent per-entity state → durable-objects\u002F (DO storage)\n├─ Secrets management → secrets-store\u002F\n├─ Streaming ETL to R2 → pipelines\u002F\n└─ Persistent cache (long-term retention) → cache-reserve\u002F\n```\n\n### \"I need AI\u002FML\"\n\n```\nNeed AI?\n├─ Run inference (LLMs, embeddings, images) → workers-ai\u002F\n├─ Vector database for RAG\u002Fsearch → vectorize\u002F\n├─ Build stateful AI agents → agents-sdk\u002F\n├─ Gateway for any AI provider (caching, routing) → ai-gateway\u002F\n└─ AI-powered search widget → ai-search\u002F\n```\n\n### \"I need networking\u002Fconnectivity\"\n\n```\nNeed networking?\n├─ Expose local service to internet → tunnel\u002F\n├─ TCP\u002FUDP proxy (non-HTTP) → spectrum\u002F\n├─ WebRTC TURN server → turn\u002F\n├─ Private network connectivity → network-interconnect\u002F\n├─ Optimize routing → argo-smart-routing\u002F\n├─ Optimize latency to backend (not user) → smart-placement\u002F\n└─ Real-time video\u002Faudio → realtimekit\u002F or realtime-sfu\u002F\n```\n\n### \"I need security\"\n\n```\nNeed security?\n├─ Web Application Firewall → waf\u002F\n├─ DDoS protection → ddos\u002F\n├─ Bot detection\u002Fmanagement → bot-management\u002F\n├─ API protection → api-shield\u002F\n├─ CAPTCHA alternative → turnstile\u002F\n└─ Credential leak detection → waf\u002F (managed ruleset)\n```\n\n### \"I need media\u002Fcontent\"\n\n```\nNeed media?\n├─ Image optimization\u002Ftransformation → images\u002F\n├─ Video streaming\u002Fencoding → stream\u002F\n├─ Browser automation\u002Fscreenshots → browser-rendering\u002F\n└─ Third-party script management → zaraz\u002F\n```\n\n### \"I need infrastructure-as-code\"\n\n```\nNeed IaC? → pulumi\u002F (Pulumi), terraform\u002F (Terraform), or api\u002F (REST API)\n```\n\n## Product Index\n\n### Compute & Runtime\n| Product | Reference |\n|---------|-----------|\n| Workers | `references\u002Fworkers\u002F` |\n| Pages | `references\u002Fpages\u002F` |\n| Pages Functions | `references\u002Fpages-functions\u002F` |\n| Durable Objects | `references\u002Fdurable-objects\u002F` |\n| Workflows | `references\u002Fworkflows\u002F` |\n| Containers | `references\u002Fcontainers\u002F` |\n| Workers for Platforms | `references\u002Fworkers-for-platforms\u002F` |\n| Cron Triggers | `references\u002Fcron-triggers\u002F` |\n| Tail Workers | `references\u002Ftail-workers\u002F` |\n| Snippets | `references\u002Fsnippets\u002F` |\n| Smart Placement | `references\u002Fsmart-placement\u002F` |\n\n### Storage & Data\n| Product | Reference |\n|---------|-----------|\n| KV | `references\u002Fkv\u002F` |\n| D1 | `references\u002Fd1\u002F` |\n| R2 | `references\u002Fr2\u002F` |\n| Queues | `references\u002Fqueues\u002F` |\n| Hyperdrive | `references\u002Fhyperdrive\u002F` |\n| DO Storage | `references\u002Fdo-storage\u002F` |\n| Secrets Store | `references\u002Fsecrets-store\u002F` |\n| Pipelines | `references\u002Fpipelines\u002F` |\n| R2 Data Catalog | `references\u002Fr2-data-catalog\u002F` |\n| R2 SQL | `references\u002Fr2-sql\u002F` |\n\n### AI & Machine Learning\n| Product | Reference |\n|---------|-----------|\n| Workers AI | `references\u002Fworkers-ai\u002F` |\n| Vectorize | `references\u002Fvectorize\u002F` |\n| Agents SDK | `references\u002Fagents-sdk\u002F` |\n| AI Gateway | `references\u002Fai-gateway\u002F` |\n| AI Search | `references\u002Fai-search\u002F` |\n\n### Networking & Connectivity\n| Product | Reference |\n|---------|-----------|\n| Tunnel | `references\u002Ftunnel\u002F` |\n| Spectrum | `references\u002Fspectrum\u002F` |\n| TURN | `references\u002Fturn\u002F` |\n| Network Interconnect | `references\u002Fnetwork-interconnect\u002F` |\n| Argo Smart Routing | `references\u002Fargo-smart-routing\u002F` |\n| Workers VPC | `references\u002Fworkers-vpc\u002F` |\n\n### Security\n| Product | Reference |\n|---------|-----------|\n| WAF | `references\u002Fwaf\u002F` |\n| DDoS Protection | `references\u002Fddos\u002F` |\n| Bot Management | `references\u002Fbot-management\u002F` |\n| API Shield | `references\u002Fapi-shield\u002F` |\n| Turnstile | `references\u002Fturnstile\u002F` |\n\n### Media & Content\n| Product | Reference |\n|---------|-----------|\n| Images | `references\u002Fimages\u002F` |\n| Stream | `references\u002Fstream\u002F` |\n| Browser Rendering | `references\u002Fbrowser-rendering\u002F` |\n| Zaraz | `references\u002Fzaraz\u002F` |\n\n### Real-Time Communication\n| Product | Reference |\n|---------|-----------|\n| RealtimeKit | `references\u002Frealtimekit\u002F` |\n| Realtime SFU | `references\u002Frealtime-sfu\u002F` |\n\n### Developer Tools\n| Product | Reference |\n|---------|-----------|\n| Wrangler | `references\u002Fwrangler\u002F` |\n| Miniflare | `references\u002Fminiflare\u002F` |\n| C3 | `references\u002Fc3\u002F` |\n| Observability | `references\u002Fobservability\u002F` |\n| Analytics Engine | `references\u002Fanalytics-engine\u002F` |\n| Web Analytics | `references\u002Fweb-analytics\u002F` |\n| Sandbox | `references\u002Fsandbox\u002F` |\n| Workerd | `references\u002Fworkerd\u002F` |\n| Workers Playground | `references\u002Fworkers-playground\u002F` |\n\n### Infrastructure as Code\n| Product | Reference |\n|---------|-----------|\n| Pulumi | `references\u002Fpulumi\u002F` |\n| Terraform | `references\u002Fterraform\u002F` |\n| API | `references\u002Fapi\u002F` |\n\n### Other Services\n| Product | Reference |\n|---------|-----------|\n| Email Routing | `references\u002Femail-routing\u002F` |\n| Email Workers | `references\u002Femail-workers\u002F` |\n| Static Assets | `references\u002Fstatic-assets\u002F` |\n| Bindings | `references\u002Fbindings\u002F` |\n| Cache Reserve | `references\u002Fcache-reserve\u002F` |\n\n## Troubleshooting\n\n### Escalated Network Access\n\nIf deployment fails due to network issues (timeouts, DNS errors, connection resets), rerun the deploy with escalated permissions (use `sandbox_permissions=require_escalated`). The deploy requires escalated network access when sandbox networking blocks outbound requests.\n\nExample guidance to the user:\n\n```\nThe deploy needs escalated network access to deploy to Cloudflare. I can rerun the command with escalated permissions—want me to proceed?\n```\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,49,55,62,86,92,121,161,172,201,207,214,224,230,239,245,254,260,269,275,284,290,299,305,314,320,326,541,547,737,743,848,854,976,982,1087,1093,1181,1187,1241,1247,1420,1426,1497,1503,1608,1614,1620,1632,1637,1646],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","Cloudflare Deploy",{"type":42,"tag":50,"props":51,"children":52},"p",{},[53],{"type":47,"value":54},"Consolidated skill for building on the Cloudflare platform. Use decision trees below to find the right product, then load detailed references.",{"type":42,"tag":56,"props":57,"children":59},"h2",{"id":58},"prerequisites",[60],{"type":47,"value":61},"Prerequisites",{"type":42,"tag":63,"props":64,"children":65},"ul",{},[66,81],{"type":42,"tag":67,"props":68,"children":69},"li",{},[70,72,79],{"type":47,"value":71},"When sandboxing blocks the deployment network calls, rerun with ",{"type":42,"tag":73,"props":74,"children":76},"code",{"className":75},[],[77],{"type":47,"value":78},"sandbox_permissions=require_escalated",{"type":47,"value":80},".",{"type":42,"tag":67,"props":82,"children":83},{},[84],{"type":47,"value":85},"The deployment might take a few minutes. Use appropriate timeout values.",{"type":42,"tag":56,"props":87,"children":89},{"id":88},"authentication-required-before-deploy",[90],{"type":47,"value":91},"Authentication (Required Before Deploy)",{"type":42,"tag":50,"props":93,"children":94},{},[95,97,103,105,111,113,119],{"type":47,"value":96},"Verify auth before ",{"type":42,"tag":73,"props":98,"children":100},{"className":99},[],[101],{"type":47,"value":102},"wrangler deploy",{"type":47,"value":104},", ",{"type":42,"tag":73,"props":106,"children":108},{"className":107},[],[109],{"type":47,"value":110},"wrangler pages deploy",{"type":47,"value":112},", or ",{"type":42,"tag":73,"props":114,"children":116},{"className":115},[],[117],{"type":47,"value":118},"npm run deploy",{"type":47,"value":120},":",{"type":42,"tag":122,"props":123,"children":128},"pre",{"className":124,"code":125,"language":126,"meta":127,"style":127},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx wrangler whoami    # Shows account if authenticated\n","bash","",[129],{"type":42,"tag":73,"props":130,"children":131},{"__ignoreMap":127},[132],{"type":42,"tag":133,"props":134,"children":137},"span",{"class":135,"line":136},"line",1,[138,144,150,155],{"type":42,"tag":133,"props":139,"children":141},{"style":140},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[142],{"type":47,"value":143},"npx",{"type":42,"tag":133,"props":145,"children":147},{"style":146},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[148],{"type":47,"value":149}," wrangler",{"type":42,"tag":133,"props":151,"children":152},{"style":146},[153],{"type":47,"value":154}," whoami",{"type":42,"tag":133,"props":156,"children":158},{"style":157},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[159],{"type":47,"value":160},"    # Shows account if authenticated\n",{"type":42,"tag":50,"props":162,"children":163},{},[164,166],{"type":47,"value":165},"Not authenticated? → ",{"type":42,"tag":73,"props":167,"children":169},{"className":168},[],[170],{"type":47,"value":171},"references\u002Fwrangler\u002Fauth.md",{"type":42,"tag":63,"props":173,"children":174},{},[175,188],{"type":42,"tag":67,"props":176,"children":177},{},[178,180,186],{"type":47,"value":179},"Interactive\u002Flocal: ",{"type":42,"tag":73,"props":181,"children":183},{"className":182},[],[184],{"type":47,"value":185},"wrangler login",{"type":47,"value":187}," (one-time OAuth)",{"type":42,"tag":67,"props":189,"children":190},{},[191,193,199],{"type":47,"value":192},"CI\u002FCD: Set ",{"type":42,"tag":73,"props":194,"children":196},{"className":195},[],[197],{"type":47,"value":198},"CLOUDFLARE_API_TOKEN",{"type":47,"value":200}," env var",{"type":42,"tag":56,"props":202,"children":204},{"id":203},"quick-decision-trees",[205],{"type":47,"value":206},"Quick Decision Trees",{"type":42,"tag":208,"props":209,"children":211},"h3",{"id":210},"i-need-to-run-code",[212],{"type":47,"value":213},"\"I need to run code\"",{"type":42,"tag":122,"props":215,"children":219},{"className":216,"code":218,"language":47},[217],"language-text","Need to run code?\n├─ Serverless functions at the edge → workers\u002F\n├─ Full-stack web app with Git deploys → pages\u002F\n├─ Stateful coordination\u002Freal-time → durable-objects\u002F\n├─ Long-running multi-step jobs → workflows\u002F\n├─ Run containers → containers\u002F\n├─ Multi-tenant (customers deploy code) → workers-for-platforms\u002F\n├─ Scheduled tasks (cron) → cron-triggers\u002F\n├─ Lightweight edge logic (modify HTTP) → snippets\u002F\n├─ Process Worker execution events (logs\u002Fobservability) → tail-workers\u002F\n└─ Optimize latency to backend infrastructure → smart-placement\u002F\n",[220],{"type":42,"tag":73,"props":221,"children":222},{"__ignoreMap":127},[223],{"type":47,"value":218},{"type":42,"tag":208,"props":225,"children":227},{"id":226},"i-need-to-store-data",[228],{"type":47,"value":229},"\"I need to store data\"",{"type":42,"tag":122,"props":231,"children":234},{"className":232,"code":233,"language":47},[217],"Need storage?\n├─ Key-value (config, sessions, cache) → kv\u002F\n├─ Relational SQL → d1\u002F (SQLite) or hyperdrive\u002F (existing Postgres\u002FMySQL)\n├─ Object\u002Ffile storage (S3-compatible) → r2\u002F\n├─ Message queue (async processing) → queues\u002F\n├─ Vector embeddings (AI\u002Fsemantic search) → vectorize\u002F\n├─ Strongly-consistent per-entity state → durable-objects\u002F (DO storage)\n├─ Secrets management → secrets-store\u002F\n├─ Streaming ETL to R2 → pipelines\u002F\n└─ Persistent cache (long-term retention) → cache-reserve\u002F\n",[235],{"type":42,"tag":73,"props":236,"children":237},{"__ignoreMap":127},[238],{"type":47,"value":233},{"type":42,"tag":208,"props":240,"children":242},{"id":241},"i-need-aiml",[243],{"type":47,"value":244},"\"I need AI\u002FML\"",{"type":42,"tag":122,"props":246,"children":249},{"className":247,"code":248,"language":47},[217],"Need AI?\n├─ Run inference (LLMs, embeddings, images) → workers-ai\u002F\n├─ Vector database for RAG\u002Fsearch → vectorize\u002F\n├─ Build stateful AI agents → agents-sdk\u002F\n├─ Gateway for any AI provider (caching, routing) → ai-gateway\u002F\n└─ AI-powered search widget → ai-search\u002F\n",[250],{"type":42,"tag":73,"props":251,"children":252},{"__ignoreMap":127},[253],{"type":47,"value":248},{"type":42,"tag":208,"props":255,"children":257},{"id":256},"i-need-networkingconnectivity",[258],{"type":47,"value":259},"\"I need networking\u002Fconnectivity\"",{"type":42,"tag":122,"props":261,"children":264},{"className":262,"code":263,"language":47},[217],"Need networking?\n├─ Expose local service to internet → tunnel\u002F\n├─ TCP\u002FUDP proxy (non-HTTP) → spectrum\u002F\n├─ WebRTC TURN server → turn\u002F\n├─ Private network connectivity → network-interconnect\u002F\n├─ Optimize routing → argo-smart-routing\u002F\n├─ Optimize latency to backend (not user) → smart-placement\u002F\n└─ Real-time video\u002Faudio → realtimekit\u002F or realtime-sfu\u002F\n",[265],{"type":42,"tag":73,"props":266,"children":267},{"__ignoreMap":127},[268],{"type":47,"value":263},{"type":42,"tag":208,"props":270,"children":272},{"id":271},"i-need-security",[273],{"type":47,"value":274},"\"I need security\"",{"type":42,"tag":122,"props":276,"children":279},{"className":277,"code":278,"language":47},[217],"Need security?\n├─ Web Application Firewall → waf\u002F\n├─ DDoS protection → ddos\u002F\n├─ Bot detection\u002Fmanagement → bot-management\u002F\n├─ API protection → api-shield\u002F\n├─ CAPTCHA alternative → turnstile\u002F\n└─ Credential leak detection → waf\u002F (managed ruleset)\n",[280],{"type":42,"tag":73,"props":281,"children":282},{"__ignoreMap":127},[283],{"type":47,"value":278},{"type":42,"tag":208,"props":285,"children":287},{"id":286},"i-need-mediacontent",[288],{"type":47,"value":289},"\"I need media\u002Fcontent\"",{"type":42,"tag":122,"props":291,"children":294},{"className":292,"code":293,"language":47},[217],"Need media?\n├─ Image optimization\u002Ftransformation → images\u002F\n├─ Video streaming\u002Fencoding → stream\u002F\n├─ Browser automation\u002Fscreenshots → browser-rendering\u002F\n└─ Third-party script management → zaraz\u002F\n",[295],{"type":42,"tag":73,"props":296,"children":297},{"__ignoreMap":127},[298],{"type":47,"value":293},{"type":42,"tag":208,"props":300,"children":302},{"id":301},"i-need-infrastructure-as-code",[303],{"type":47,"value":304},"\"I need infrastructure-as-code\"",{"type":42,"tag":122,"props":306,"children":309},{"className":307,"code":308,"language":47},[217],"Need IaC? → pulumi\u002F (Pulumi), terraform\u002F (Terraform), or api\u002F (REST API)\n",[310],{"type":42,"tag":73,"props":311,"children":312},{"__ignoreMap":127},[313],{"type":47,"value":308},{"type":42,"tag":56,"props":315,"children":317},{"id":316},"product-index",[318],{"type":47,"value":319},"Product Index",{"type":42,"tag":208,"props":321,"children":323},{"id":322},"compute-runtime",[324],{"type":47,"value":325},"Compute & Runtime",{"type":42,"tag":327,"props":328,"children":329},"table",{},[330,349],{"type":42,"tag":331,"props":332,"children":333},"thead",{},[334],{"type":42,"tag":335,"props":336,"children":337},"tr",{},[338,344],{"type":42,"tag":339,"props":340,"children":341},"th",{},[342],{"type":47,"value":343},"Product",{"type":42,"tag":339,"props":345,"children":346},{},[347],{"type":47,"value":348},"Reference",{"type":42,"tag":350,"props":351,"children":352},"tbody",{},[353,371,388,405,422,439,456,473,490,507,524],{"type":42,"tag":335,"props":354,"children":355},{},[356,362],{"type":42,"tag":357,"props":358,"children":359},"td",{},[360],{"type":47,"value":361},"Workers",{"type":42,"tag":357,"props":363,"children":364},{},[365],{"type":42,"tag":73,"props":366,"children":368},{"className":367},[],[369],{"type":47,"value":370},"references\u002Fworkers\u002F",{"type":42,"tag":335,"props":372,"children":373},{},[374,379],{"type":42,"tag":357,"props":375,"children":376},{},[377],{"type":47,"value":378},"Pages",{"type":42,"tag":357,"props":380,"children":381},{},[382],{"type":42,"tag":73,"props":383,"children":385},{"className":384},[],[386],{"type":47,"value":387},"references\u002Fpages\u002F",{"type":42,"tag":335,"props":389,"children":390},{},[391,396],{"type":42,"tag":357,"props":392,"children":393},{},[394],{"type":47,"value":395},"Pages Functions",{"type":42,"tag":357,"props":397,"children":398},{},[399],{"type":42,"tag":73,"props":400,"children":402},{"className":401},[],[403],{"type":47,"value":404},"references\u002Fpages-functions\u002F",{"type":42,"tag":335,"props":406,"children":407},{},[408,413],{"type":42,"tag":357,"props":409,"children":410},{},[411],{"type":47,"value":412},"Durable Objects",{"type":42,"tag":357,"props":414,"children":415},{},[416],{"type":42,"tag":73,"props":417,"children":419},{"className":418},[],[420],{"type":47,"value":421},"references\u002Fdurable-objects\u002F",{"type":42,"tag":335,"props":423,"children":424},{},[425,430],{"type":42,"tag":357,"props":426,"children":427},{},[428],{"type":47,"value":429},"Workflows",{"type":42,"tag":357,"props":431,"children":432},{},[433],{"type":42,"tag":73,"props":434,"children":436},{"className":435},[],[437],{"type":47,"value":438},"references\u002Fworkflows\u002F",{"type":42,"tag":335,"props":440,"children":441},{},[442,447],{"type":42,"tag":357,"props":443,"children":444},{},[445],{"type":47,"value":446},"Containers",{"type":42,"tag":357,"props":448,"children":449},{},[450],{"type":42,"tag":73,"props":451,"children":453},{"className":452},[],[454],{"type":47,"value":455},"references\u002Fcontainers\u002F",{"type":42,"tag":335,"props":457,"children":458},{},[459,464],{"type":42,"tag":357,"props":460,"children":461},{},[462],{"type":47,"value":463},"Workers for Platforms",{"type":42,"tag":357,"props":465,"children":466},{},[467],{"type":42,"tag":73,"props":468,"children":470},{"className":469},[],[471],{"type":47,"value":472},"references\u002Fworkers-for-platforms\u002F",{"type":42,"tag":335,"props":474,"children":475},{},[476,481],{"type":42,"tag":357,"props":477,"children":478},{},[479],{"type":47,"value":480},"Cron Triggers",{"type":42,"tag":357,"props":482,"children":483},{},[484],{"type":42,"tag":73,"props":485,"children":487},{"className":486},[],[488],{"type":47,"value":489},"references\u002Fcron-triggers\u002F",{"type":42,"tag":335,"props":491,"children":492},{},[493,498],{"type":42,"tag":357,"props":494,"children":495},{},[496],{"type":47,"value":497},"Tail Workers",{"type":42,"tag":357,"props":499,"children":500},{},[501],{"type":42,"tag":73,"props":502,"children":504},{"className":503},[],[505],{"type":47,"value":506},"references\u002Ftail-workers\u002F",{"type":42,"tag":335,"props":508,"children":509},{},[510,515],{"type":42,"tag":357,"props":511,"children":512},{},[513],{"type":47,"value":514},"Snippets",{"type":42,"tag":357,"props":516,"children":517},{},[518],{"type":42,"tag":73,"props":519,"children":521},{"className":520},[],[522],{"type":47,"value":523},"references\u002Fsnippets\u002F",{"type":42,"tag":335,"props":525,"children":526},{},[527,532],{"type":42,"tag":357,"props":528,"children":529},{},[530],{"type":47,"value":531},"Smart Placement",{"type":42,"tag":357,"props":533,"children":534},{},[535],{"type":42,"tag":73,"props":536,"children":538},{"className":537},[],[539],{"type":47,"value":540},"references\u002Fsmart-placement\u002F",{"type":42,"tag":208,"props":542,"children":544},{"id":543},"storage-data",[545],{"type":47,"value":546},"Storage & Data",{"type":42,"tag":327,"props":548,"children":549},{},[550,564],{"type":42,"tag":331,"props":551,"children":552},{},[553],{"type":42,"tag":335,"props":554,"children":555},{},[556,560],{"type":42,"tag":339,"props":557,"children":558},{},[559],{"type":47,"value":343},{"type":42,"tag":339,"props":561,"children":562},{},[563],{"type":47,"value":348},{"type":42,"tag":350,"props":565,"children":566},{},[567,584,601,618,635,652,669,686,703,720],{"type":42,"tag":335,"props":568,"children":569},{},[570,575],{"type":42,"tag":357,"props":571,"children":572},{},[573],{"type":47,"value":574},"KV",{"type":42,"tag":357,"props":576,"children":577},{},[578],{"type":42,"tag":73,"props":579,"children":581},{"className":580},[],[582],{"type":47,"value":583},"references\u002Fkv\u002F",{"type":42,"tag":335,"props":585,"children":586},{},[587,592],{"type":42,"tag":357,"props":588,"children":589},{},[590],{"type":47,"value":591},"D1",{"type":42,"tag":357,"props":593,"children":594},{},[595],{"type":42,"tag":73,"props":596,"children":598},{"className":597},[],[599],{"type":47,"value":600},"references\u002Fd1\u002F",{"type":42,"tag":335,"props":602,"children":603},{},[604,609],{"type":42,"tag":357,"props":605,"children":606},{},[607],{"type":47,"value":608},"R2",{"type":42,"tag":357,"props":610,"children":611},{},[612],{"type":42,"tag":73,"props":613,"children":615},{"className":614},[],[616],{"type":47,"value":617},"references\u002Fr2\u002F",{"type":42,"tag":335,"props":619,"children":620},{},[621,626],{"type":42,"tag":357,"props":622,"children":623},{},[624],{"type":47,"value":625},"Queues",{"type":42,"tag":357,"props":627,"children":628},{},[629],{"type":42,"tag":73,"props":630,"children":632},{"className":631},[],[633],{"type":47,"value":634},"references\u002Fqueues\u002F",{"type":42,"tag":335,"props":636,"children":637},{},[638,643],{"type":42,"tag":357,"props":639,"children":640},{},[641],{"type":47,"value":642},"Hyperdrive",{"type":42,"tag":357,"props":644,"children":645},{},[646],{"type":42,"tag":73,"props":647,"children":649},{"className":648},[],[650],{"type":47,"value":651},"references\u002Fhyperdrive\u002F",{"type":42,"tag":335,"props":653,"children":654},{},[655,660],{"type":42,"tag":357,"props":656,"children":657},{},[658],{"type":47,"value":659},"DO Storage",{"type":42,"tag":357,"props":661,"children":662},{},[663],{"type":42,"tag":73,"props":664,"children":666},{"className":665},[],[667],{"type":47,"value":668},"references\u002Fdo-storage\u002F",{"type":42,"tag":335,"props":670,"children":671},{},[672,677],{"type":42,"tag":357,"props":673,"children":674},{},[675],{"type":47,"value":676},"Secrets Store",{"type":42,"tag":357,"props":678,"children":679},{},[680],{"type":42,"tag":73,"props":681,"children":683},{"className":682},[],[684],{"type":47,"value":685},"references\u002Fsecrets-store\u002F",{"type":42,"tag":335,"props":687,"children":688},{},[689,694],{"type":42,"tag":357,"props":690,"children":691},{},[692],{"type":47,"value":693},"Pipelines",{"type":42,"tag":357,"props":695,"children":696},{},[697],{"type":42,"tag":73,"props":698,"children":700},{"className":699},[],[701],{"type":47,"value":702},"references\u002Fpipelines\u002F",{"type":42,"tag":335,"props":704,"children":705},{},[706,711],{"type":42,"tag":357,"props":707,"children":708},{},[709],{"type":47,"value":710},"R2 Data Catalog",{"type":42,"tag":357,"props":712,"children":713},{},[714],{"type":42,"tag":73,"props":715,"children":717},{"className":716},[],[718],{"type":47,"value":719},"references\u002Fr2-data-catalog\u002F",{"type":42,"tag":335,"props":721,"children":722},{},[723,728],{"type":42,"tag":357,"props":724,"children":725},{},[726],{"type":47,"value":727},"R2 SQL",{"type":42,"tag":357,"props":729,"children":730},{},[731],{"type":42,"tag":73,"props":732,"children":734},{"className":733},[],[735],{"type":47,"value":736},"references\u002Fr2-sql\u002F",{"type":42,"tag":208,"props":738,"children":740},{"id":739},"ai-machine-learning",[741],{"type":47,"value":742},"AI & Machine Learning",{"type":42,"tag":327,"props":744,"children":745},{},[746,760],{"type":42,"tag":331,"props":747,"children":748},{},[749],{"type":42,"tag":335,"props":750,"children":751},{},[752,756],{"type":42,"tag":339,"props":753,"children":754},{},[755],{"type":47,"value":343},{"type":42,"tag":339,"props":757,"children":758},{},[759],{"type":47,"value":348},{"type":42,"tag":350,"props":761,"children":762},{},[763,780,797,814,831],{"type":42,"tag":335,"props":764,"children":765},{},[766,771],{"type":42,"tag":357,"props":767,"children":768},{},[769],{"type":47,"value":770},"Workers AI",{"type":42,"tag":357,"props":772,"children":773},{},[774],{"type":42,"tag":73,"props":775,"children":777},{"className":776},[],[778],{"type":47,"value":779},"references\u002Fworkers-ai\u002F",{"type":42,"tag":335,"props":781,"children":782},{},[783,788],{"type":42,"tag":357,"props":784,"children":785},{},[786],{"type":47,"value":787},"Vectorize",{"type":42,"tag":357,"props":789,"children":790},{},[791],{"type":42,"tag":73,"props":792,"children":794},{"className":793},[],[795],{"type":47,"value":796},"references\u002Fvectorize\u002F",{"type":42,"tag":335,"props":798,"children":799},{},[800,805],{"type":42,"tag":357,"props":801,"children":802},{},[803],{"type":47,"value":804},"Agents SDK",{"type":42,"tag":357,"props":806,"children":807},{},[808],{"type":42,"tag":73,"props":809,"children":811},{"className":810},[],[812],{"type":47,"value":813},"references\u002Fagents-sdk\u002F",{"type":42,"tag":335,"props":815,"children":816},{},[817,822],{"type":42,"tag":357,"props":818,"children":819},{},[820],{"type":47,"value":821},"AI Gateway",{"type":42,"tag":357,"props":823,"children":824},{},[825],{"type":42,"tag":73,"props":826,"children":828},{"className":827},[],[829],{"type":47,"value":830},"references\u002Fai-gateway\u002F",{"type":42,"tag":335,"props":832,"children":833},{},[834,839],{"type":42,"tag":357,"props":835,"children":836},{},[837],{"type":47,"value":838},"AI Search",{"type":42,"tag":357,"props":840,"children":841},{},[842],{"type":42,"tag":73,"props":843,"children":845},{"className":844},[],[846],{"type":47,"value":847},"references\u002Fai-search\u002F",{"type":42,"tag":208,"props":849,"children":851},{"id":850},"networking-connectivity",[852],{"type":47,"value":853},"Networking & Connectivity",{"type":42,"tag":327,"props":855,"children":856},{},[857,871],{"type":42,"tag":331,"props":858,"children":859},{},[860],{"type":42,"tag":335,"props":861,"children":862},{},[863,867],{"type":42,"tag":339,"props":864,"children":865},{},[866],{"type":47,"value":343},{"type":42,"tag":339,"props":868,"children":869},{},[870],{"type":47,"value":348},{"type":42,"tag":350,"props":872,"children":873},{},[874,891,908,925,942,959],{"type":42,"tag":335,"props":875,"children":876},{},[877,882],{"type":42,"tag":357,"props":878,"children":879},{},[880],{"type":47,"value":881},"Tunnel",{"type":42,"tag":357,"props":883,"children":884},{},[885],{"type":42,"tag":73,"props":886,"children":888},{"className":887},[],[889],{"type":47,"value":890},"references\u002Ftunnel\u002F",{"type":42,"tag":335,"props":892,"children":893},{},[894,899],{"type":42,"tag":357,"props":895,"children":896},{},[897],{"type":47,"value":898},"Spectrum",{"type":42,"tag":357,"props":900,"children":901},{},[902],{"type":42,"tag":73,"props":903,"children":905},{"className":904},[],[906],{"type":47,"value":907},"references\u002Fspectrum\u002F",{"type":42,"tag":335,"props":909,"children":910},{},[911,916],{"type":42,"tag":357,"props":912,"children":913},{},[914],{"type":47,"value":915},"TURN",{"type":42,"tag":357,"props":917,"children":918},{},[919],{"type":42,"tag":73,"props":920,"children":922},{"className":921},[],[923],{"type":47,"value":924},"references\u002Fturn\u002F",{"type":42,"tag":335,"props":926,"children":927},{},[928,933],{"type":42,"tag":357,"props":929,"children":930},{},[931],{"type":47,"value":932},"Network Interconnect",{"type":42,"tag":357,"props":934,"children":935},{},[936],{"type":42,"tag":73,"props":937,"children":939},{"className":938},[],[940],{"type":47,"value":941},"references\u002Fnetwork-interconnect\u002F",{"type":42,"tag":335,"props":943,"children":944},{},[945,950],{"type":42,"tag":357,"props":946,"children":947},{},[948],{"type":47,"value":949},"Argo Smart Routing",{"type":42,"tag":357,"props":951,"children":952},{},[953],{"type":42,"tag":73,"props":954,"children":956},{"className":955},[],[957],{"type":47,"value":958},"references\u002Fargo-smart-routing\u002F",{"type":42,"tag":335,"props":960,"children":961},{},[962,967],{"type":42,"tag":357,"props":963,"children":964},{},[965],{"type":47,"value":966},"Workers VPC",{"type":42,"tag":357,"props":968,"children":969},{},[970],{"type":42,"tag":73,"props":971,"children":973},{"className":972},[],[974],{"type":47,"value":975},"references\u002Fworkers-vpc\u002F",{"type":42,"tag":208,"props":977,"children":979},{"id":978},"security",[980],{"type":47,"value":981},"Security",{"type":42,"tag":327,"props":983,"children":984},{},[985,999],{"type":42,"tag":331,"props":986,"children":987},{},[988],{"type":42,"tag":335,"props":989,"children":990},{},[991,995],{"type":42,"tag":339,"props":992,"children":993},{},[994],{"type":47,"value":343},{"type":42,"tag":339,"props":996,"children":997},{},[998],{"type":47,"value":348},{"type":42,"tag":350,"props":1000,"children":1001},{},[1002,1019,1036,1053,1070],{"type":42,"tag":335,"props":1003,"children":1004},{},[1005,1010],{"type":42,"tag":357,"props":1006,"children":1007},{},[1008],{"type":47,"value":1009},"WAF",{"type":42,"tag":357,"props":1011,"children":1012},{},[1013],{"type":42,"tag":73,"props":1014,"children":1016},{"className":1015},[],[1017],{"type":47,"value":1018},"references\u002Fwaf\u002F",{"type":42,"tag":335,"props":1020,"children":1021},{},[1022,1027],{"type":42,"tag":357,"props":1023,"children":1024},{},[1025],{"type":47,"value":1026},"DDoS Protection",{"type":42,"tag":357,"props":1028,"children":1029},{},[1030],{"type":42,"tag":73,"props":1031,"children":1033},{"className":1032},[],[1034],{"type":47,"value":1035},"references\u002Fddos\u002F",{"type":42,"tag":335,"props":1037,"children":1038},{},[1039,1044],{"type":42,"tag":357,"props":1040,"children":1041},{},[1042],{"type":47,"value":1043},"Bot Management",{"type":42,"tag":357,"props":1045,"children":1046},{},[1047],{"type":42,"tag":73,"props":1048,"children":1050},{"className":1049},[],[1051],{"type":47,"value":1052},"references\u002Fbot-management\u002F",{"type":42,"tag":335,"props":1054,"children":1055},{},[1056,1061],{"type":42,"tag":357,"props":1057,"children":1058},{},[1059],{"type":47,"value":1060},"API Shield",{"type":42,"tag":357,"props":1062,"children":1063},{},[1064],{"type":42,"tag":73,"props":1065,"children":1067},{"className":1066},[],[1068],{"type":47,"value":1069},"references\u002Fapi-shield\u002F",{"type":42,"tag":335,"props":1071,"children":1072},{},[1073,1078],{"type":42,"tag":357,"props":1074,"children":1075},{},[1076],{"type":47,"value":1077},"Turnstile",{"type":42,"tag":357,"props":1079,"children":1080},{},[1081],{"type":42,"tag":73,"props":1082,"children":1084},{"className":1083},[],[1085],{"type":47,"value":1086},"references\u002Fturnstile\u002F",{"type":42,"tag":208,"props":1088,"children":1090},{"id":1089},"media-content",[1091],{"type":47,"value":1092},"Media & Content",{"type":42,"tag":327,"props":1094,"children":1095},{},[1096,1110],{"type":42,"tag":331,"props":1097,"children":1098},{},[1099],{"type":42,"tag":335,"props":1100,"children":1101},{},[1102,1106],{"type":42,"tag":339,"props":1103,"children":1104},{},[1105],{"type":47,"value":343},{"type":42,"tag":339,"props":1107,"children":1108},{},[1109],{"type":47,"value":348},{"type":42,"tag":350,"props":1111,"children":1112},{},[1113,1130,1147,1164],{"type":42,"tag":335,"props":1114,"children":1115},{},[1116,1121],{"type":42,"tag":357,"props":1117,"children":1118},{},[1119],{"type":47,"value":1120},"Images",{"type":42,"tag":357,"props":1122,"children":1123},{},[1124],{"type":42,"tag":73,"props":1125,"children":1127},{"className":1126},[],[1128],{"type":47,"value":1129},"references\u002Fimages\u002F",{"type":42,"tag":335,"props":1131,"children":1132},{},[1133,1138],{"type":42,"tag":357,"props":1134,"children":1135},{},[1136],{"type":47,"value":1137},"Stream",{"type":42,"tag":357,"props":1139,"children":1140},{},[1141],{"type":42,"tag":73,"props":1142,"children":1144},{"className":1143},[],[1145],{"type":47,"value":1146},"references\u002Fstream\u002F",{"type":42,"tag":335,"props":1148,"children":1149},{},[1150,1155],{"type":42,"tag":357,"props":1151,"children":1152},{},[1153],{"type":47,"value":1154},"Browser Rendering",{"type":42,"tag":357,"props":1156,"children":1157},{},[1158],{"type":42,"tag":73,"props":1159,"children":1161},{"className":1160},[],[1162],{"type":47,"value":1163},"references\u002Fbrowser-rendering\u002F",{"type":42,"tag":335,"props":1165,"children":1166},{},[1167,1172],{"type":42,"tag":357,"props":1168,"children":1169},{},[1170],{"type":47,"value":1171},"Zaraz",{"type":42,"tag":357,"props":1173,"children":1174},{},[1175],{"type":42,"tag":73,"props":1176,"children":1178},{"className":1177},[],[1179],{"type":47,"value":1180},"references\u002Fzaraz\u002F",{"type":42,"tag":208,"props":1182,"children":1184},{"id":1183},"real-time-communication",[1185],{"type":47,"value":1186},"Real-Time Communication",{"type":42,"tag":327,"props":1188,"children":1189},{},[1190,1204],{"type":42,"tag":331,"props":1191,"children":1192},{},[1193],{"type":42,"tag":335,"props":1194,"children":1195},{},[1196,1200],{"type":42,"tag":339,"props":1197,"children":1198},{},[1199],{"type":47,"value":343},{"type":42,"tag":339,"props":1201,"children":1202},{},[1203],{"type":47,"value":348},{"type":42,"tag":350,"props":1205,"children":1206},{},[1207,1224],{"type":42,"tag":335,"props":1208,"children":1209},{},[1210,1215],{"type":42,"tag":357,"props":1211,"children":1212},{},[1213],{"type":47,"value":1214},"RealtimeKit",{"type":42,"tag":357,"props":1216,"children":1217},{},[1218],{"type":42,"tag":73,"props":1219,"children":1221},{"className":1220},[],[1222],{"type":47,"value":1223},"references\u002Frealtimekit\u002F",{"type":42,"tag":335,"props":1225,"children":1226},{},[1227,1232],{"type":42,"tag":357,"props":1228,"children":1229},{},[1230],{"type":47,"value":1231},"Realtime SFU",{"type":42,"tag":357,"props":1233,"children":1234},{},[1235],{"type":42,"tag":73,"props":1236,"children":1238},{"className":1237},[],[1239],{"type":47,"value":1240},"references\u002Frealtime-sfu\u002F",{"type":42,"tag":208,"props":1242,"children":1244},{"id":1243},"developer-tools",[1245],{"type":47,"value":1246},"Developer Tools",{"type":42,"tag":327,"props":1248,"children":1249},{},[1250,1264],{"type":42,"tag":331,"props":1251,"children":1252},{},[1253],{"type":42,"tag":335,"props":1254,"children":1255},{},[1256,1260],{"type":42,"tag":339,"props":1257,"children":1258},{},[1259],{"type":47,"value":343},{"type":42,"tag":339,"props":1261,"children":1262},{},[1263],{"type":47,"value":348},{"type":42,"tag":350,"props":1265,"children":1266},{},[1267,1284,1301,1318,1335,1352,1369,1386,1403],{"type":42,"tag":335,"props":1268,"children":1269},{},[1270,1275],{"type":42,"tag":357,"props":1271,"children":1272},{},[1273],{"type":47,"value":1274},"Wrangler",{"type":42,"tag":357,"props":1276,"children":1277},{},[1278],{"type":42,"tag":73,"props":1279,"children":1281},{"className":1280},[],[1282],{"type":47,"value":1283},"references\u002Fwrangler\u002F",{"type":42,"tag":335,"props":1285,"children":1286},{},[1287,1292],{"type":42,"tag":357,"props":1288,"children":1289},{},[1290],{"type":47,"value":1291},"Miniflare",{"type":42,"tag":357,"props":1293,"children":1294},{},[1295],{"type":42,"tag":73,"props":1296,"children":1298},{"className":1297},[],[1299],{"type":47,"value":1300},"references\u002Fminiflare\u002F",{"type":42,"tag":335,"props":1302,"children":1303},{},[1304,1309],{"type":42,"tag":357,"props":1305,"children":1306},{},[1307],{"type":47,"value":1308},"C3",{"type":42,"tag":357,"props":1310,"children":1311},{},[1312],{"type":42,"tag":73,"props":1313,"children":1315},{"className":1314},[],[1316],{"type":47,"value":1317},"references\u002Fc3\u002F",{"type":42,"tag":335,"props":1319,"children":1320},{},[1321,1326],{"type":42,"tag":357,"props":1322,"children":1323},{},[1324],{"type":47,"value":1325},"Observability",{"type":42,"tag":357,"props":1327,"children":1328},{},[1329],{"type":42,"tag":73,"props":1330,"children":1332},{"className":1331},[],[1333],{"type":47,"value":1334},"references\u002Fobservability\u002F",{"type":42,"tag":335,"props":1336,"children":1337},{},[1338,1343],{"type":42,"tag":357,"props":1339,"children":1340},{},[1341],{"type":47,"value":1342},"Analytics Engine",{"type":42,"tag":357,"props":1344,"children":1345},{},[1346],{"type":42,"tag":73,"props":1347,"children":1349},{"className":1348},[],[1350],{"type":47,"value":1351},"references\u002Fanalytics-engine\u002F",{"type":42,"tag":335,"props":1353,"children":1354},{},[1355,1360],{"type":42,"tag":357,"props":1356,"children":1357},{},[1358],{"type":47,"value":1359},"Web Analytics",{"type":42,"tag":357,"props":1361,"children":1362},{},[1363],{"type":42,"tag":73,"props":1364,"children":1366},{"className":1365},[],[1367],{"type":47,"value":1368},"references\u002Fweb-analytics\u002F",{"type":42,"tag":335,"props":1370,"children":1371},{},[1372,1377],{"type":42,"tag":357,"props":1373,"children":1374},{},[1375],{"type":47,"value":1376},"Sandbox",{"type":42,"tag":357,"props":1378,"children":1379},{},[1380],{"type":42,"tag":73,"props":1381,"children":1383},{"className":1382},[],[1384],{"type":47,"value":1385},"references\u002Fsandbox\u002F",{"type":42,"tag":335,"props":1387,"children":1388},{},[1389,1394],{"type":42,"tag":357,"props":1390,"children":1391},{},[1392],{"type":47,"value":1393},"Workerd",{"type":42,"tag":357,"props":1395,"children":1396},{},[1397],{"type":42,"tag":73,"props":1398,"children":1400},{"className":1399},[],[1401],{"type":47,"value":1402},"references\u002Fworkerd\u002F",{"type":42,"tag":335,"props":1404,"children":1405},{},[1406,1411],{"type":42,"tag":357,"props":1407,"children":1408},{},[1409],{"type":47,"value":1410},"Workers Playground",{"type":42,"tag":357,"props":1412,"children":1413},{},[1414],{"type":42,"tag":73,"props":1415,"children":1417},{"className":1416},[],[1418],{"type":47,"value":1419},"references\u002Fworkers-playground\u002F",{"type":42,"tag":208,"props":1421,"children":1423},{"id":1422},"infrastructure-as-code",[1424],{"type":47,"value":1425},"Infrastructure as Code",{"type":42,"tag":327,"props":1427,"children":1428},{},[1429,1443],{"type":42,"tag":331,"props":1430,"children":1431},{},[1432],{"type":42,"tag":335,"props":1433,"children":1434},{},[1435,1439],{"type":42,"tag":339,"props":1436,"children":1437},{},[1438],{"type":47,"value":343},{"type":42,"tag":339,"props":1440,"children":1441},{},[1442],{"type":47,"value":348},{"type":42,"tag":350,"props":1444,"children":1445},{},[1446,1463,1480],{"type":42,"tag":335,"props":1447,"children":1448},{},[1449,1454],{"type":42,"tag":357,"props":1450,"children":1451},{},[1452],{"type":47,"value":1453},"Pulumi",{"type":42,"tag":357,"props":1455,"children":1456},{},[1457],{"type":42,"tag":73,"props":1458,"children":1460},{"className":1459},[],[1461],{"type":47,"value":1462},"references\u002Fpulumi\u002F",{"type":42,"tag":335,"props":1464,"children":1465},{},[1466,1471],{"type":42,"tag":357,"props":1467,"children":1468},{},[1469],{"type":47,"value":1470},"Terraform",{"type":42,"tag":357,"props":1472,"children":1473},{},[1474],{"type":42,"tag":73,"props":1475,"children":1477},{"className":1476},[],[1478],{"type":47,"value":1479},"references\u002Fterraform\u002F",{"type":42,"tag":335,"props":1481,"children":1482},{},[1483,1488],{"type":42,"tag":357,"props":1484,"children":1485},{},[1486],{"type":47,"value":1487},"API",{"type":42,"tag":357,"props":1489,"children":1490},{},[1491],{"type":42,"tag":73,"props":1492,"children":1494},{"className":1493},[],[1495],{"type":47,"value":1496},"references\u002Fapi\u002F",{"type":42,"tag":208,"props":1498,"children":1500},{"id":1499},"other-services",[1501],{"type":47,"value":1502},"Other Services",{"type":42,"tag":327,"props":1504,"children":1505},{},[1506,1520],{"type":42,"tag":331,"props":1507,"children":1508},{},[1509],{"type":42,"tag":335,"props":1510,"children":1511},{},[1512,1516],{"type":42,"tag":339,"props":1513,"children":1514},{},[1515],{"type":47,"value":343},{"type":42,"tag":339,"props":1517,"children":1518},{},[1519],{"type":47,"value":348},{"type":42,"tag":350,"props":1521,"children":1522},{},[1523,1540,1557,1574,1591],{"type":42,"tag":335,"props":1524,"children":1525},{},[1526,1531],{"type":42,"tag":357,"props":1527,"children":1528},{},[1529],{"type":47,"value":1530},"Email Routing",{"type":42,"tag":357,"props":1532,"children":1533},{},[1534],{"type":42,"tag":73,"props":1535,"children":1537},{"className":1536},[],[1538],{"type":47,"value":1539},"references\u002Femail-routing\u002F",{"type":42,"tag":335,"props":1541,"children":1542},{},[1543,1548],{"type":42,"tag":357,"props":1544,"children":1545},{},[1546],{"type":47,"value":1547},"Email Workers",{"type":42,"tag":357,"props":1549,"children":1550},{},[1551],{"type":42,"tag":73,"props":1552,"children":1554},{"className":1553},[],[1555],{"type":47,"value":1556},"references\u002Femail-workers\u002F",{"type":42,"tag":335,"props":1558,"children":1559},{},[1560,1565],{"type":42,"tag":357,"props":1561,"children":1562},{},[1563],{"type":47,"value":1564},"Static Assets",{"type":42,"tag":357,"props":1566,"children":1567},{},[1568],{"type":42,"tag":73,"props":1569,"children":1571},{"className":1570},[],[1572],{"type":47,"value":1573},"references\u002Fstatic-assets\u002F",{"type":42,"tag":335,"props":1575,"children":1576},{},[1577,1582],{"type":42,"tag":357,"props":1578,"children":1579},{},[1580],{"type":47,"value":1581},"Bindings",{"type":42,"tag":357,"props":1583,"children":1584},{},[1585],{"type":42,"tag":73,"props":1586,"children":1588},{"className":1587},[],[1589],{"type":47,"value":1590},"references\u002Fbindings\u002F",{"type":42,"tag":335,"props":1592,"children":1593},{},[1594,1599],{"type":42,"tag":357,"props":1595,"children":1596},{},[1597],{"type":47,"value":1598},"Cache Reserve",{"type":42,"tag":357,"props":1600,"children":1601},{},[1602],{"type":42,"tag":73,"props":1603,"children":1605},{"className":1604},[],[1606],{"type":47,"value":1607},"references\u002Fcache-reserve\u002F",{"type":42,"tag":56,"props":1609,"children":1611},{"id":1610},"troubleshooting",[1612],{"type":47,"value":1613},"Troubleshooting",{"type":42,"tag":208,"props":1615,"children":1617},{"id":1616},"escalated-network-access",[1618],{"type":47,"value":1619},"Escalated Network Access",{"type":42,"tag":50,"props":1621,"children":1622},{},[1623,1625,1630],{"type":47,"value":1624},"If deployment fails due to network issues (timeouts, DNS errors, connection resets), rerun the deploy with escalated permissions (use ",{"type":42,"tag":73,"props":1626,"children":1628},{"className":1627},[],[1629],{"type":47,"value":78},{"type":47,"value":1631},"). The deploy requires escalated network access when sandbox networking blocks outbound requests.",{"type":42,"tag":50,"props":1633,"children":1634},{},[1635],{"type":47,"value":1636},"Example guidance to the user:",{"type":42,"tag":122,"props":1638,"children":1641},{"className":1639,"code":1640,"language":47},[217],"The deploy needs escalated network access to deploy to Cloudflare. I can rerun the command with escalated permissions—want me to proceed?\n",[1642],{"type":42,"tag":73,"props":1643,"children":1644},{"__ignoreMap":127},[1645],{"type":47,"value":1640},{"type":42,"tag":1647,"props":1648,"children":1649},"style",{},[1650],{"type":47,"value":1651},"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":1653,"total":1843},[1654,1675,1696,1713,1729,1736,1755,1771,1787,1801,1813,1828],{"slug":1655,"name":1655,"fn":1656,"description":1657,"org":1658,"tags":1659,"stars":1672,"repoUrl":1673,"updatedAt":1674},"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},[1660,1663,1666,1669],{"name":1661,"slug":1662,"type":15},"Documents","documents",{"name":1664,"slug":1665,"type":15},"Healthcare","healthcare",{"name":1667,"slug":1668,"type":15},"Insurance","insurance",{"name":1670,"slug":1671,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1676,"name":1676,"fn":1677,"description":1678,"org":1679,"tags":1680,"stars":25,"repoUrl":26,"updatedAt":1695},"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},[1681,1684,1686,1689,1692],{"name":1682,"slug":1683,"type":15},".NET","dotnet",{"name":1685,"slug":1676,"type":15},"ASP.NET Core",{"name":1687,"slug":1688,"type":15},"Blazor","blazor",{"name":1690,"slug":1691,"type":15},"C#","csharp",{"name":1693,"slug":1694,"type":15},"Web Development","web-development","2026-04-12T05:07:02.819491",{"slug":1697,"name":1697,"fn":1698,"description":1699,"org":1700,"tags":1701,"stars":25,"repoUrl":26,"updatedAt":1712},"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},[1702,1705,1708,1711],{"name":1703,"slug":1704,"type":15},"Apps SDK","apps-sdk",{"name":1706,"slug":1707,"type":15},"ChatGPT","chatgpt",{"name":1709,"slug":1710,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1714,"name":1714,"fn":1715,"description":1716,"org":1717,"tags":1718,"stars":25,"repoUrl":26,"updatedAt":1728},"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},[1719,1722,1725],{"name":1720,"slug":1721,"type":15},"API Development","api-development",{"name":1723,"slug":1724,"type":15},"CLI","cli",{"name":1726,"slug":1727,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":4,"name":4,"fn":5,"description":6,"org":1730,"tags":1731,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1732,1733,1734,1735],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},{"slug":1737,"name":1737,"fn":1738,"description":1739,"org":1740,"tags":1741,"stars":25,"repoUrl":26,"updatedAt":1754},"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},[1742,1745,1748,1751],{"name":1743,"slug":1744,"type":15},"Productivity","productivity",{"name":1746,"slug":1747,"type":15},"Project Management","project-management",{"name":1749,"slug":1750,"type":15},"Strategy","strategy",{"name":1752,"slug":1753,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1756,"name":1756,"fn":1757,"description":1758,"org":1759,"tags":1760,"stars":25,"repoUrl":26,"updatedAt":1770},"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},[1761,1764,1766,1769],{"name":1762,"slug":1763,"type":15},"Design","design",{"name":1765,"slug":1756,"type":15},"Figma",{"name":1767,"slug":1768,"type":15},"Frontend","frontend",{"name":1709,"slug":1710,"type":15},"2026-04-12T05:06:47.939943",{"slug":1772,"name":1772,"fn":1773,"description":1774,"org":1775,"tags":1776,"stars":25,"repoUrl":26,"updatedAt":1786},"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},[1777,1778,1781,1782,1783],{"name":1762,"slug":1763,"type":15},{"name":1779,"slug":1780,"type":15},"Design System","design-system",{"name":1765,"slug":1756,"type":15},{"name":1767,"slug":1768,"type":15},{"name":1784,"slug":1785,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1788,"name":1788,"fn":1789,"description":1790,"org":1791,"tags":1792,"stars":25,"repoUrl":26,"updatedAt":1800},"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},[1793,1794,1795,1798,1799],{"name":1762,"slug":1763,"type":15},{"name":1779,"slug":1780,"type":15},{"name":1796,"slug":1797,"type":15},"Documentation","documentation",{"name":1765,"slug":1756,"type":15},{"name":1767,"slug":1768,"type":15},"2026-05-16T06:07:47.821474",{"slug":1802,"name":1802,"fn":1803,"description":1804,"org":1805,"tags":1806,"stars":25,"repoUrl":26,"updatedAt":1812},"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},[1807,1808,1809,1810,1811],{"name":1762,"slug":1763,"type":15},{"name":1765,"slug":1756,"type":15},{"name":1767,"slug":1768,"type":15},{"name":1784,"slug":1785,"type":15},{"name":1693,"slug":1694,"type":15},"2026-05-16T06:07:40.583615",{"slug":1814,"name":1814,"fn":1815,"description":1816,"org":1817,"tags":1818,"stars":25,"repoUrl":26,"updatedAt":1827},"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},[1819,1822,1823,1826],{"name":1820,"slug":1821,"type":15},"Animation","animation",{"name":1726,"slug":1727,"type":15},{"name":1824,"slug":1825,"type":15},"Creative","creative",{"name":1762,"slug":1763,"type":15},"2026-05-02T05:31:48.48485",{"slug":1829,"name":1829,"fn":1830,"description":1831,"org":1832,"tags":1833,"stars":25,"repoUrl":26,"updatedAt":1842},"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},[1834,1835,1836,1839,1841],{"name":1824,"slug":1825,"type":15},{"name":1762,"slug":1763,"type":15},{"name":1837,"slug":1838,"type":15},"Image Generation","image-generation",{"name":1120,"slug":1840,"type":15},"images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":1845,"total":1896},[1846,1854,1861,1867,1874,1881,1888],{"slug":1676,"name":1676,"fn":1677,"description":1678,"org":1847,"tags":1848,"stars":25,"repoUrl":26,"updatedAt":1695},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1849,1850,1851,1852,1853],{"name":1682,"slug":1683,"type":15},{"name":1685,"slug":1676,"type":15},{"name":1687,"slug":1688,"type":15},{"name":1690,"slug":1691,"type":15},{"name":1693,"slug":1694,"type":15},{"slug":1697,"name":1697,"fn":1698,"description":1699,"org":1855,"tags":1856,"stars":25,"repoUrl":26,"updatedAt":1712},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1857,1858,1859,1860],{"name":1703,"slug":1704,"type":15},{"name":1706,"slug":1707,"type":15},{"name":1709,"slug":1710,"type":15},{"name":9,"slug":8,"type":15},{"slug":1714,"name":1714,"fn":1715,"description":1716,"org":1862,"tags":1863,"stars":25,"repoUrl":26,"updatedAt":1728},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1864,1865,1866],{"name":1720,"slug":1721,"type":15},{"name":1723,"slug":1724,"type":15},{"name":1726,"slug":1727,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1868,"tags":1869,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1870,1871,1872,1873],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},{"slug":1737,"name":1737,"fn":1738,"description":1739,"org":1875,"tags":1876,"stars":25,"repoUrl":26,"updatedAt":1754},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1877,1878,1879,1880],{"name":1743,"slug":1744,"type":15},{"name":1746,"slug":1747,"type":15},{"name":1749,"slug":1750,"type":15},{"name":1752,"slug":1753,"type":15},{"slug":1756,"name":1756,"fn":1757,"description":1758,"org":1882,"tags":1883,"stars":25,"repoUrl":26,"updatedAt":1770},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1884,1885,1886,1887],{"name":1762,"slug":1763,"type":15},{"name":1765,"slug":1756,"type":15},{"name":1767,"slug":1768,"type":15},{"name":1709,"slug":1710,"type":15},{"slug":1772,"name":1772,"fn":1773,"description":1774,"org":1889,"tags":1890,"stars":25,"repoUrl":26,"updatedAt":1786},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1891,1892,1893,1894,1895],{"name":1762,"slug":1763,"type":15},{"name":1779,"slug":1780,"type":15},{"name":1765,"slug":1756,"type":15},{"name":1767,"slug":1768,"type":15},{"name":1784,"slug":1785,"type":15},29]