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