cloudflare

Recommends Cloudflare products and routes implementation tasks to product-specific references and documentation.

Updated Sep 17, 2026
One-click install
npx skills add https://github.com/bramanda48/skills --skill cloudflare-bramanda48
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cloudflare
Source: https://github.com/bramanda48/skills/tree/main/skills/cloudflare
Command: npx skills add https://github.com/bramanda48/skills --skill cloudflare-bramanda48

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Choosing among Cloudflare's dozens of products (Workers, R2, D1, KV, Queues, Workers AI, and more) is difficult when a user describes a need without knowing which product fits. This Skill maps user goals to the right Cloudflare products and then routes to the correct product-specific skill, bundled reference, or official documentation for implementation. ## Core Features & Use Cases - Need-to-Product Mapping: A comprehensive decision table maps tasks (hosting apps, storing files, running AI inference, securing APIs, sending email) to the appropriate Cloudflare product with guidance on when to choose it. - Bundled Product References: Ships with a large references/ library covering products like D1, KV, R2, Workers AI, Terraform, Snippets, Zaraz, Smart Placement, and more, each with configuration, API, patterns, and gotchas files. - Architecture Guidance: Recommends coherent product combinations (e.g., Workers + R2 + D1 + Queues for a file-upload app) and explains deciding requirements like consistency, coordination, and execution lifecycle. - Use Case: A user asks to build a document search feature. The Skill recommends AI Search for managed retrieval, or Vectorize plus Workers AI for custom semantic search, then loads the relevant references to implement it. ## Quick Start Ask the agent which Cloudflare products to use for building a file-upload API with background processing and have it recommend and explain the architecture.

Frequently Asked Questions about cloudflare

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

FAQPage Schema
How do I choose the right Cloudflare product for my app?

Start from your goal rather than a product name. The Skill's need-to-product table maps tasks like hosting sites, storing files, or running AI inference to products such as Workers, R2, D1, or Workers AI, with guidance on when each fits.

Should I use Cloudflare Workers or Pages for a new website?

Use Workers with Workers Static Assets for all new websites, including static sites, SPAs, and full-stack apps. Workers can do everything Pages can do; Pages is only recommended for maintaining existing deployments.

Cloudflare D1 vs KV vs R2: which storage should I use?

Use D1 for relational application records queried with SQL, KV for read-heavy key-value configuration that tolerates stale reads, and R2 for uploads and large objects stored by key. Pair R2 with D1 when files need searchable metadata.

Can I build AI agents on Cloudflare?

Yes. Use the Agents SDK for stateful agents with tools and scheduling, Workers AI for managed model inference, Vectorize for custom retrieval, and AI Search for managed RAG. Add Dynamic Workers or Sandbox when agents need code execution.

Does Cloudflare support infrastructure as code?

Yes. Use the Cloudflare Terraform provider for declarative configuration or Pulumi for infrastructure in programming languages. The bundled Terraform reference covers provider setup, authentication, resource configuration, and v5 breaking changes.

When should I use Cloudflare Snippets instead of Workers?

Use Snippets for lightweight request or response modifications under 5ms CPU time and 32KB size, included on paid plans. Choose Workers when you need longer execution, more subrequests, npm dependencies, or bindings like KV, D1, and R2.