cloudflare

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

Updated May 5, 2026
One-click install
npx skills add https://github.com/Rocktown-Labs/reluxury --skill cloudflare-rocktown-labs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cloudflare
Source: https://github.com/Rocktown-Labs/reluxury/tree/main/.agents/skills/cloudflare
Command: npx skills add https://github.com/Rocktown-Labs/reluxury --skill cloudflare-rocktown-labs

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Choosing and correctly configuring the right Cloudflare product is difficult because the platform spans dozens of services with overlapping capabilities, evolving limits, and frequent API changes. This Skill routes any Cloudflare task to the correct product reference and prioritizes live documentation over stale pre-trained knowledge. ## Core Features & Use Cases - Product Decision Trees: Route requirements like "run code", "store data", "need AI", or "need security" to the right Cloudflare product (Workers, D1, R2, KV, Vectorize, WAF, and more). - Deep Product References: Load detailed per-product guides covering configuration, APIs, patterns, and gotchas for Workers, Durable Objects, Pages, Terraform, Wrangler, and 40+ other services. - Retrieval-First Guidance: Directs verification against live Cloudflare docs, Wrangler config schemas, and workers-types packages before citing limits, pricing, or API signatures. - Use Case: When deploying a full-stack app with a D1 database and cron-triggered Worker, use the decision trees to confirm product fit, then load the d1 and cron-triggers references for exact wrangler.jsonc configuration and handler code. ## Quick Start Ask the AI to help you build or configure any Cloudflare feature, such as setting up a Worker with a D1 database binding, and it will route to the correct product reference.

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 and APIs at the edge, and Pages for full-stack web apps with Git-based deploys. The skill's decision trees route compute tasks to the right product based on whether you need stateful coordination, cron triggers, or static hosting.

What Cloudflare storage should I use for my application?

Use KV for high-read key-value config and sessions, D1 for relational SQLite data, R2 for S3-compatible object storage, and Durable Objects for strongly-consistent per-entity state. The storage decision tree maps each data requirement to the appropriate service.

How do I configure a Cloudflare Worker with wrangler?

Define bindings, triggers, and compatibility dates in wrangler.jsonc, then deploy with wrangler deploy. The skill recommends verifying config fields against the wrangler config-schema.json in node_modules rather than relying on memorized options.

Does Cloudflare D1 support read replicas and point-in-time recovery?

D1 supports read replicas on paid plans for lower-latency reads and Time Travel for point-in-time recovery up to 30 days. Free tier databases are limited to 500 MB with 7-day Time Travel retention.

When should I use Durable Objects instead of KV?

Use Durable Objects when you need strong consistency, per-entity coordination, WebSocket hibernation, or transactional SQLite storage. KV is better for globally cached, eventually-consistent reads with low write volume.

Why might Cloudflare limits or pricing in this skill be outdated?

Cloudflare frequently updates limits, pricing, and API signatures, so the skill explicitly instructs verifying numbers against live docs at developers.cloudflare.com and product changelogs. Reference files are starting points, not the source of truth.