[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-cloudflare-deploy":3,"mdc--ikw6at-key":36,"related-repo-jetbrains-cloudflare-deploy":1656,"related-org-jetbrains-cloudflare-deploy":1768},{"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 applications 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":9},"jetbrains","JetBrains","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fjetbrains.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",252,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills","2026-07-17T06:04:42.853896",null,17,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"Curated agent skills collection verified by JetBrains","https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills\u002Ftree\u002FHEAD\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.\nmetadata:\n  short-description: \"Deploy Workers, Pages, and platform services on Cloudflare\"\n  author: OpenAI\n  source: https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002F.curated\u002Fcloudflare-deploy\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":42},{"name":4,"description":6,"metadata":38},{"short-description":39,"author":40,"source":41},"Deploy Workers, Pages, and platform services on Cloudflare","OpenAI","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002F.curated\u002Fcloudflare-deploy",{"type":43,"children":44},"root",[45,53,59,66,90,96,125,165,176,205,211,218,228,234,243,249,258,264,273,279,288,294,303,309,318,324,330,545,551,741,747,852,858,980,986,1091,1097,1185,1191,1245,1251,1424,1430,1501,1507,1612,1618,1624,1636,1641,1650],{"type":46,"tag":47,"props":48,"children":49},"element","h1",{"id":4},[50],{"type":51,"value":52},"text","Cloudflare Deploy",{"type":46,"tag":54,"props":55,"children":56},"p",{},[57],{"type":51,"value":58},"Consolidated skill for building on the Cloudflare platform. Use decision trees below to find the right product, then load detailed references.",{"type":46,"tag":60,"props":61,"children":63},"h2",{"id":62},"prerequisites",[64],{"type":51,"value":65},"Prerequisites",{"type":46,"tag":67,"props":68,"children":69},"ul",{},[70,85],{"type":46,"tag":71,"props":72,"children":73},"li",{},[74,76,83],{"type":51,"value":75},"When sandboxing blocks the deployment network calls, rerun with ",{"type":46,"tag":77,"props":78,"children":80},"code",{"className":79},[],[81],{"type":51,"value":82},"sandbox_permissions=require_escalated",{"type":51,"value":84},".",{"type":46,"tag":71,"props":86,"children":87},{},[88],{"type":51,"value":89},"The deployment might take a few minutes. Use appropriate timeout values.",{"type":46,"tag":60,"props":91,"children":93},{"id":92},"authentication-required-before-deploy",[94],{"type":51,"value":95},"Authentication (Required Before Deploy)",{"type":46,"tag":54,"props":97,"children":98},{},[99,101,107,109,115,117,123],{"type":51,"value":100},"Verify auth before ",{"type":46,"tag":77,"props":102,"children":104},{"className":103},[],[105],{"type":51,"value":106},"wrangler deploy",{"type":51,"value":108},", ",{"type":46,"tag":77,"props":110,"children":112},{"className":111},[],[113],{"type":51,"value":114},"wrangler pages deploy",{"type":51,"value":116},", or ",{"type":46,"tag":77,"props":118,"children":120},{"className":119},[],[121],{"type":51,"value":122},"npm run deploy",{"type":51,"value":124},":",{"type":46,"tag":126,"props":127,"children":132},"pre",{"className":128,"code":129,"language":130,"meta":131,"style":131},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx wrangler whoami    # Shows account if authenticated\n","bash","",[133],{"type":46,"tag":77,"props":134,"children":135},{"__ignoreMap":131},[136],{"type":46,"tag":137,"props":138,"children":141},"span",{"class":139,"line":140},"line",1,[142,148,154,159],{"type":46,"tag":137,"props":143,"children":145},{"style":144},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[146],{"type":51,"value":147},"npx",{"type":46,"tag":137,"props":149,"children":151},{"style":150},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[152],{"type":51,"value":153}," wrangler",{"type":46,"tag":137,"props":155,"children":156},{"style":150},[157],{"type":51,"value":158}," whoami",{"type":46,"tag":137,"props":160,"children":162},{"style":161},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[163],{"type":51,"value":164},"    # Shows account if authenticated\n",{"type":46,"tag":54,"props":166,"children":167},{},[168,170],{"type":51,"value":169},"Not authenticated? → ",{"type":46,"tag":77,"props":171,"children":173},{"className":172},[],[174],{"type":51,"value":175},"references\u002Fwrangler\u002Fauth.md",{"type":46,"tag":67,"props":177,"children":178},{},[179,192],{"type":46,"tag":71,"props":180,"children":181},{},[182,184,190],{"type":51,"value":183},"Interactive\u002Flocal: ",{"type":46,"tag":77,"props":185,"children":187},{"className":186},[],[188],{"type":51,"value":189},"wrangler login",{"type":51,"value":191}," (one-time OAuth)",{"type":46,"tag":71,"props":193,"children":194},{},[195,197,203],{"type":51,"value":196},"CI\u002FCD: Set ",{"type":46,"tag":77,"props":198,"children":200},{"className":199},[],[201],{"type":51,"value":202},"CLOUDFLARE_API_TOKEN",{"type":51,"value":204}," env var",{"type":46,"tag":60,"props":206,"children":208},{"id":207},"quick-decision-trees",[209],{"type":51,"value":210},"Quick Decision Trees",{"type":46,"tag":212,"props":213,"children":215},"h3",{"id":214},"i-need-to-run-code",[216],{"type":51,"value":217},"\"I need to run code\"",{"type":46,"tag":126,"props":219,"children":223},{"className":220,"code":222,"language":51},[221],"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",[224],{"type":46,"tag":77,"props":225,"children":226},{"__ignoreMap":131},[227],{"type":51,"value":222},{"type":46,"tag":212,"props":229,"children":231},{"id":230},"i-need-to-store-data",[232],{"type":51,"value":233},"\"I need to store data\"",{"type":46,"tag":126,"props":235,"children":238},{"className":236,"code":237,"language":51},[221],"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",[239],{"type":46,"tag":77,"props":240,"children":241},{"__ignoreMap":131},[242],{"type":51,"value":237},{"type":46,"tag":212,"props":244,"children":246},{"id":245},"i-need-aiml",[247],{"type":51,"value":248},"\"I need AI\u002FML\"",{"type":46,"tag":126,"props":250,"children":253},{"className":251,"code":252,"language":51},[221],"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",[254],{"type":46,"tag":77,"props":255,"children":256},{"__ignoreMap":131},[257],{"type":51,"value":252},{"type":46,"tag":212,"props":259,"children":261},{"id":260},"i-need-networkingconnectivity",[262],{"type":51,"value":263},"\"I need networking\u002Fconnectivity\"",{"type":46,"tag":126,"props":265,"children":268},{"className":266,"code":267,"language":51},[221],"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",[269],{"type":46,"tag":77,"props":270,"children":271},{"__ignoreMap":131},[272],{"type":51,"value":267},{"type":46,"tag":212,"props":274,"children":276},{"id":275},"i-need-security",[277],{"type":51,"value":278},"\"I need security\"",{"type":46,"tag":126,"props":280,"children":283},{"className":281,"code":282,"language":51},[221],"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",[284],{"type":46,"tag":77,"props":285,"children":286},{"__ignoreMap":131},[287],{"type":51,"value":282},{"type":46,"tag":212,"props":289,"children":291},{"id":290},"i-need-mediacontent",[292],{"type":51,"value":293},"\"I need media\u002Fcontent\"",{"type":46,"tag":126,"props":295,"children":298},{"className":296,"code":297,"language":51},[221],"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",[299],{"type":46,"tag":77,"props":300,"children":301},{"__ignoreMap":131},[302],{"type":51,"value":297},{"type":46,"tag":212,"props":304,"children":306},{"id":305},"i-need-infrastructure-as-code",[307],{"type":51,"value":308},"\"I need infrastructure-as-code\"",{"type":46,"tag":126,"props":310,"children":313},{"className":311,"code":312,"language":51},[221],"Need IaC? → pulumi\u002F (Pulumi), terraform\u002F (Terraform), or api\u002F (REST API)\n",[314],{"type":46,"tag":77,"props":315,"children":316},{"__ignoreMap":131},[317],{"type":51,"value":312},{"type":46,"tag":60,"props":319,"children":321},{"id":320},"product-index",[322],{"type":51,"value":323},"Product Index",{"type":46,"tag":212,"props":325,"children":327},{"id":326},"compute-runtime",[328],{"type":51,"value":329},"Compute & Runtime",{"type":46,"tag":331,"props":332,"children":333},"table",{},[334,353],{"type":46,"tag":335,"props":336,"children":337},"thead",{},[338],{"type":46,"tag":339,"props":340,"children":341},"tr",{},[342,348],{"type":46,"tag":343,"props":344,"children":345},"th",{},[346],{"type":51,"value":347},"Product",{"type":46,"tag":343,"props":349,"children":350},{},[351],{"type":51,"value":352},"Reference",{"type":46,"tag":354,"props":355,"children":356},"tbody",{},[357,375,392,409,426,443,460,477,494,511,528],{"type":46,"tag":339,"props":358,"children":359},{},[360,366],{"type":46,"tag":361,"props":362,"children":363},"td",{},[364],{"type":51,"value":365},"Workers",{"type":46,"tag":361,"props":367,"children":368},{},[369],{"type":46,"tag":77,"props":370,"children":372},{"className":371},[],[373],{"type":51,"value":374},"references\u002Fworkers\u002F",{"type":46,"tag":339,"props":376,"children":377},{},[378,383],{"type":46,"tag":361,"props":379,"children":380},{},[381],{"type":51,"value":382},"Pages",{"type":46,"tag":361,"props":384,"children":385},{},[386],{"type":46,"tag":77,"props":387,"children":389},{"className":388},[],[390],{"type":51,"value":391},"references\u002Fpages\u002F",{"type":46,"tag":339,"props":393,"children":394},{},[395,400],{"type":46,"tag":361,"props":396,"children":397},{},[398],{"type":51,"value":399},"Pages Functions",{"type":46,"tag":361,"props":401,"children":402},{},[403],{"type":46,"tag":77,"props":404,"children":406},{"className":405},[],[407],{"type":51,"value":408},"references\u002Fpages-functions\u002F",{"type":46,"tag":339,"props":410,"children":411},{},[412,417],{"type":46,"tag":361,"props":413,"children":414},{},[415],{"type":51,"value":416},"Durable Objects",{"type":46,"tag":361,"props":418,"children":419},{},[420],{"type":46,"tag":77,"props":421,"children":423},{"className":422},[],[424],{"type":51,"value":425},"references\u002Fdurable-objects\u002F",{"type":46,"tag":339,"props":427,"children":428},{},[429,434],{"type":46,"tag":361,"props":430,"children":431},{},[432],{"type":51,"value":433},"Workflows",{"type":46,"tag":361,"props":435,"children":436},{},[437],{"type":46,"tag":77,"props":438,"children":440},{"className":439},[],[441],{"type":51,"value":442},"references\u002Fworkflows\u002F",{"type":46,"tag":339,"props":444,"children":445},{},[446,451],{"type":46,"tag":361,"props":447,"children":448},{},[449],{"type":51,"value":450},"Containers",{"type":46,"tag":361,"props":452,"children":453},{},[454],{"type":46,"tag":77,"props":455,"children":457},{"className":456},[],[458],{"type":51,"value":459},"references\u002Fcontainers\u002F",{"type":46,"tag":339,"props":461,"children":462},{},[463,468],{"type":46,"tag":361,"props":464,"children":465},{},[466],{"type":51,"value":467},"Workers for Platforms",{"type":46,"tag":361,"props":469,"children":470},{},[471],{"type":46,"tag":77,"props":472,"children":474},{"className":473},[],[475],{"type":51,"value":476},"references\u002Fworkers-for-platforms\u002F",{"type":46,"tag":339,"props":478,"children":479},{},[480,485],{"type":46,"tag":361,"props":481,"children":482},{},[483],{"type":51,"value":484},"Cron Triggers",{"type":46,"tag":361,"props":486,"children":487},{},[488],{"type":46,"tag":77,"props":489,"children":491},{"className":490},[],[492],{"type":51,"value":493},"references\u002Fcron-triggers\u002F",{"type":46,"tag":339,"props":495,"children":496},{},[497,502],{"type":46,"tag":361,"props":498,"children":499},{},[500],{"type":51,"value":501},"Tail Workers",{"type":46,"tag":361,"props":503,"children":504},{},[505],{"type":46,"tag":77,"props":506,"children":508},{"className":507},[],[509],{"type":51,"value":510},"references\u002Ftail-workers\u002F",{"type":46,"tag":339,"props":512,"children":513},{},[514,519],{"type":46,"tag":361,"props":515,"children":516},{},[517],{"type":51,"value":518},"Snippets",{"type":46,"tag":361,"props":520,"children":521},{},[522],{"type":46,"tag":77,"props":523,"children":525},{"className":524},[],[526],{"type":51,"value":527},"references\u002Fsnippets\u002F",{"type":46,"tag":339,"props":529,"children":530},{},[531,536],{"type":46,"tag":361,"props":532,"children":533},{},[534],{"type":51,"value":535},"Smart Placement",{"type":46,"tag":361,"props":537,"children":538},{},[539],{"type":46,"tag":77,"props":540,"children":542},{"className":541},[],[543],{"type":51,"value":544},"references\u002Fsmart-placement\u002F",{"type":46,"tag":212,"props":546,"children":548},{"id":547},"storage-data",[549],{"type":51,"value":550},"Storage & Data",{"type":46,"tag":331,"props":552,"children":553},{},[554,568],{"type":46,"tag":335,"props":555,"children":556},{},[557],{"type":46,"tag":339,"props":558,"children":559},{},[560,564],{"type":46,"tag":343,"props":561,"children":562},{},[563],{"type":51,"value":347},{"type":46,"tag":343,"props":565,"children":566},{},[567],{"type":51,"value":352},{"type":46,"tag":354,"props":569,"children":570},{},[571,588,605,622,639,656,673,690,707,724],{"type":46,"tag":339,"props":572,"children":573},{},[574,579],{"type":46,"tag":361,"props":575,"children":576},{},[577],{"type":51,"value":578},"KV",{"type":46,"tag":361,"props":580,"children":581},{},[582],{"type":46,"tag":77,"props":583,"children":585},{"className":584},[],[586],{"type":51,"value":587},"references\u002Fkv\u002F",{"type":46,"tag":339,"props":589,"children":590},{},[591,596],{"type":46,"tag":361,"props":592,"children":593},{},[594],{"type":51,"value":595},"D1",{"type":46,"tag":361,"props":597,"children":598},{},[599],{"type":46,"tag":77,"props":600,"children":602},{"className":601},[],[603],{"type":51,"value":604},"references\u002Fd1\u002F",{"type":46,"tag":339,"props":606,"children":607},{},[608,613],{"type":46,"tag":361,"props":609,"children":610},{},[611],{"type":51,"value":612},"R2",{"type":46,"tag":361,"props":614,"children":615},{},[616],{"type":46,"tag":77,"props":617,"children":619},{"className":618},[],[620],{"type":51,"value":621},"references\u002Fr2\u002F",{"type":46,"tag":339,"props":623,"children":624},{},[625,630],{"type":46,"tag":361,"props":626,"children":627},{},[628],{"type":51,"value":629},"Queues",{"type":46,"tag":361,"props":631,"children":632},{},[633],{"type":46,"tag":77,"props":634,"children":636},{"className":635},[],[637],{"type":51,"value":638},"references\u002Fqueues\u002F",{"type":46,"tag":339,"props":640,"children":641},{},[642,647],{"type":46,"tag":361,"props":643,"children":644},{},[645],{"type":51,"value":646},"Hyperdrive",{"type":46,"tag":361,"props":648,"children":649},{},[650],{"type":46,"tag":77,"props":651,"children":653},{"className":652},[],[654],{"type":51,"value":655},"references\u002Fhyperdrive\u002F",{"type":46,"tag":339,"props":657,"children":658},{},[659,664],{"type":46,"tag":361,"props":660,"children":661},{},[662],{"type":51,"value":663},"DO Storage",{"type":46,"tag":361,"props":665,"children":666},{},[667],{"type":46,"tag":77,"props":668,"children":670},{"className":669},[],[671],{"type":51,"value":672},"references\u002Fdo-storage\u002F",{"type":46,"tag":339,"props":674,"children":675},{},[676,681],{"type":46,"tag":361,"props":677,"children":678},{},[679],{"type":51,"value":680},"Secrets Store",{"type":46,"tag":361,"props":682,"children":683},{},[684],{"type":46,"tag":77,"props":685,"children":687},{"className":686},[],[688],{"type":51,"value":689},"references\u002Fsecrets-store\u002F",{"type":46,"tag":339,"props":691,"children":692},{},[693,698],{"type":46,"tag":361,"props":694,"children":695},{},[696],{"type":51,"value":697},"Pipelines",{"type":46,"tag":361,"props":699,"children":700},{},[701],{"type":46,"tag":77,"props":702,"children":704},{"className":703},[],[705],{"type":51,"value":706},"references\u002Fpipelines\u002F",{"type":46,"tag":339,"props":708,"children":709},{},[710,715],{"type":46,"tag":361,"props":711,"children":712},{},[713],{"type":51,"value":714},"R2 Data Catalog",{"type":46,"tag":361,"props":716,"children":717},{},[718],{"type":46,"tag":77,"props":719,"children":721},{"className":720},[],[722],{"type":51,"value":723},"references\u002Fr2-data-catalog\u002F",{"type":46,"tag":339,"props":725,"children":726},{},[727,732],{"type":46,"tag":361,"props":728,"children":729},{},[730],{"type":51,"value":731},"R2 SQL",{"type":46,"tag":361,"props":733,"children":734},{},[735],{"type":46,"tag":77,"props":736,"children":738},{"className":737},[],[739],{"type":51,"value":740},"references\u002Fr2-sql\u002F",{"type":46,"tag":212,"props":742,"children":744},{"id":743},"ai-machine-learning",[745],{"type":51,"value":746},"AI & Machine Learning",{"type":46,"tag":331,"props":748,"children":749},{},[750,764],{"type":46,"tag":335,"props":751,"children":752},{},[753],{"type":46,"tag":339,"props":754,"children":755},{},[756,760],{"type":46,"tag":343,"props":757,"children":758},{},[759],{"type":51,"value":347},{"type":46,"tag":343,"props":761,"children":762},{},[763],{"type":51,"value":352},{"type":46,"tag":354,"props":765,"children":766},{},[767,784,801,818,835],{"type":46,"tag":339,"props":768,"children":769},{},[770,775],{"type":46,"tag":361,"props":771,"children":772},{},[773],{"type":51,"value":774},"Workers AI",{"type":46,"tag":361,"props":776,"children":777},{},[778],{"type":46,"tag":77,"props":779,"children":781},{"className":780},[],[782],{"type":51,"value":783},"references\u002Fworkers-ai\u002F",{"type":46,"tag":339,"props":785,"children":786},{},[787,792],{"type":46,"tag":361,"props":788,"children":789},{},[790],{"type":51,"value":791},"Vectorize",{"type":46,"tag":361,"props":793,"children":794},{},[795],{"type":46,"tag":77,"props":796,"children":798},{"className":797},[],[799],{"type":51,"value":800},"references\u002Fvectorize\u002F",{"type":46,"tag":339,"props":802,"children":803},{},[804,809],{"type":46,"tag":361,"props":805,"children":806},{},[807],{"type":51,"value":808},"Agents SDK",{"type":46,"tag":361,"props":810,"children":811},{},[812],{"type":46,"tag":77,"props":813,"children":815},{"className":814},[],[816],{"type":51,"value":817},"references\u002Fagents-sdk\u002F",{"type":46,"tag":339,"props":819,"children":820},{},[821,826],{"type":46,"tag":361,"props":822,"children":823},{},[824],{"type":51,"value":825},"AI Gateway",{"type":46,"tag":361,"props":827,"children":828},{},[829],{"type":46,"tag":77,"props":830,"children":832},{"className":831},[],[833],{"type":51,"value":834},"references\u002Fai-gateway\u002F",{"type":46,"tag":339,"props":836,"children":837},{},[838,843],{"type":46,"tag":361,"props":839,"children":840},{},[841],{"type":51,"value":842},"AI Search",{"type":46,"tag":361,"props":844,"children":845},{},[846],{"type":46,"tag":77,"props":847,"children":849},{"className":848},[],[850],{"type":51,"value":851},"references\u002Fai-search\u002F",{"type":46,"tag":212,"props":853,"children":855},{"id":854},"networking-connectivity",[856],{"type":51,"value":857},"Networking & Connectivity",{"type":46,"tag":331,"props":859,"children":860},{},[861,875],{"type":46,"tag":335,"props":862,"children":863},{},[864],{"type":46,"tag":339,"props":865,"children":866},{},[867,871],{"type":46,"tag":343,"props":868,"children":869},{},[870],{"type":51,"value":347},{"type":46,"tag":343,"props":872,"children":873},{},[874],{"type":51,"value":352},{"type":46,"tag":354,"props":876,"children":877},{},[878,895,912,929,946,963],{"type":46,"tag":339,"props":879,"children":880},{},[881,886],{"type":46,"tag":361,"props":882,"children":883},{},[884],{"type":51,"value":885},"Tunnel",{"type":46,"tag":361,"props":887,"children":888},{},[889],{"type":46,"tag":77,"props":890,"children":892},{"className":891},[],[893],{"type":51,"value":894},"references\u002Ftunnel\u002F",{"type":46,"tag":339,"props":896,"children":897},{},[898,903],{"type":46,"tag":361,"props":899,"children":900},{},[901],{"type":51,"value":902},"Spectrum",{"type":46,"tag":361,"props":904,"children":905},{},[906],{"type":46,"tag":77,"props":907,"children":909},{"className":908},[],[910],{"type":51,"value":911},"references\u002Fspectrum\u002F",{"type":46,"tag":339,"props":913,"children":914},{},[915,920],{"type":46,"tag":361,"props":916,"children":917},{},[918],{"type":51,"value":919},"TURN",{"type":46,"tag":361,"props":921,"children":922},{},[923],{"type":46,"tag":77,"props":924,"children":926},{"className":925},[],[927],{"type":51,"value":928},"references\u002Fturn\u002F",{"type":46,"tag":339,"props":930,"children":931},{},[932,937],{"type":46,"tag":361,"props":933,"children":934},{},[935],{"type":51,"value":936},"Network Interconnect",{"type":46,"tag":361,"props":938,"children":939},{},[940],{"type":46,"tag":77,"props":941,"children":943},{"className":942},[],[944],{"type":51,"value":945},"references\u002Fnetwork-interconnect\u002F",{"type":46,"tag":339,"props":947,"children":948},{},[949,954],{"type":46,"tag":361,"props":950,"children":951},{},[952],{"type":51,"value":953},"Argo Smart Routing",{"type":46,"tag":361,"props":955,"children":956},{},[957],{"type":46,"tag":77,"props":958,"children":960},{"className":959},[],[961],{"type":51,"value":962},"references\u002Fargo-smart-routing\u002F",{"type":46,"tag":339,"props":964,"children":965},{},[966,971],{"type":46,"tag":361,"props":967,"children":968},{},[969],{"type":51,"value":970},"Workers VPC",{"type":46,"tag":361,"props":972,"children":973},{},[974],{"type":46,"tag":77,"props":975,"children":977},{"className":976},[],[978],{"type":51,"value":979},"references\u002Fworkers-vpc\u002F",{"type":46,"tag":212,"props":981,"children":983},{"id":982},"security",[984],{"type":51,"value":985},"Security",{"type":46,"tag":331,"props":987,"children":988},{},[989,1003],{"type":46,"tag":335,"props":990,"children":991},{},[992],{"type":46,"tag":339,"props":993,"children":994},{},[995,999],{"type":46,"tag":343,"props":996,"children":997},{},[998],{"type":51,"value":347},{"type":46,"tag":343,"props":1000,"children":1001},{},[1002],{"type":51,"value":352},{"type":46,"tag":354,"props":1004,"children":1005},{},[1006,1023,1040,1057,1074],{"type":46,"tag":339,"props":1007,"children":1008},{},[1009,1014],{"type":46,"tag":361,"props":1010,"children":1011},{},[1012],{"type":51,"value":1013},"WAF",{"type":46,"tag":361,"props":1015,"children":1016},{},[1017],{"type":46,"tag":77,"props":1018,"children":1020},{"className":1019},[],[1021],{"type":51,"value":1022},"references\u002Fwaf\u002F",{"type":46,"tag":339,"props":1024,"children":1025},{},[1026,1031],{"type":46,"tag":361,"props":1027,"children":1028},{},[1029],{"type":51,"value":1030},"DDoS Protection",{"type":46,"tag":361,"props":1032,"children":1033},{},[1034],{"type":46,"tag":77,"props":1035,"children":1037},{"className":1036},[],[1038],{"type":51,"value":1039},"references\u002Fddos\u002F",{"type":46,"tag":339,"props":1041,"children":1042},{},[1043,1048],{"type":46,"tag":361,"props":1044,"children":1045},{},[1046],{"type":51,"value":1047},"Bot Management",{"type":46,"tag":361,"props":1049,"children":1050},{},[1051],{"type":46,"tag":77,"props":1052,"children":1054},{"className":1053},[],[1055],{"type":51,"value":1056},"references\u002Fbot-management\u002F",{"type":46,"tag":339,"props":1058,"children":1059},{},[1060,1065],{"type":46,"tag":361,"props":1061,"children":1062},{},[1063],{"type":51,"value":1064},"API Shield",{"type":46,"tag":361,"props":1066,"children":1067},{},[1068],{"type":46,"tag":77,"props":1069,"children":1071},{"className":1070},[],[1072],{"type":51,"value":1073},"references\u002Fapi-shield\u002F",{"type":46,"tag":339,"props":1075,"children":1076},{},[1077,1082],{"type":46,"tag":361,"props":1078,"children":1079},{},[1080],{"type":51,"value":1081},"Turnstile",{"type":46,"tag":361,"props":1083,"children":1084},{},[1085],{"type":46,"tag":77,"props":1086,"children":1088},{"className":1087},[],[1089],{"type":51,"value":1090},"references\u002Fturnstile\u002F",{"type":46,"tag":212,"props":1092,"children":1094},{"id":1093},"media-content",[1095],{"type":51,"value":1096},"Media & Content",{"type":46,"tag":331,"props":1098,"children":1099},{},[1100,1114],{"type":46,"tag":335,"props":1101,"children":1102},{},[1103],{"type":46,"tag":339,"props":1104,"children":1105},{},[1106,1110],{"type":46,"tag":343,"props":1107,"children":1108},{},[1109],{"type":51,"value":347},{"type":46,"tag":343,"props":1111,"children":1112},{},[1113],{"type":51,"value":352},{"type":46,"tag":354,"props":1115,"children":1116},{},[1117,1134,1151,1168],{"type":46,"tag":339,"props":1118,"children":1119},{},[1120,1125],{"type":46,"tag":361,"props":1121,"children":1122},{},[1123],{"type":51,"value":1124},"Images",{"type":46,"tag":361,"props":1126,"children":1127},{},[1128],{"type":46,"tag":77,"props":1129,"children":1131},{"className":1130},[],[1132],{"type":51,"value":1133},"references\u002Fimages\u002F",{"type":46,"tag":339,"props":1135,"children":1136},{},[1137,1142],{"type":46,"tag":361,"props":1138,"children":1139},{},[1140],{"type":51,"value":1141},"Stream",{"type":46,"tag":361,"props":1143,"children":1144},{},[1145],{"type":46,"tag":77,"props":1146,"children":1148},{"className":1147},[],[1149],{"type":51,"value":1150},"references\u002Fstream\u002F",{"type":46,"tag":339,"props":1152,"children":1153},{},[1154,1159],{"type":46,"tag":361,"props":1155,"children":1156},{},[1157],{"type":51,"value":1158},"Browser Rendering",{"type":46,"tag":361,"props":1160,"children":1161},{},[1162],{"type":46,"tag":77,"props":1163,"children":1165},{"className":1164},[],[1166],{"type":51,"value":1167},"references\u002Fbrowser-rendering\u002F",{"type":46,"tag":339,"props":1169,"children":1170},{},[1171,1176],{"type":46,"tag":361,"props":1172,"children":1173},{},[1174],{"type":51,"value":1175},"Zaraz",{"type":46,"tag":361,"props":1177,"children":1178},{},[1179],{"type":46,"tag":77,"props":1180,"children":1182},{"className":1181},[],[1183],{"type":51,"value":1184},"references\u002Fzaraz\u002F",{"type":46,"tag":212,"props":1186,"children":1188},{"id":1187},"real-time-communication",[1189],{"type":51,"value":1190},"Real-Time Communication",{"type":46,"tag":331,"props":1192,"children":1193},{},[1194,1208],{"type":46,"tag":335,"props":1195,"children":1196},{},[1197],{"type":46,"tag":339,"props":1198,"children":1199},{},[1200,1204],{"type":46,"tag":343,"props":1201,"children":1202},{},[1203],{"type":51,"value":347},{"type":46,"tag":343,"props":1205,"children":1206},{},[1207],{"type":51,"value":352},{"type":46,"tag":354,"props":1209,"children":1210},{},[1211,1228],{"type":46,"tag":339,"props":1212,"children":1213},{},[1214,1219],{"type":46,"tag":361,"props":1215,"children":1216},{},[1217],{"type":51,"value":1218},"RealtimeKit",{"type":46,"tag":361,"props":1220,"children":1221},{},[1222],{"type":46,"tag":77,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":51,"value":1227},"references\u002Frealtimekit\u002F",{"type":46,"tag":339,"props":1229,"children":1230},{},[1231,1236],{"type":46,"tag":361,"props":1232,"children":1233},{},[1234],{"type":51,"value":1235},"Realtime SFU",{"type":46,"tag":361,"props":1237,"children":1238},{},[1239],{"type":46,"tag":77,"props":1240,"children":1242},{"className":1241},[],[1243],{"type":51,"value":1244},"references\u002Frealtime-sfu\u002F",{"type":46,"tag":212,"props":1246,"children":1248},{"id":1247},"developer-tools",[1249],{"type":51,"value":1250},"Developer Tools",{"type":46,"tag":331,"props":1252,"children":1253},{},[1254,1268],{"type":46,"tag":335,"props":1255,"children":1256},{},[1257],{"type":46,"tag":339,"props":1258,"children":1259},{},[1260,1264],{"type":46,"tag":343,"props":1261,"children":1262},{},[1263],{"type":51,"value":347},{"type":46,"tag":343,"props":1265,"children":1266},{},[1267],{"type":51,"value":352},{"type":46,"tag":354,"props":1269,"children":1270},{},[1271,1288,1305,1322,1339,1356,1373,1390,1407],{"type":46,"tag":339,"props":1272,"children":1273},{},[1274,1279],{"type":46,"tag":361,"props":1275,"children":1276},{},[1277],{"type":51,"value":1278},"Wrangler",{"type":46,"tag":361,"props":1280,"children":1281},{},[1282],{"type":46,"tag":77,"props":1283,"children":1285},{"className":1284},[],[1286],{"type":51,"value":1287},"references\u002Fwrangler\u002F",{"type":46,"tag":339,"props":1289,"children":1290},{},[1291,1296],{"type":46,"tag":361,"props":1292,"children":1293},{},[1294],{"type":51,"value":1295},"Miniflare",{"type":46,"tag":361,"props":1297,"children":1298},{},[1299],{"type":46,"tag":77,"props":1300,"children":1302},{"className":1301},[],[1303],{"type":51,"value":1304},"references\u002Fminiflare\u002F",{"type":46,"tag":339,"props":1306,"children":1307},{},[1308,1313],{"type":46,"tag":361,"props":1309,"children":1310},{},[1311],{"type":51,"value":1312},"C3",{"type":46,"tag":361,"props":1314,"children":1315},{},[1316],{"type":46,"tag":77,"props":1317,"children":1319},{"className":1318},[],[1320],{"type":51,"value":1321},"references\u002Fc3\u002F",{"type":46,"tag":339,"props":1323,"children":1324},{},[1325,1330],{"type":46,"tag":361,"props":1326,"children":1327},{},[1328],{"type":51,"value":1329},"Observability",{"type":46,"tag":361,"props":1331,"children":1332},{},[1333],{"type":46,"tag":77,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":51,"value":1338},"references\u002Fobservability\u002F",{"type":46,"tag":339,"props":1340,"children":1341},{},[1342,1347],{"type":46,"tag":361,"props":1343,"children":1344},{},[1345],{"type":51,"value":1346},"Analytics Engine",{"type":46,"tag":361,"props":1348,"children":1349},{},[1350],{"type":46,"tag":77,"props":1351,"children":1353},{"className":1352},[],[1354],{"type":51,"value":1355},"references\u002Fanalytics-engine\u002F",{"type":46,"tag":339,"props":1357,"children":1358},{},[1359,1364],{"type":46,"tag":361,"props":1360,"children":1361},{},[1362],{"type":51,"value":1363},"Web Analytics",{"type":46,"tag":361,"props":1365,"children":1366},{},[1367],{"type":46,"tag":77,"props":1368,"children":1370},{"className":1369},[],[1371],{"type":51,"value":1372},"references\u002Fweb-analytics\u002F",{"type":46,"tag":339,"props":1374,"children":1375},{},[1376,1381],{"type":46,"tag":361,"props":1377,"children":1378},{},[1379],{"type":51,"value":1380},"Sandbox",{"type":46,"tag":361,"props":1382,"children":1383},{},[1384],{"type":46,"tag":77,"props":1385,"children":1387},{"className":1386},[],[1388],{"type":51,"value":1389},"references\u002Fsandbox\u002F",{"type":46,"tag":339,"props":1391,"children":1392},{},[1393,1398],{"type":46,"tag":361,"props":1394,"children":1395},{},[1396],{"type":51,"value":1397},"Workerd",{"type":46,"tag":361,"props":1399,"children":1400},{},[1401],{"type":46,"tag":77,"props":1402,"children":1404},{"className":1403},[],[1405],{"type":51,"value":1406},"references\u002Fworkerd\u002F",{"type":46,"tag":339,"props":1408,"children":1409},{},[1410,1415],{"type":46,"tag":361,"props":1411,"children":1412},{},[1413],{"type":51,"value":1414},"Workers Playground",{"type":46,"tag":361,"props":1416,"children":1417},{},[1418],{"type":46,"tag":77,"props":1419,"children":1421},{"className":1420},[],[1422],{"type":51,"value":1423},"references\u002Fworkers-playground\u002F",{"type":46,"tag":212,"props":1425,"children":1427},{"id":1426},"infrastructure-as-code",[1428],{"type":51,"value":1429},"Infrastructure as Code",{"type":46,"tag":331,"props":1431,"children":1432},{},[1433,1447],{"type":46,"tag":335,"props":1434,"children":1435},{},[1436],{"type":46,"tag":339,"props":1437,"children":1438},{},[1439,1443],{"type":46,"tag":343,"props":1440,"children":1441},{},[1442],{"type":51,"value":347},{"type":46,"tag":343,"props":1444,"children":1445},{},[1446],{"type":51,"value":352},{"type":46,"tag":354,"props":1448,"children":1449},{},[1450,1467,1484],{"type":46,"tag":339,"props":1451,"children":1452},{},[1453,1458],{"type":46,"tag":361,"props":1454,"children":1455},{},[1456],{"type":51,"value":1457},"Pulumi",{"type":46,"tag":361,"props":1459,"children":1460},{},[1461],{"type":46,"tag":77,"props":1462,"children":1464},{"className":1463},[],[1465],{"type":51,"value":1466},"references\u002Fpulumi\u002F",{"type":46,"tag":339,"props":1468,"children":1469},{},[1470,1475],{"type":46,"tag":361,"props":1471,"children":1472},{},[1473],{"type":51,"value":1474},"Terraform",{"type":46,"tag":361,"props":1476,"children":1477},{},[1478],{"type":46,"tag":77,"props":1479,"children":1481},{"className":1480},[],[1482],{"type":51,"value":1483},"references\u002Fterraform\u002F",{"type":46,"tag":339,"props":1485,"children":1486},{},[1487,1492],{"type":46,"tag":361,"props":1488,"children":1489},{},[1490],{"type":51,"value":1491},"API",{"type":46,"tag":361,"props":1493,"children":1494},{},[1495],{"type":46,"tag":77,"props":1496,"children":1498},{"className":1497},[],[1499],{"type":51,"value":1500},"references\u002Fapi\u002F",{"type":46,"tag":212,"props":1502,"children":1504},{"id":1503},"other-services",[1505],{"type":51,"value":1506},"Other Services",{"type":46,"tag":331,"props":1508,"children":1509},{},[1510,1524],{"type":46,"tag":335,"props":1511,"children":1512},{},[1513],{"type":46,"tag":339,"props":1514,"children":1515},{},[1516,1520],{"type":46,"tag":343,"props":1517,"children":1518},{},[1519],{"type":51,"value":347},{"type":46,"tag":343,"props":1521,"children":1522},{},[1523],{"type":51,"value":352},{"type":46,"tag":354,"props":1525,"children":1526},{},[1527,1544,1561,1578,1595],{"type":46,"tag":339,"props":1528,"children":1529},{},[1530,1535],{"type":46,"tag":361,"props":1531,"children":1532},{},[1533],{"type":51,"value":1534},"Email Routing",{"type":46,"tag":361,"props":1536,"children":1537},{},[1538],{"type":46,"tag":77,"props":1539,"children":1541},{"className":1540},[],[1542],{"type":51,"value":1543},"references\u002Femail-routing\u002F",{"type":46,"tag":339,"props":1545,"children":1546},{},[1547,1552],{"type":46,"tag":361,"props":1548,"children":1549},{},[1550],{"type":51,"value":1551},"Email Workers",{"type":46,"tag":361,"props":1553,"children":1554},{},[1555],{"type":46,"tag":77,"props":1556,"children":1558},{"className":1557},[],[1559],{"type":51,"value":1560},"references\u002Femail-workers\u002F",{"type":46,"tag":339,"props":1562,"children":1563},{},[1564,1569],{"type":46,"tag":361,"props":1565,"children":1566},{},[1567],{"type":51,"value":1568},"Static Assets",{"type":46,"tag":361,"props":1570,"children":1571},{},[1572],{"type":46,"tag":77,"props":1573,"children":1575},{"className":1574},[],[1576],{"type":51,"value":1577},"references\u002Fstatic-assets\u002F",{"type":46,"tag":339,"props":1579,"children":1580},{},[1581,1586],{"type":46,"tag":361,"props":1582,"children":1583},{},[1584],{"type":51,"value":1585},"Bindings",{"type":46,"tag":361,"props":1587,"children":1588},{},[1589],{"type":46,"tag":77,"props":1590,"children":1592},{"className":1591},[],[1593],{"type":51,"value":1594},"references\u002Fbindings\u002F",{"type":46,"tag":339,"props":1596,"children":1597},{},[1598,1603],{"type":46,"tag":361,"props":1599,"children":1600},{},[1601],{"type":51,"value":1602},"Cache Reserve",{"type":46,"tag":361,"props":1604,"children":1605},{},[1606],{"type":46,"tag":77,"props":1607,"children":1609},{"className":1608},[],[1610],{"type":51,"value":1611},"references\u002Fcache-reserve\u002F",{"type":46,"tag":60,"props":1613,"children":1615},{"id":1614},"troubleshooting",[1616],{"type":51,"value":1617},"Troubleshooting",{"type":46,"tag":212,"props":1619,"children":1621},{"id":1620},"escalated-network-access",[1622],{"type":51,"value":1623},"Escalated Network Access",{"type":46,"tag":54,"props":1625,"children":1626},{},[1627,1629,1634],{"type":51,"value":1628},"If deployment fails due to network issues (timeouts, DNS errors, connection resets), rerun the deploy with escalated permissions (use ",{"type":46,"tag":77,"props":1630,"children":1632},{"className":1631},[],[1633],{"type":51,"value":82},{"type":51,"value":1635},"). The deploy requires escalated network access when sandbox networking blocks outbound requests.",{"type":46,"tag":54,"props":1637,"children":1638},{},[1639],{"type":51,"value":1640},"Example guidance to the user:",{"type":46,"tag":126,"props":1642,"children":1645},{"className":1643,"code":1644,"language":51},[221],"The deploy needs escalated network access to deploy to Cloudflare. I can rerun the command with escalated permissions—want me to proceed?\n",[1646],{"type":46,"tag":77,"props":1647,"children":1648},{"__ignoreMap":131},[1649],{"type":51,"value":1644},{"type":46,"tag":1651,"props":1652,"children":1653},"style",{},[1654],{"type":51,"value":1655},"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":1657,"total":1767},[1658,1677,1694,1710,1724,1744,1751],{"slug":1659,"name":1659,"fn":1660,"description":1661,"org":1662,"tags":1663,"stars":25,"repoUrl":26,"updatedAt":1676},"algorithmic-art","create generative art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1664,1667,1670,1673],{"name":1665,"slug":1666,"type":15},"Creative","creative",{"name":1668,"slug":1669,"type":15},"Generative Art","generative-art",{"name":1671,"slug":1672,"type":15},"Graphics","graphics",{"name":1674,"slug":1675,"type":15},"JavaScript","javascript","2026-07-13T06:41:35.540127",{"slug":1678,"name":1678,"fn":1679,"description":1680,"org":1681,"tags":1682,"stars":25,"repoUrl":26,"updatedAt":1693},"antfu","configure JavaScript projects with Anthony Fu's tools","Anthony Fu's opinionated tooling and conventions for JavaScript\u002FTypeScript projects. Use when setting up new projects, configuring ESLint\u002FPrettier alternatives, monorepos, library publishing, or when the user mentions Anthony Fu's preferences.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1683,1686,1689,1690],{"name":1684,"slug":1685,"type":15},"Best Practices","best-practices",{"name":1687,"slug":1688,"type":15},"Engineering","engineering",{"name":1674,"slug":1675,"type":15},{"name":1691,"slug":1692,"type":15},"TypeScript","typescript","2026-07-13T06:43:13.153309",{"slug":1695,"name":1695,"fn":1696,"description":1697,"org":1698,"tags":1699,"stars":25,"repoUrl":26,"updatedAt":1709},"brand-guidelines","apply Anthropic brand guidelines","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1700,1703,1706],{"name":1701,"slug":1702,"type":15},"Branding","branding",{"name":1704,"slug":1705,"type":15},"Design","design",{"name":1707,"slug":1708,"type":15},"Typography","typography","2026-07-13T06:43:06.077629",{"slug":1711,"name":1711,"fn":1712,"description":1713,"org":1714,"tags":1715,"stars":25,"repoUrl":26,"updatedAt":1723},"canvas-design","create visual art and design assets","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1716,1717,1718,1720],{"name":1665,"slug":1666,"type":15},{"name":1704,"slug":1705,"type":15},{"name":1124,"slug":1719,"type":15},"images",{"name":1721,"slug":1722,"type":15},"PDF","pdf","2026-07-13T06:39:58.803113",{"slug":1725,"name":1725,"fn":1726,"description":1727,"org":1728,"tags":1729,"stars":25,"repoUrl":26,"updatedAt":1743},"ci-cd-containerization-advisor","design CI\u002FCD pipelines for Kotlin applications","Design reproducible build, image, and deployment pipelines for Kotlin plus Spring applications, including CI verification, layered containers, rollout safety, and deployment-time migration coordination. Use when creating or improving Dockerfiles, CI workflows, image hardening, Kubernetes manifests, release gates, or deployment strategies for Spring Boot services, especially where build reproducibility and operational safety matter.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1730,1733,1735,1736,1737,1740],{"name":1731,"slug":1732,"type":15},"CI\u002FCD","ci-cd",{"name":450,"slug":1734,"type":15},"containers",{"name":23,"slug":24,"type":15},{"name":1687,"slug":1688,"type":15},{"name":1738,"slug":1739,"type":15},"Kotlin","kotlin",{"name":1741,"slug":1742,"type":15},"Spring","spring","2026-07-13T06:41:47.83899",{"slug":4,"name":4,"fn":5,"description":6,"org":1745,"tags":1746,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1747,1748,1749,1750],{"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":1752,"name":1752,"fn":1753,"description":1754,"org":1755,"tags":1756,"stars":25,"repoUrl":26,"updatedAt":1766},"compose-ui-control","interact with Compose Desktop applications","Control a running Compose Desktop application via HTTP. Use when you need to interact with UI elements, click buttons, enter text, wait for elements to appear, or capture screenshots in a Compose Desktop app that has compose-ui-test-server enabled.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1757,1760,1763],{"name":1758,"slug":1759,"type":15},"Automation","automation",{"name":1761,"slug":1762,"type":15},"Desktop","desktop",{"name":1764,"slug":1765,"type":15},"UI Components","ui-components","2026-07-13T06:40:38.798626",128,{"items":1769,"total":1894},[1770,1786,1795,1804,1815,1825,1834,1843,1852,1862,1871,1884],{"slug":1771,"name":1771,"fn":1772,"description":1773,"org":1774,"tags":1775,"stars":1783,"repoUrl":1784,"updatedAt":1785},"mps-aspect-accessories","configure JetBrains MPS module dependencies","Wire MPS module and model dependencies, used languages, used devkits, extended languages, runtime solutions, accessory models, and language\u002Fdependency versions. Use when adding\u002Fremoving module dependencies, importing languages or devkits into a model, declaring runtime solutions, or shipping accessory content visible to consumers without explicit import.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1776,1779,1782],{"name":1777,"slug":1778,"type":15},"Architecture","architecture",{"name":1780,"slug":1781,"type":15},"Configuration","configuration",{"name":1687,"slug":1688,"type":15},1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":1787,"name":1787,"fn":1788,"description":1789,"org":1790,"tags":1791,"stars":1783,"repoUrl":1784,"updatedAt":1794},"mps-aspect-actions","define and edit MPS node factories","Use when defining or editing MPS node factories (the \"actions\" aspect) — `NodeFactories` roots, per-concept `NodeFactory` setup functions that initialize a freshly created node and optionally copy data from a replaced `sampleNode`, plus the actions aspect's `CopyPasteHandlers` and `PasteWrappers` roots. Reach for this skill when a substitution, side transform, completion replacement, or `add new initialized(...)` should preserve fields from the node it is replacing, or when defaults set in a constructor are not enough.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1792,1793],{"name":1777,"slug":1778,"type":15},{"name":1687,"slug":1688,"type":15},"2026-07-17T06:04:48.066901",{"slug":1796,"name":1796,"fn":1797,"description":1798,"org":1799,"tags":1800,"stars":1783,"repoUrl":1784,"updatedAt":1803},"mps-aspect-behavior","define and edit MPS concept behavior","Use when defining or editing MPS `ConceptBehavior` — per-concept methods (non-virtual \u002F virtual \u002F abstract \u002F static \u002F virtual static), constructors, virtual dispatch (MRO), super and interface-default calls (`super\u003CInterface>.method`), overriding methods from `lang.core.behavior` interfaces such as `ScopeProvider.getScope` \u002F `INamedConcept.getName` \u002F `BaseConcept.getPresentation`, calling sibling methods (`LocalBehaviorMethodCall`) and behavior methods from other aspects via `node.method(...)`. Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fbehavior.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1801,1802],{"name":1777,"slug":1778,"type":15},{"name":1687,"slug":1688,"type":15},"2026-07-13T06:45:21.757084",{"slug":1805,"name":1805,"fn":1806,"description":1807,"org":1808,"tags":1809,"stars":1783,"repoUrl":1784,"updatedAt":1814},"mps-aspect-constraints","define JetBrains MPS language constraints","Use when defining or editing MPS language constraints — property validators \u002F setters \u002F getters, referent search scopes (imperative or inherited via `ScopeProvider.getScope`), `referentSetHandler` side effects, default-scope blocks, `canBeChild` \u002F `canBeParent` \u002F `canBeAncestor` \u002F `canBeRoot` placement rules, `defaultConcreteConcept` for abstract concepts, `set \u003Cread-only>` and `{name}` aliasing, and scope helpers (`SimpleRoleScope`, `ListScope`, `CompositeScope`, `HidingByNameScope`). Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fconstraints.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1810,1811],{"name":1777,"slug":1778,"type":15},{"name":1812,"slug":1813,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":1816,"name":1816,"fn":1817,"description":1818,"org":1819,"tags":1820,"stars":1783,"repoUrl":1784,"updatedAt":1824},"mps-aspect-dataflow","define and debug MPS dataflow builders","Use when defining or debugging MPS dataflow builders for a concept — control\u002Fdata flow declarations that drive reachability analysis and variable-use checking. Covers DataFlowBuilderDeclaration, BuilderBlock, emit instructions (code for, jump, ifjump, label, read, write, ret, mayBeUnreachable), positions (AfterPosition, BeforePosition, LabelPosition), the jetbrains.mps.lang.dataFlow language, the NodeParameter implicit, BL+smodel usage inside builder bodies, and IBuilderMode for advanced analyses such as nullable\u002Fnon-null tracking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1821],{"name":1822,"slug":1823,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":1826,"name":1826,"fn":1827,"description":1828,"org":1829,"tags":1830,"stars":1783,"repoUrl":1784,"updatedAt":1833},"mps-aspect-editor","define MPS editor layouts","Use when creating or changing MPS editor definitions — the overall workflow from scaffolding a `ConceptEditorDeclaration` through componentizing reusable `EditorComponentDeclaration`s, refining cell models and cell layouts, applying style sheets and indent-layout style items, wiring smart references, leveraging inheritance via super-concepts and interfaces, inspecting (`print_node_json`, `show_node_representation`) and validating (`check_root_node_problems`). Covers `jetbrains.mps.lang.editor` cell models (`CellModel_RefNode`\u002F`CellModel_RefNodeList`\u002F`CellModel_RefCell`\u002F`CellModel_Property`\u002F`CellModel_Constant`), layout choices, and JSON blueprints for common editor shapes. For the non-layout side (action maps, keymaps, transformation\u002Fsubstitute menus) use `mps-aspect-editor-menus-and-keymaps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1831,1832],{"name":1704,"slug":1705,"type":15},{"name":1764,"slug":1765,"type":15},"2026-07-23T05:41:56.638151",{"slug":1835,"name":1835,"fn":1836,"description":1837,"org":1838,"tags":1839,"stars":1783,"repoUrl":1784,"updatedAt":1842},"mps-aspect-editor-menus-and-keymaps","author MPS editor menus and keymaps","Use when authoring the **non-layout** parts of the MPS editor aspect — what happens when the user types, presses a key, triggers completion, pastes, or invokes a context action. Covers action maps (`CellActionMapDeclaration`), cell keymaps (`CellKeyMapDeclaration`), transformation menus (`TransformationMenu_Default` \u002F `_Named` \u002F `_Contribution`), substitute menus (`SubstituteMenu_Default` \u002F `SubstituteMenu` \u002F contributions), side transforms (LEFT\u002FRIGHT), legacy cell menus, paste wrappers and copy-paste handlers (in the actions language), completion styling, reference presentation, two-step deletion, and the editor selection API. Trigger terms: `actionMap`, `keyMap`, `delete_action_id`, `transformationMenu`, `substituteMenu`, `Ctrl+Space`, `Ctrl+Alt+B`, side transform, paste wrapper, completion styling, `PasteWrappers`, `CopyPasteHandlers`. For the **layout** side (cells, layouts, style sheets) use `mps-aspect-editor` instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1840,1841],{"name":1687,"slug":1688,"type":15},{"name":1764,"slug":1765,"type":15},"2026-07-23T05:41:49.666535",{"slug":1844,"name":1844,"fn":1845,"description":1846,"org":1847,"tags":1848,"stars":1783,"repoUrl":1784,"updatedAt":1851},"mps-aspect-generation-plan","modify MPS generation plans","Use when defining or modifying an MPS generation plan — explicit ordering of generators, checkpoints for cross-model reference resolution, forks for parallel branches, IncludePlan composition, conditional PlanContribution activation, ParameterEquals\u002FConceptListSelector fork selectors, and InitModelAttributes for targetFacet routing. Apply when working with @genplan models, the jetbrains.mps.lang.generator.plan language, attaching plans via DevKits or the Custom generation facet, or debugging cross-model mapping label resolution.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1849,1850],{"name":1777,"slug":1778,"type":15},{"name":1687,"slug":1688,"type":15},"2026-07-13T06:44:59.507855",{"slug":1853,"name":1853,"fn":1854,"description":1855,"org":1856,"tags":1857,"stars":1783,"repoUrl":1784,"updatedAt":1861},"mps-aspect-generator","define JetBrains MPS generator rules","Use when defining or modifying MPS generators — author a generator module, add or edit root\u002Freduction\u002Fweaving\u002Fpattern mapping rules, attach template macros ($COPY_SRC, $LOOP, $IF, $PROPERTY, $REF, $SWITCH, $MAP_SRC, $WEAVE, $INSERT, $LABEL, $TRACE, $VAR), wire mapping labels, build template switches, write pre\u002Fpost mapping scripts, navigate `genContext`, or debug \"rule didn't fire\", missing references, empty output, infinite reduction loops, and generated-Java compile failures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1858,1859,1860],{"name":1777,"slug":1778,"type":15},{"name":1812,"slug":1813,"type":15},{"name":1687,"slug":1688,"type":15},"2026-07-17T06:06:58.042999",{"slug":1863,"name":1863,"fn":1864,"description":1865,"org":1866,"tags":1867,"stars":1783,"repoUrl":1784,"updatedAt":1870},"mps-aspect-intentions","define and edit MPS intentions","Use when defining or editing MPS intentions (the Alt+Enter context-action aspect) — adding `IntentionDeclaration` roots, parameterized or surround-with variants, description\u002FisApplicable\u002Fexecute blocks, child-filter functions, factory-initialized AST splicing, or debugging why an intention is not offered. Lives in the language's `intentions` model and uses `jetbrains.mps.lang.intentions`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1868,1869],{"name":1777,"slug":1778,"type":15},{"name":1687,"slug":1688,"type":15},"2026-07-23T05:41:48.692899",{"slug":1872,"name":1872,"fn":1873,"description":1874,"org":1875,"tags":1876,"stars":1783,"repoUrl":1784,"updatedAt":1883},"mps-aspect-migrations","author and debug MPS migration scripts","Use when authoring or debugging MPS migration scripts that upgrade user models after a language definition changes — covers jetbrains.mps.lang.migration (MigrationScript class-based, PureMigrationScript declarative, MoveConcept\u002FMoveContainmentLink\u002FMoveReferenceLink\u002FMoveProperty, ordering via OrderDependency, data exchange via putData\u002FgetData, RefactoringLog, ConceptMigrationReference) and jetbrains.mps.lang.script Enhancement Scripts (MigrationScript with MigrationScriptPart_Instance, ExtractInterfaceMigration, FactoryMigrationScriptPart, CommentMigrationScriptPart) — when a model needs version-gated upgrade, concept rename or removal, link or property rename, instance-level transformation, or composition of migration steps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1877,1880],{"name":1878,"slug":1879,"type":15},"Debugging","debugging",{"name":1881,"slug":1882,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":1885,"name":1885,"fn":1886,"description":1887,"org":1888,"tags":1889,"stars":1783,"repoUrl":1784,"updatedAt":1893},"mps-aspect-structure-concepts","define concepts in MPS structure aspect","Define concepts, interface concepts, enumerations, and constrained data types in an MPS language's `structure` aspect. Covers smart-reference detection, alias rules, cardinality, INamedConcept usage, bulk creation, and the full `mps_mcp_alter_structure` \u002F `mps_mcp_query_structure` reference. Use when authoring or modifying a language's structure model.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1890],{"name":1891,"slug":1892,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188]