cld-flare-maxxing: Instructions file for Codex

AGENTS.md

cld-flare-maxxing AGENTS.md is an instructions file for Codex, OpenCode from AbhiiGatty/cld-flare-maxxing. It costs 3,101 tokens per session, scanned A, original, MIT.

A set of repository instructions for managing a Cloudflare account through code. Cloudflare provides services such as DNS, website security, and traffic management.

In plain words
What is it for?
Use it when inspecting Cloudflare DNS, zones, security settings, audit history, plan limits, or account changes. It also guides the dashboard and the process for carefully approved destructive actions.
Why use it?
It defines what routine work may change and what must remain read-only, reducing the risk of accidental account changes or exposed secrets. It also explains how snapshots, reports, audit records, and guarded actions are handled.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is AbhiiGatty/cld-flare-maxxing's own configuration. It tells Codex and OpenCode how to work on cld-flare-maxxing itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything cld-flare-maxxing configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/AbhiiGatty/cld-flare-maxxing/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/AbhiiGatty/cld-flare-maxxing

Made for: Codex, OpenCode.

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 cld-flare-maxxing AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/abhiigatty/cld-flare-maxxing/agents-md.svg)](https://agentmods.dev/instructions/abhiigatty/cld-flare-maxxing/agents-md)
Your own site
<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>
Per session 3,101 This file is loaded in full into every session.
When invoked 3,101 The same file — it is already loaded in full.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.03101 $0.03101
Opus 5 $0.01550 $0.01550
Sonnet 5 $0.00620 $0.00620
Haiku 4.5 $0.00310 $0.00310

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

Security

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
AGENTS.md · 199 lines

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 pseudonymized snapshot.public.json sibling 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

  1. Read-only by default. Routine work uses CF_READ_TOKEN only. Snapshots, reports, diffs, and the dashboard never mutate the account.
  2. Secrets never get committed. .env and .env.break-glass are 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 raw snapshots/*/snapshot.json, config/backlog.json, config/token-capabilities.json, config/backlog-curated.json, and the alias vault secrets/alias-map.json are all gitignored — only the pseudonymized snapshot.public.json is committed.
  3. All mutations go through scripts/actions/* with break-glass. Never make changes with ad-hoc curl/Invoke-RestMethod/wrangler delete, or with mcp__cloudflare__execute if 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 unless CF_EDIT_TOKEN is set and CF_ALLOW_DESTRUCTIVE=YES_I_AM_SURE is armed. Claude Code additionally has a tripwire hook (.claude/hooks/guard.mjs) on both Bash and mcp__cloudflare__execute that 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.
  4. Confirm before any mutation. State exactly what will change, on which zone or resource, and why. Action scripts default to --dry-run; only add --commit after the human agrees.
  5. Destructive actions require explicit break-glass (docs/SAFETY.md): a separate CF_EDIT_TOKEN plus CF_ALLOW_DESTRUCTIVE=YES_I_AM_SURE. Every attempt is written to reports/actions-audit.log (local-only, see rule 6).
  6. Never delete saved state. snapshots/ (both the local raw snapshot.json and the committed snapshot.public.json), reference/, secrets/alias-map.json (the alias vault — losing it makes every already-committed alias unreversible even with the salt), and the real config/*.json are the point of the repo. reports/ is generated output (derived from the local snapshot + reference), local-only and gitignored; regenerate it anytime with npm run report.
  7. GitHub changes via PR, never direct pushes to main (feature branch, PR, merge).

Read the full file on GitHub · 199 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. 8d ago First seen · 199 lines · 3,101 tokens per session scan A 7986f18988c7

Subscribe to this mod's changes

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.

Related

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.

vercel/next.js · 7,296 tokens

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.

openai/codex · 5,153 tokens

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).

microsoft/vscode · 6,785 tokens

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).

microsoft/vscode · 5,001 tokens

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.

langchain-ai/langchain · 4,469 tokens

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.

github/spec-kit · 7,104 tokens