mcpbeat Sign in

Cloudflare Skill for Codex

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.

344k tokens
context cost
the whole folder, loaded on every use
316
files
instructions only
0
copies elsewhere
how many repositories repackaged it
4915
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/openai/plugins --skill cloudflare

What comes with it

145 650 bytes besides the instruction
LICENSE.txt
agents/openai.yaml
assets/cloudflare-small.svg
assets/cloudflare.png
references/agents-sdk/README.md
references/agents-sdk/api.md
references/agents-sdk/configuration.md
references/agents-sdk/gotchas.md
references/agents-sdk/patterns.md
references/ai-gateway/README.md
references/ai-gateway/configuration.md
references/ai-gateway/dynamic-routing.md
references/ai-gateway/features.md
references/ai-gateway/sdk-integration.md
references/ai-gateway/troubleshooting.md
references/ai-search/README.md
references/ai-search/api.md
references/ai-search/configuration.md
references/ai-search/gotchas.md
references/ai-search/patterns.md
references/analytics-engine/README.md
references/analytics-engine/api.md
references/analytics-engine/configuration.md
references/analytics-engine/gotchas.md
references/analytics-engine/patterns.md
references/api-shield/README.md
references/api-shield/api.md
references/api-shield/configuration.md
references/api-shield/gotchas.md
references/api-shield/patterns.md
references/api/README.md
references/api/api.md
references/api/configuration.md
references/api/gotchas.md
references/api/patterns.md
references/argo-smart-routing/README.md
references/argo-smart-routing/api.md
references/argo-smart-routing/configuration.md
references/argo-smart-routing/gotchas.md
references/argo-smart-routing/patterns.md

The instruction itself

22 sections, as written by the author

Cloudflare Platform Skill

Consolidated skill for building on the Cloudflare platform. Use decision trees below to find the right product, then load detailed references.

Your 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.

Retrieval Sources

Fetch the latest information before citing specific numbers, API signatures, or configuration options. Do not rely on baked-in knowledge or these reference files alone.

| Source | How to retrieve | Use for |

|--------|----------------|---------|

| Cloudflare docs | Search https://developers.cloudflare.com/ directly | Limits, pricing, API reference, compatibility dates/flags |

| Workers types | npm pack @cloudflare/workers-types or check node_modules | Type signatures, binding shapes, handler types |

| Wrangler config schema | node_modules/wrangler/config-schema.json | Config fields, binding shapes, allowed values |

| Product changelogs | https://developers.cloudflare.com/changelog/ | Recent changes to limits, features, deprecations |

When a reference file and the docs disagree, trust the docs. This is especially important for: numeric limits, pricing tiers, type signatures, and configuration options.

Quick Decision Trees

"I need to run code"

Need to run code?
├─ Serverless functions at the edge → workers/
├─ Full-stack web app with Git deploys → pages/
├─ Stateful coordination/real-time → durable-objects/
├─ Long-running multi-step jobs → workflows/
├─ Run containers → containers/
├─ Multi-tenant (customers deploy code) → workers-for-platforms/
├─ Scheduled tasks (cron) → cron-triggers/
├─ Lightweight edge logic (modify HTTP) → snippets/
├─ Process Worker execution events (logs/observability) → tail-workers/
└─ Optimize latency to backend infrastructure → smart-placement/

"I need to store data"

Need storage?
├─ Key-value (config, sessions, cache) → kv/
├─ Relational SQL → d1/ (SQLite) or hyperdrive/ (existing Postgres/MySQL)
├─ Object/file storage (S3-compatible) → r2/
├─ Message queue (async processing) → queues/
├─ Vector embeddings (AI/semantic search) → vectorize/
├─ Strongly-consistent per-entity state → durable-objects/ (DO storage)
├─ Secrets management → secrets-store/
├─ Streaming ETL to R2 → pipelines/
└─ Persistent cache (long-term retention) → cache-reserve/

"I need AI/ML"

Need AI?
├─ Run inference (LLMs, embeddings, images) → workers-ai/
├─ Vector database for RAG/search → vectorize/
├─ Build stateful AI agents → agents-sdk/
├─ Gateway for any AI provider (caching, routing) → ai-gateway/
└─ AI-powered search widget → ai-search/

"I need networking/connectivity"

Need networking?
├─ Expose local service to internet → tunnel/
├─ TCP/UDP proxy (non-HTTP) → spectrum/
├─ WebRTC TURN server → turn/
├─ Private network connectivity → network-interconnect/
├─ Optimize routing → argo-smart-routing/
├─ Optimize latency to backend (not user) → smart-placement/
└─ Real-time video/audio → realtimekit/ or realtime-sfu/

"I need security"

Need security?
├─ Web Application Firewall → waf/
├─ DDoS protection → ddos/
├─ Bot detection/management → bot-management/
├─ API protection → api-shield/
├─ CAPTCHA alternative → turnstile/
└─ Credential leak detection → waf/ (managed ruleset)

"I need media/content"

Need media?
├─ Image optimization/transformation → images/
├─ Video streaming/encoding → stream/
├─ Browser automation/screenshots → browser-rendering/
└─ Third-party script management → zaraz/

"I need analytics/metrics data"

Need analytics?
├─ Query across all Cloudflare products (HTTP, Workers, DNS, etc.) → graphql-api/
├─ Custom high-cardinality metrics from Workers → analytics-engine/
├─ Client-side (RUM) performance data → web-analytics/
├─ Workers Logs and real-time debugging → observability/
└─ Raw logs (Logpush to external tools) → Cloudflare docs

"I need infrastructure-as-code"

Need IaC? → pulumi/ (Pulumi), terraform/ (Terraform), or api/ (REST API)

Product Index

Compute & Runtime

| Product | Reference |

|---------|-----------|

| Workers | references/workers/ |

| Pages | references/pages/ |

| Pages Functions | references/pages-functions/ |

| Durable Objects | references/durable-objects/ |

| Workflows | references/workflows/ |

| Containers | references/containers/ |

| Workers for Platforms | references/workers-for-platforms/ |

| Cron Triggers | references/cron-triggers/ |

| Tail Workers | references/tail-workers/ |

| Snippets | references/snippets/ |

| Smart Placement | references/smart-placement/ |

Storage & Data

| Product | Reference |

|---------|-----------|

| KV | references/kv/ |

| D1 | references/d1/ |

| R2 | references/r2/ |

| Queues | references/queues/ |

| Hyperdrive | references/hyperdrive/ |

| DO Storage | references/do-storage/ |

| Secrets Store | references/secrets-store/ |

| Pipelines | references/pipelines/ |

| R2 Data Catalog | references/r2-data-catalog/ |

| R2 SQL | references/r2-sql/ |

AI & Machine Learning

| Product | Reference |

|---------|-----------|

| Workers AI | references/workers-ai/ |

| Vectorize | references/vectorize/ |

| Agents SDK | references/agents-sdk/ |

| AI Gateway | references/ai-gateway/ |

| AI Search | references/ai-search/ |

Networking & Connectivity

| Product | Reference |

|---------|-----------|

| Tunnel | references/tunnel/ |

| Spectrum | references/spectrum/ |

| TURN | references/turn/ |

| Network Interconnect | references/network-interconnect/ |

| Argo Smart Routing | references/argo-smart-routing/ |

| Workers VPC | references/workers-vpc/ |

Security

| Product | Reference |

|---------|-----------|

| WAF | references/waf/ |

| DDoS Protection | references/ddos/ |

| Bot Management | references/bot-management/ |

| API Shield | references/api-shield/ |

| Turnstile | references/turnstile/ |

Media & Content

| Product | Reference |

|---------|-----------|

| Images | references/images/ |

| Stream | references/stream/ |

| Browser Rendering | references/browser-rendering/ |

| Zaraz | references/zaraz/ |

Real-Time Communication

| Product | Reference |

|---------|-----------|

| RealtimeKit | references/realtimekit/ |

| Realtime SFU | references/realtime-sfu/ |

Developer Tools

| Product | Reference |

|---------|-----------|

| Wrangler | references/wrangler/ |

| Miniflare | references/miniflare/ |

| C3 | references/c3/ |

| Observability | references/observability/ |

| GraphQL Analytics API | references/graphql-api/ |

| Analytics Engine | references/analytics-engine/ |

| Web Analytics | references/web-analytics/ |

| Sandbox | references/sandbox/ |

| Workerd | references/workerd/ |

| Workers Playground | references/workers-playground/ |

Infrastructure as Code

| Product | Reference |

|---------|-----------|

| Pulumi | references/pulumi/ |

| Terraform | references/terraform/ |

| API | references/api/ |

Other Services

| Product | Reference |

|---------|-----------|

| Email Routing | references/email-routing/ |

| Email Workers | references/email-workers/ |

| Static Assets | references/static-assets/ |

| Bindings | references/bindings/ |

| Cache Reserve | references/cache-reserve/ |

Other skills for the same job

different authors, same section of the catalogue
Azure Kubernetes Automatic Readiness
by microsoft
vendor ×3

Assess Kubernetes workloads and cluster configuration for AKS Automatic compatibility. Identifies incompatibilities, generates fixes, and guides migration from AKS Standard to AKS Automatic. WHEN: migrate to AKS Automatic, check AKS Automatic readiness, validate manifests for Automatic, assess cluster for Automatic compatibility, fix deployment for Automatic compatibility, identify AKS Automatic migration blockers, is my cluster ready for AKS Automatic.

13k tokens
Capacity
by microsoft
vendor ×3

Discovers available Azure OpenAI model capacity across regions and projects. Analyzes quota limits, compares availability, and recommends optimal deployment locations based on capacity requirements. USE FOR: find capacity, check quota, where can I deploy, capacity discovery, best region for capacity, multi-project capacity search, quota analysis, model availability, region comparison, check TPM availability. DO NOT USE FOR: actual deployment (hand off to preset or customize after discovery), quota increase requests (direct user to Azure Portal), listing existing deployments.

6k tokens scripts
Customize
by microsoft
vendor ×3

Interactive guided deployment flow for Azure OpenAI models with full customization control. Step-by-step selection of model version, SKU (GlobalStandard/Standard/ProvisionedManaged), capacity, RAI policy (content filter), and advanced options (dynamic quota, priority processing, spillover). USE FOR: custom deployment, customize model deployment, choose version, select SKU, set capacity, configure content filter, RAI policy, deployment options, detailed deployment, advanced deployment, PTU deployment, provisioned throughput. DO NOT USE FOR: quick deployment to optimal region (use preset).

8k tokens
Deploy Model
by microsoft
vendor ×3

Unified Azure OpenAI model deployment skill with intelligent intent-based routing. Handles quick preset deployments, fully customized deployments (version/SKU/capacity/RAI policy), and capacity discovery across regions and projects. USE FOR: deploy model, deploy gpt, create deployment, model deployment, deploy openai model, set up model, provision model, find capacity, check model availability, where can I deploy, best region for model, capacity analysis. DO NOT USE FOR: listing existing deployments (use foundry_models_deployments_list MCP tool), deleting deployments, agent creation (use agent/create), project creation (use project/create).

26k tokens scripts
Preset
by microsoft
vendor ×3

Intelligently deploys Azure OpenAI models to optimal regions by analyzing capacity across all available regions. Automatically checks current region first and shows alternatives if needed. USE FOR: quick deployment, optimal region, best region, automatic region selection, fast setup, multi-region capacity check, high availability deployment, deploy to best location. DO NOT USE FOR: custom SKU selection (use customize), specific version selection (use customize), custom capacity configuration (use customize), PTU deployments (use customize).

9k tokens
Lamindb
by christophacham
×3

This skill should be used when working with LaminDB, an open-source data framework for biology that makes data queryable, traceable, reproducible, and FAIR. Use when managing biological datasets (scRNA-seq, spatial, flow cytometry, etc.), tracking computational workflows, curating and validating data with biological ontologies, building data lakehouses, or ensuring data lineage and reproducibility in biological research. Covers data management, annotation, ontologies (genes, cell types, diseases, tissues), schema validation, integrations with workflow managers (Nextflow, Snakemake) and MLOps platforms (W&B, MLflow), and deployment strategies.

22k tokens
Latchbio Integration
by christophacham
×3

Latch platform for bioinformatics workflows. Build pipelines with Latch SDK, @workflow/@task decorators, deploy serverless workflows, LatchFile/LatchDir, Nextflow/Snakemake integration.

12k tokens
Modal
by christophacham
×3

Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.

17k tokens

How to use it

Copy the folder

Take openai/cloudflare from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.