new-relo CLAUDE.md

new-relo CLAUDE.md is an instructions file for coding agents from reloru/new-relo. It costs 6,527 tokens per session, scanned C, original, MIT.

A set of project instructions for working on crosbynews.com, a website running on Cloudflare Workers, a service that runs web code at Cloudflare locations.

In plain words
What is it for?
It helps agents make targeted site changes, verify live routes and headers, update related documentation, and follow the project’s pull-request process.
Why use it?
It records the repository’s working rules, where its content and settings live, and how to check changes after deployment.

Instructions file

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/reloru/new-relo/claude-md
Clone the repo
git clone --depth 1 https://github.com/reloru/new-relo

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 new-relo CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/reloru/new-relo/claude-md.svg)](https://agentmods.dev/instructions/reloru/new-relo/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/reloru/new-relo/claude-md"><img src="https://agentmods.dev/badge/instructions/reloru/new-relo/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 6,527 This file is loaded in full into every session.
When invoked 6,527 The same file — it is already loaded in full.
Security scan C 2 findings. 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.06527 $0.06527
Opus 5 $0.03263 $0.03263
Sonnet 5 $0.01305 $0.01305
Haiku 4.5 $0.00653 $0.00653

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

Security

Grade C, and why

new-relo CLAUDE.md scanned grade C with 2 findings 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

local run warmed, however many days ago. `rm -rf .wrangler/state` for a

Makes network callslowCapability

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

- After deploying, verify against the live site with `curl` (deploys land in
CLAUDE.md · 385 lines

How it starts

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

crosbynews.com — Cloudflare Worker

Working with this repo

  • This is a live, complete, self-maintaining production site. Make targeted changes only — don't rebuild it.
  • After deploying, verify against the live site with curl (deploys land in ~10–40s) — check the headers/routes you touched. Sample more than once: a new Worker version reaches Cloudflare's edges over a minute or two, so a single curl can return the OLD page from a colo that has not rolled over yet (CLAUDE_NOTES.md has the full propagation gotcha + sampling script).
  • Keep this file current: when you change a route, a behavior, or an invariant that lives outside the Worker, update CLAUDE.md in the same PR.
  • Where state lives, by kind: docs/pages/<page>.md (one file per content page — handler, content, data source, canonical URL, sitemap presence, meta, CSP) and docs/endpoints/ (same, for non-page routes) — a PR that changes any of that MUST update the matching file in the same PR. docs/ops/<topic>.md is the same rule for cross-cutting operational config that isn't a page or endpoint (CI, GitHub settings, domain/DNS, MCP registry, email auth, news pipeline). All three record current expected state, not history — overwrite them, don't append. Dated write-ups go in docs/audit/ or docs/investigations/ instead, and are never edited in place. CLAUDE_NOTES.md (repo root) is a current-state catch-all for anything that doesn't fit those categories. docs/README.md explains the full split.

Agent operating notes (process, not site mechanics)

Not about the Worker's behavior — about working this repo session-to-session as a coding agent. A human reading for site behavior can skip this section. Narrower tooling trivia (exact gh install steps, curl/JSON gotchas) lives in CLAUDE_NOTES.md, not here — this keeps only the rules that apply regardless of tooling specifics.

  • TaskList/TaskCreate do NOT persist across sessions. The persistent backlog is GitHub Issues — queryable/writable via mcp__github__* (list_issues, issue_write, …). Prefer filing backlog items as Issues (labeled backlog) over encoding them into a trigger prompt or CLAUDE.md.
  • Verify a new external upstream before writing any feature code against it. A sandbox/container curl succeeding is not sufficient proof — Google News answers fine from a container but 503s the deployed Worker's IPs (why the news pipeline runs out-of-band; see docs/ops/news-pipeline.md). Pattern used for NHC/EPA/Open-Meteo: add a temporary /debug-<name>-canary route, npx wrangler deploy it for real (not wrangler dev — must be the actual edge runtime + egress IPs), curl the live URL for a real 200 + body, then git restore and redeploy clean before building on it.
  • A check that reuses the code under test cannot falsify it. A 2026-08-05 audit wrongly concluded HHD had stopped publishing pollen counts because it probed for "missing" days by GENERATING candidate URLs from the same date pattern the parser uses — inheriting the exact bug it existed to find. When checking whether a parser is missing data, extract what the upstream actually serves with a deliberately looser pattern and diff against our parse — never re-derive the expected input from our own logic.
  • AskUserQuestion can fail silently in automated/routine-driven sessions (no human available to answer synchronously). When genuinely blocked on a decision only the user can make, don't retry the tool — lay out the tradeoffs in your response text and end the turn.
  • A backgrounded command's trailing cleanup fires against a file it has never seen. Mutation-checking a test by editing a source file and restoring it in a trailing cp /tmp/x.bak src/... is safe only while the command runs to completion in the foreground. On 2026-08-25 one such check hung on a deliberately pathological ReDoS input, the harness moved it to the background, and it fired its restore minutes later over a file that had since gained two merged PRs' worth of work — reverting 163 lines of src/features/tropics.js into an unrelated commit and to production. git status was clean because the overwrite landed before git add -A, so nothing looked wrong; the diff stat was the only tell. Restore from git, not a /tmp copy (git checkout -- <file>), and read git show --stat HEAD before pushing a commit that touched several files.
  • .claude/skills/*/SKILL.md files drift independently of CLAUDE.md — nothing forces them to be touched when a feature ships (/kv's SKILL.md once went two feature-cycles describing three keys after a fourth shipped). When a change touches something a skill describes, grep the skills directory too, not just this file.

Read the full file on GitHub · 385 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 · 385 lines · 6,527 tokens per session scan C 88d189f9dd1e

Subscribe to this mod's changes

new-relo CLAUDE.md is an instructions file published in the GitHub repository reloru/new-relo (1 stars, last pushed 2d ago), licensed MIT. It adds 6,527 tokens to every session, about $0.0326 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, 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