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.
npx agentmods add instructions/thesethrose/copilot-skills/cloudflaregit clone --depth 1 https://github.com/TheSethRose/Copilot-SkillsWrote 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.
[](https://agentmods.dev/instructions/thesethrose/copilot-skills/cloudflare)<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>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.
| Model | Per session | Once 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 |
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) { 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:
- Use Wrangler CLI - The official tool for development
- TypeScript Recommended - Type-safe development
- Environment Variables - Use
wrangler.tomlfor config - Error Handling - Always catch and handle errors
- 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');
}
};
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.
- 4d ago First seen · 238 lines · 1,119 tokens per session scan A 8e217b22dcb7
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.
Other instructions, from other repositories
pt-arche-ai-context copilot-instructions.md
Copilot instructions for osinfra-io/pt-arche-ai-context: Arche team-level Copilot instructions loaded via COPILOTCUSTOMINSTRUCTIONSDIRS. Contains team.instructions.md with arche-specific context for working in the reusable OpenTofu child module repositories.
copilot copilot-instructions.md
Copilot instructions for navikt/copilot, covering copilot instructions for navikt/copilot, repository overview, nav development standards, nav principles and nav tech stack.
copilot AGENTS.md
AGENTS.md instructions for navikt/copilot, covering agents.md for navikt/copilot, what this repo is, efficiency rule, standard commands and conventions.
plan-forge landing-zone.instructions.md
Azure Landing Zone baselines — identity, network, policy, management, security, tagging, subscription organization.
plan-forge policy.instructions.md
Azure Policy and Initiative compliance — definitions, assignment, compliance state, exemptions, remediation tasks.
plan-forge waf.instructions.md
Azure Well-Architected Framework (WAF) guardrails — Reliability, Security, Cost, Operational Excellence, Performance.