cloudflare

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

1|Updated Jul 18, 2025
One-click install
npx skills add https://github.com/AdelysAlberto/md-configs-and-agents --skill cloudflare-adelysalberto
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: cloudflare
Source: https://github.com/AdelysAlberto/md-configs-and-agents/tree/main/agents-copilot/skills/cloudflare
Command: npx skills add https://github.com/AdelysAlberto/md-configs-and-agents --skill cloudflare-adelysalberto

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Cloudflare's platform spans dozens of products, and pre-trained knowledge of its APIs, limits, and pricing is often outdated. This Skill routes any Cloudflare development task to the right product reference and prioritizes retrieval from live Cloudflare docs over stale baked-in knowledge. ## Core Features & Use Cases - Decision Trees for Product Selection: ASCII decision trees route tasks like running code, storing data, AI inference, networking, security, media, and analytics to the correct product reference. - Progressive Reference Library: Over 50 product references (Workers, Pages, D1, R2, KV, Durable Objects, Workers AI, Vectorize, Agents SDK, WAF, Terraform, and more), each with configuration, API, patterns, and gotchas files. - Retrieval-First Guidance: Explicit instructions to verify limits, pricing, and type signatures against Cloudflare docs, Wrangler config schema, and workers-types before citing specifics. - Use Case: When asked to build a RAG chatbot, the Skill routes you to Workers AI for inference, Vectorize for embeddings storage, and AI Gateway for caching, then loads each product's detailed reference files. ## Quick Start Ask the agent to help you build or configure any Cloudflare product, such as setting up a Worker with a D1 database, and it will load the relevant references.

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 and Pages?▼

Use Workers for serverless functions at the edge and Pages for full-stack web apps with Git-based deploys. The Skill's decision tree routes code-execution tasks to the appropriate product reference based on your requirements.

What Cloudflare storage should I use for my data?▼

Use KV for key-value config and caching, D1 for relational SQL, R2 for S3-compatible object storage, Queues for async messaging, Vectorize for embeddings, and Durable Objects for strongly-consistent per-entity state. The storage decision tree maps each need to a product.

Does this Skill cover Cloudflare Workers AI and RAG patterns?▼

Yes, it includes references for Workers AI inference, Vectorize for vector search, Agents SDK for stateful agents, AI Gateway for caching and routing, and AI Search. It also guides RAG architecture combining these products.

Can I manage Cloudflare infrastructure with Terraform or Pulumi?▼

Yes, dedicated references cover the Cloudflare Terraform provider (including v5 breaking changes and cf-terraforming imports) and Pulumi. The Skill recommends provider-first management and remote state for team environments.

Why does the Skill prefer fetching Cloudflare docs over built-in knowledge?▼

Cloudflare limits, pricing, API signatures, and configuration options change frequently, so pre-trained knowledge may be outdated. The Skill instructs retrieval from developers.cloudflare.com, Wrangler's config schema, and workers-types before citing specifics.

When should I use Durable Objects instead of KV or D1?▼

Use Durable Objects when you need strongly-consistent, coordinated state such as rate limiting, locks, real-time collaboration, or WebSocket sessions. KV is eventually consistent for high-read workloads, and D1 fits relational data without coordination needs.