cloudflare

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

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Choosing among Cloudflare's dozens of products (Workers, R2, D1, 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 loads the relevant references or documentation for implementation. ## Core Features & Use Cases - Need-to-Product Mapping: A comprehensive decision table matches tasks like file uploads, background jobs, AI inference, or bot protection to the correct Cloudflare products. - Bundled Product References: Includes progressive-disclosure reference guides (README, configuration, API, patterns, gotchas) for products such as D1, KV, R2 SQL, Workflows, Terraform, Snippets, and Bot Management. - Architecture Guidance: Recommends coherent product combinations, explains tradeoffs between similar products, and directs users to current docs for limits, pricing, and availability. - Use Case: A user asks how to build a document search feature. The Skill recommends Workers plus AI Search (or Vectorize with Workers AI for custom retrieval), then loads the relevant references to guide implementation. ## Quick Start Ask the agent which Cloudflare products to use for your application idea, such as an API with file uploads and scheduled background jobs.

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?

Describe your goal rather than naming a product. The Skill's need-to-product table maps tasks like uploads, background jobs, or document search to products such as R2, Queues, Workflows, or AI Search, then loads implementation references.

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

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

What Cloudflare storage product should I use for my data?

Choose based on data shape: D1 for relational SQL data, KV for read-heavy key-value configuration, R2 for large objects and uploads, Durable Objects for per-entity coordination, and Artifacts for versioned file trees.

Can Cloudflare Workers connect to my existing PostgreSQL database?

Yes, use Hyperdrive to connect Workers to existing PostgreSQL or MySQL databases with connection pooling and caching. For custom TCP protocols, use the TCP Sockets API, optionally combined with Cloudflare Tunnel for private networks.

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

Use Durable Objects when operations need shared state and coordination per room, document, or entity, such as chat rooms, games, or collaborative documents. Use D1 for relational queries and KV for eventually-consistent read-heavy data.

How do I run scheduled or multi-step background jobs on Cloudflare?

Use Cron Triggers to start recurring Worker jobs, Queues to buffer asynchronous work, and Workflows for durable multi-step jobs that must retry, wait, and resume without losing completed work.