cloudflare

Guides development across Cloudflare Workers, storage, AI, networking, and security products.

13|1|Updated Feb 9, 2026
One-click install
npx skills add https://github.com/vedang/dotagents --skill cloudflare-vedang
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cloudflare
Source: https://github.com/vedang/dotagents/tree/main/specific_skills/cloudflare
Command: npx skills add https://github.com/vedang/dotagents --skill cloudflare-vedang

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Cloudflare's platform spans dozens of products with overlapping capabilities, and pre-trained knowledge of its APIs, limits, and pricing quickly goes stale. This Skill routes any Cloudflare development question to the right product reference and biases toward retrieving live documentation over outdated memory. ## Core Features & Use Cases - Decision Trees: Route requirements (run code, store data, AI/ML, networking, security, media, analytics, IaC) to the correct Cloudflare product and its detailed reference files. - Progressive References: Per-product reference directories (Workers, D1, KV, R2, Durable Objects, Workers AI, Vectorize, Terraform, and more) with README, configuration, API, patterns, and gotchas files loaded on demand. - Retrieval-First Guidance: Explicit instructions to verify limits, pricing, type signatures, and config options against live Cloudflare docs, workers-types packages, and the Wrangler config schema. - Use Case: A developer asks how to add scheduled jobs and cache to a Worker; the Skill routes to cron-triggers and kv references, then confirms current limits from the official docs before writing wrangler.jsonc configuration. ## Quick Start Ask how to build, deploy, or debug anything on Cloudflare, such as setting up a Worker with a D1 database and cron trigger.

Frequently Asked Questions about cloudflare

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I choose between Cloudflare Workers, Pages, and Durable Objects?

Use Workers for serverless edge functions, Pages for full-stack web apps with Git deploys, and Durable Objects for stateful coordination or real-time workloads. The Skill's decision trees route based on whether you need compute, state, or scheduled execution.

What Cloudflare storage should I use for my application?

Use KV for high-read key-value data like config and sessions, D1 for relational SQLite queries, R2 for S3-compatible object storage, and Durable Object storage for strongly-consistent per-entity state. Queues handle async message processing.

Can I run AI inference on Cloudflare Workers?

Yes, Workers AI provides 50+ models including LLMs, embeddings, image generation, and speech-to-text via the env.AI binding. Vectorize adds vector search for RAG patterns, and AI Gateway provides caching, rate limiting, and analytics across providers.

Does this Skill have up-to-date Cloudflare API limits and pricing?

The Skill explicitly instructs retrieval from live Cloudflare docs, the workers-types npm package, and the Wrangler config schema before citing limits, pricing, or API signatures. Reference files are starting points, not the source of truth.

How do I manage Cloudflare infrastructure with Terraform?

The terraform reference covers provider v5 setup, API token authentication, resource configuration for zones, DNS, Workers, KV, R2, and D1, plus cf-terraforming for importing existing resources. It warns against mixing Terraform with wrangler.jsonc for the same resources.

When should I not use Cloudflare Smart Placement?

Avoid Smart Placement for Workers serving static content, pure edge logic without backend calls, Workers without fetch handlers, and Pages assets with run_worker_first enabled. It only helps when backend latency dominates request duration.