Copilot-Skills cloudflare.instructions.md

Copilot-Skills cloudflare.instructions.md is an instructions file for GitHub Copilot from TheSethRose/Copilot-Skills. It costs 1,119 tokens per session, scanned A, original, MIT.

A set of coding instructions for Cloudflare projects, including Workers, which run JavaScript or TypeScript code on Cloudflare’s network.

In plain words
What is it for?
Use it when creating, running, configuring, testing, or deploying Cloudflare Workers and related projects.
Why use it?
It provides a consistent approach to local development, configuration, asynchronous code, errors, and deployment with Wrangler, Cloudflare’s command-line tool.

Instructions file for GitHub Copilot

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 instructions/thesethrose/copilot-skills/cloudflare
Clone the repo
git clone --depth 1 https://github.com/TheSethRose/Copilot-Skills

Made for: GitHub Copilot.

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 Copilot-Skills cloudflare.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/thesethrose/copilot-skills/cloudflare.svg)](https://agentmods.dev/instructions/thesethrose/copilot-skills/cloudflare)
Your own site
<a href="https://agentmods.dev/instructions/thesethrose/copilot-skills/cloudflare"><img src="https://agentmods.dev/badge/instructions/thesethrose/copilot-skills/cloudflare.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,119 This file is loaded in full into every session.
When invoked 1,119 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.01119 $0.01119
Opus 5 $0.00560 $0.00560
Sonnet 5 $0.00224 $0.00224
Haiku 4.5 $0.00112 $0.00112

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

Security

Grade A, and why

Copilot-Skills cloudflare.instructions.md 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) {
.github/instructions/cloudflare.instructions.md · 238 lines

How it starts

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

Cloudflare Instructions

Auto-loaded when: **/*.js, **/*.ts, **/*.tsx, **/*.jsx, **/*.toml, **/wrangler.toml

Default Behaviors

When working with Cloudflare code:

  1. Use Wrangler CLI - The official tool for development
  2. TypeScript Recommended - Type-safe development
  3. Environment Variables - Use wrangler.toml for config
  4. Error Handling - Always catch and handle errors
  5. Async/Await - Workers are async by default

Common Workflows

Local Development

# Install Wrangler
npm install -D wrangler

# Create new project
npm create cloudflare@latest

# Local development server
npm run dev

# Deploy
wrangler deploy

Worker Development

export default {
  async fetch(request, env, ctx) {
    try {
      // Your code here
      return new Response('Success');
    } catch (error) {
      return new Response(`Error: ${error.message}`, { 
        status: 500 
      });
    }
  }
};

Environment Configuration (wrangler.toml)

name = "my-worker"
type = "javascript"
account_id = "xxx"
workers_dev = true
route = "example.com/*"
zone_id = "xxx"

[env.production]
route = "example.com/*"

[build]
command = "npm run build"
cwd = "./src"

Using D1 Database

export default {
  async fetch(request, env) {
    const db = env.DB;
    
    // Query
    const { results } = await db
      .prepare('SELECT * FROM users WHERE id = ?')
      .bind(1)
      .all();
    
    // Insert
    await db
      .prepare('INSERT INTO users (name) VALUES (?)')
      .bind('John')
      .run();
    
    return Response.json(results);
  }
};

Using R2 Storage

export default {
  async fetch(request, env) {
    const bucket = env.MY_BUCKET;
    
    // Upload
    await bucket.put('path/file.txt', 'content');
    
    // Download
    const file = await bucket.get('path/file.txt');
    
    // Delete
    await bucket.delete('path/file.txt');
    
    // List
    const files = await bucket.list();
    
    return new Response('Done');
  }
};

Read the full file on GitHub · 238 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 · 238 lines · 1,119 tokens per session scan A 8e217b22dcb7

Subscribe to this mod's changes

Copilot-Skills cloudflare.instructions.md is an instructions file published in the GitHub repository TheSethRose/Copilot-Skills (3 stars, last pushed 8mo ago), licensed MIT. It adds 1,119 tokens to every session, about $0.0056 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-31.