Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/dmmulroy/cloudflare-skill/cloudflarenpx skills add dmmulroy/cloudflare-skill --skill cloudflaregit clone --depth 1 https://github.com/dmmulroy/cloudflare-skillWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00068 | $0.01710 |
| Opus 5 | $0.00034 | $0.00855 |
| Sonnet 5 | $0.00014 | $0.00342 |
| Haiku 4.5 | $0.00007 | $0.00171 |
Grade A, and why
cloudflare scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
This is a copy
91% identical to cloudflare — 154 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 214 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Cloudflare Platform Skill
Consolidated skill for building on the Cloudflare platform. Use decision trees below to find the right product, then load detailed references.
Authentication (Required Before Deploy)
Verify auth before wrangler deploy, wrangler pages deploy, or npm run deploy:
npx wrangler whoami # Shows account if authenticated
Not authenticated? → references/wrangler/auth.md
- Interactive/local:
wrangler login(one-time OAuth) - CI/CD: Set
CLOUDFLARE_API_TOKENenv var
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/
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/agents-sdk/api.md 5.7 KB
- references/agents-sdk/configuration.md 3.5 KB
- references/agents-sdk/gotchas.md 5.0 KB
- references/agents-sdk/patterns.md 5.5 KB
- references/agents-sdk/README.md 2.7 KB
- references/ai-gateway/configuration.md 2.9 KB
- references/ai-gateway/dynamic-routing.md 1.8 KB
- references/ai-gateway/features.md 2.7 KB
- references/ai-gateway/README.md 6.2 KB
- references/ai-gateway/sdk-integration.md 2.6 KB
- references/ai-gateway/troubleshooting.md 2.4 KB
- references/ai-search/api.md 2.5 KB
- references/ai-search/configuration.md 1.7 KB
- references/ai-search/gotchas.md 2.1 KB
- references/ai-search/patterns.md 2.0 KB
- references/ai-search/README.md 4.4 KB
- references/analytics-engine/api.md 3.1 KB
- references/analytics-engine/configuration.md 2.3 KB
- references/analytics-engine/gotchas.md 2.0 KB
- references/analytics-engine/patterns.md 2.3 KB
- references/analytics-engine/README.md 3.1 KB
- references/api-shield/api.md 3.8 KB
- references/api-shield/configuration.md 4.9 KB
- references/api-shield/gotchas.md 4.8 KB
- references/api-shield/patterns.md 5.7 KB
- references/api-shield/README.md 1.8 KB
- references/api/api.md 4.2 KB
- references/api/configuration.md 3.7 KB
- references/api/gotchas.md 5.3 KB
- references/api/patterns.md 4.5 KB
- references/api/README.md 2.3 KB
- references/argo-smart-routing/api.md 6.4 KB
- references/argo-smart-routing/configuration.md 4.4 KB
- references/argo-smart-routing/gotchas.md 4.2 KB
- references/argo-smart-routing/patterns.md 3.0 KB
- references/argo-smart-routing/README.md 4.0 KB
- references/bindings/api.md 5.1 KB
- references/bindings/configuration.md 4.4 KB
- references/bindings/gotchas.md 6.0 KB
- references/bindings/patterns.md 4.9 KB
- references/bindings/README.md 3.9 KB
- references/bot-management/api.md 5.7 KB
- references/bot-management/configuration.md 5.6 KB
- references/bot-management/gotchas.md 5.5 KB
- references/bot-management/patterns.md 4.9 KB
- references/bot-management/README.md 3.7 KB
- references/browser-rendering/api.md 2.9 KB
- references/browser-rendering/configuration.md 1.8 KB
- references/browser-rendering/gotchas.md 2.5 KB
- references/browser-rendering/patterns.md 2.6 KB
- references/browser-rendering/README.md 3.0 KB
- references/c3/api.md 2.2 KB
- references/c3/configuration.md 1.6 KB
- references/c3/gotchas.md 2.3 KB
- references/c3/patterns.md 2.2 KB
- references/c3/README.md 3.3 KB
- references/cache-reserve/api.md 5.9 KB
- references/cache-reserve/configuration.md 3.6 KB
- references/cache-reserve/gotchas.md 5.7 KB
- references/cache-reserve/patterns.md 6.1 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 214 lines · 68 tokens per session scan A 448e0591f699
cloudflare is a skill published in the GitHub repository dmmulroy/cloudflare-skill (729 stars, last pushed 7mo ago), licensed MIT. It adds 68 tokens to every session and 1,710 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 91% identical to cloudflare, differing in 154 lines, and is treated as a copy.
Other skills, from other repositories
kagent-dev
Development guide for kagent's v1alpha3 Harness and AgentTemplate CRDs, AgentInstance gRPC control plane, upstream A2A integration, Substrate runtime provisioning, tests, generation, and PR workflow. Use for any implementation, debugging, review, or CI task in the kagent repository.
timoni
Use when deploying applications to Kubernetes with Timoni. Covers installing and upgrading module instances from OCI registries, composing multi-app deployments with bundles, injecting values from clusters or CI with runtimes, targeting multiple clusters, and authoring, testing, signing and publishing modules with CUE.
azmon-mirroredcatalogs-operations-cli
Brings Azure Monitor, Application Insights, and Log Analytics telemetry into Fabric as Eventhouse external delta tables and correlates it with business data. Use to onboard observability data, judge whether latency or availability affected revenue, or build a Real-Time dashboard and Operations Agent over it.
durable-objects
Create and review Cloudflare Durable Objects. Use when building stateful coordination (chat rooms, multiplayer games, booking systems), implementing RPC methods, SQLite storage, alarms, WebSockets, or reviewing DO code for best practices. Covers Workers integration, wrangler config, and testing with Vitest. Biases…
ship-web-games
Package, deploy, and verify a playable Three.js or web game. Use for release builds, asset delivery, private/public deployment, production smoke tests, browser proof, release notes, rollback readiness, and cleanup of temporary QA resources.
hyperpod-version-checker
Check and compare software component versions on SageMaker HyperPod cluster nodes - NVIDIA drivers, CUDA toolkit, cuDNN, NCCL, EFA, AWS OFI NCCL, GDRCopy, MPI, Neuron SDK (Trainium/Inferentia), Python, and PyTorch. Use when checking component versions, verifying CUDA/driver compatibility, detecting version mismatches…