Borrowing it
Nothing to install: this file belongs to AbhiiGatty/cld-flare-maxxing. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/AbhiiGatty/cld-flare-maxxing/main/AGENTS.mdgit clone --depth 1 https://github.com/AbhiiGatty/cld-flare-maxxingWrote 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/abhiigatty/cld-flare-maxxing/agents-md)<a href="https://agentmods.dev/instructions/abhiigatty/cld-flare-maxxing/agents-md"><img src="https://agentmods.dev/badge/instructions/abhiigatty/cld-flare-maxxing/agents-md.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.1 | $0.03101 | $0.03101 |
| Opus 5 | $0.01550 | $0.01550 |
| Sonnet 5 | $0.00620 | $0.00620 |
| Haiku 4.5 | $0.00310 | $0.00310 |
Grade A, and why
cld-flare-maxxing AGENTS.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 8d 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.
ad-hoc `curl`/`Invoke-RestMethod`/`wrangler delete`, or with `mcp__cloudflare__execute` if How it starts
The opening of the file, as written. The whole thing — 199 lines — stays where its author put it; the contents beside it link to each section on GitHub.
cld-flare-maxxing — operating contract
This repo is a versioned, guardrailed control center for a Cloudflare account. Any AI coding harness working here follows the rules below. They override default behavior.
This file is the harness-neutral core. If you're Claude Code, also read CLAUDE.md for
Claude-specific skills, agents, permissions, and hooks layered on top of these same rules.
What this is
- Snapshot the full account, DNS, zone, and security state into
snapshots/— a local, full-fidelity raw copy for your own tooling, plus a pseudonymizedsnapshot.public.jsonsibling that's the one actually committed (scripts/lib/idmap.mjs). - Generate insight and security reports (
reports/) from a 61-check heuristic catalog. - Attribute changes ("who did what") via the Cloudflare audit log.
- Surface plan-limit utilization and beta features worth testing for this stack.
- Present all of it in a single dashboard (
dashboard/). - Take guarded, audited destructive actions only via break-glass.
Golden rules
- Read-only by default. Routine work uses
CF_READ_TOKENonly. Snapshots, reports, diffs, and the dashboard never mutate the account. - Secrets never get committed.
.envand.env.break-glassare gitignored. Token values are never written into snapshots (only metadata). Never paste a token into any committed file, report, or chat artifact. The same goes for real account data: the rawsnapshots/*/snapshot.json,config/backlog.json,config/token-capabilities.json,config/backlog-curated.json, and the alias vaultsecrets/alias-map.jsonare all gitignored — only the pseudonymizedsnapshot.public.jsonis committed. - All mutations go through
scripts/actions/*with break-glass. Never make changes with ad-hoccurl/Invoke-RestMethod/wrangler delete, or withmcp__cloudflare__executeif you have it connected (Cloudflare's own "Code Mode" MCP server - it runs agent-written code against the live API with no fixed tool list, so treat every call through it like a raw API request: reads only, never a write). The enforcement lives in plain Node.js (scripts/lib/guard.mjs), so it holds regardless of which agent or harness is driving: every action script refuses to mutate unlessCF_EDIT_TOKENis set andCF_ALLOW_DESTRUCTIVE=YES_I_AM_SUREis armed. Claude Code additionally has a tripwire hook (.claude/hooks/guard.mjs) on both Bash andmcp__cloudflare__executethat blocks ad-hoc destructive commands/calls before they run; other harnesses don't get that extra layer yet, so hold yourself to rule 3 directly. - Confirm before any mutation. State exactly what will change, on which zone or resource,
and why. Action scripts default to
--dry-run; only add--commitafter the human agrees. - Destructive actions require explicit break-glass (
docs/SAFETY.md): a separateCF_EDIT_TOKENplusCF_ALLOW_DESTRUCTIVE=YES_I_AM_SURE. Every attempt is written toreports/actions-audit.log(local-only, see rule 6). - Never delete saved state.
snapshots/(both the local rawsnapshot.jsonand the committedsnapshot.public.json),reference/,secrets/alias-map.json(the alias vault — losing it makes every already-committed alias unreversible even with the salt), and the realconfig/*.jsonare the point of the repo.reports/is generated output (derived from the local snapshot + reference), local-only and gitignored; regenerate it anytime withnpm run report. - GitHub changes via PR, never direct pushes to
main(feature branch, PR, merge).
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.
- 8d ago First seen · 199 lines · 3,101 tokens per session scan A 7986f18988c7
cld-flare-maxxing AGENTS.md is an instructions file published in the GitHub repository AbhiiGatty/cld-flare-maxxing (2 stars, last pushed yesterday), licensed MIT. It adds 3,101 tokens to every session, about $0.0155 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
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.