cloudflare

cloudflare is a cursor rule for coding agents from sanjeed5/awesome-cursor-rules-mdc. It costs 2,346 tokens per session, scanned A, original, CC0-1.0.

A set of rules for building applications on Cloudflare's developer platform, including Workers and Pages, which run code and websites at Cloudflare's global network edge. It covers project setup, small bundles, workspaces, and secret handling.

In plain words
What is it for?
Use it when starting or reviewing Cloudflare Workers or Pages projects, configuring Wrangler, organizing a monorepo (one repository containing multiple related apps), and managing environment variables.
Why use it?
It helps keep edge applications fast, secure, and easier to operate. It also prevents sensitive values from being placed directly in source code and gives multi-application projects a shared structure.

Cursor rule

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/sanjeed5/awesome-cursor-rules-mdc/cloudflare
Clone the repo
git clone --depth 1 https://github.com/sanjeed5/awesome-cursor-rules-mdc

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cloudflare

README.md
[![agentmods](https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/cloudflare.svg)](https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/cloudflare)
Your own site
<a href="https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/cloudflare"><img src="https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/cloudflare.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,346 This file is loaded in full into every session.
When invoked 2,346 The same file — it is already loaded in full.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.02346 $0.02346
Opus 5 $0.01173 $0.01173
Sonnet 5 $0.00469 $0.00469
Haiku 4.5 $0.00235 $0.00235

Measured 4d ago against content hash d82fc64f4e4c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

cloudflare scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

async fetch(request, env, ctx) {
rules-mdc/cloudflare.mdc · 236 lines

How it starts

The opening of the file, as written. The whole thing — 236 lines — stays where its author put it; the contents beside it link to each section on GitHub.

cloudflare Best Practices

Cloudflare's developer platform thrives on speed, security, and global distribution. Our focus is on building tiny, observable, and secure bundles that leverage the edge. This guide outlines the definitive best practices for our team.

1. Code Organization and Structure

Prioritize Workers & Pages for all new applications. Use the official wrangler CLI for project scaffolding and deployment.

  • Project Initialization:
    • ✅ GOOD: Always start with wrangler generate.
      npx wrangler generate my-worker --type=module --ts
      # For full-stack apps with Pages:
      npx create-cloudflare@latest my-fullstack-app --framework next
      
  • Monorepos: For projects with multiple Workers or Pages apps, use pnpm or yarn workspaces.
    • ✅ GOOD: Centralize dependencies and build scripts.
      // package.json
      {
        "workspaces": ["apps/*", "packages/*"]
      }
      
  • Environment Variables: Manage secrets securely via wrangler.toml or the Cloudflare dashboard. Use .dev.vars for local development.
    • ❌ BAD: Storing sensitive data directly in code or .env files that aren't .dev.vars.
    • ✅ GOOD: Define variables in wrangler.toml and reference them in your Worker.
      # wrangler.toml
      name = "my-worker"
      main = "src/index.ts"
      compatibility_date = "2025-12-01"
      
      [vars]
      MY_API_KEY = "your-api-key-value" # For non-sensitive defaults or local testing
      
      [secrets] # For sensitive production secrets
      # MY_DB_URL = "set via `wrangler secret put MY_DB_URL`"
      
    • ✅ GOOD: Use .dev.vars for local secrets, and integrate with CLI tools.
      # .dev.vars
      DATABASE_URL="postgresql://user:pass@localhost:5432/mydb"
      # Use with Prisma:
      dotenv -e .dev.vars -- npx prisma migrate dev
      

2. Common Patterns and Anti-patterns

Read the full file on GitHub · 236 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 236 lines · 0 tokens per session scan A d82fc64f4e4c

Subscribe to this mod's changes

cloudflare is a cursor rule published in the GitHub repository sanjeed5/awesome-cursor-rules-mdc (3,571 stars, last pushed 3mo ago), licensed CC0-1.0. It adds 2,346 tokens to every session, about $0.0117 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other cursor rules, from other repositories

executing-red-team-engagement-planning

Red team engagement planning is the foundational phase that defines scope, objectives, rules of engagement (ROE), threat model selection, and operational timelines before any offensive testing begins.

galyarderlabs/galyarder-framework · 34 tokens

solana-integration-constraints

Constraints and requirements for Solana integration with MetaMask Connect — wallet adapter config, CAIP-2 IDs, network support per platform, RPC routing, and platform limitations.

MetaMask/metamask-connect-cursor-plugin · 1,207 tokens

visual-and-observational-rules

Defines the visual aspects of the game and how the player observes the world. This includes map color-coding, screen effects, and the overall simulation style.

paulpham157/paul-s-cursor-rules · 0 tokens

018_DSPy_InputField_OutputField

DSPy 3.0.1 Field Definitions - Master InputField and OutputField for precise signature control.

AIFlowML/cursor_rules · 21 tokens

python-cryptographic-failures

Detect and prevent cryptographic failures in Python applications as defined in OWASP Top 10:2021-A02.

ivangrynenko/cursorrules · 2,054 tokens

solana_core_architecture

┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐ │ Entry Point │ │ Instruction │ │ Account │ │ lib.rs │───▶│ Processing │───▶│ Validation │ │ │ │ │ │ │ │ - entrypoint! │ │ - Route dispatch │ │ - Owner checks │ │ - processinst │ │ - Deserialize │ │ - Data validate │.

AIFlowML/cursor_rules · 4 tokens