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/rolandjitsu/react-fetch-streams/agents-mdgit clone --depth 1 https://github.com/rolandjitsu/react-fetch-streamsWhat 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.01176 | $0.01176 |
| Opus 5 | $0.00588 | $0.00588 |
| Sonnet 5 | $0.00235 | $0.00235 |
| Haiku 4.5 | $0.00118 | $0.00118 |
Grade A, and why
react-fetch-streams AGENTS.md scanned grade A with 0 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 3d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Guidance for AI coding agents in this repo. Human contributors: see the Contribute section of the README.
This is react-fetch-streams: React hooks for streaming a response body over the Fetch + Streams
APIs (useStream, plus useNdjsonStream for newline-delimited JSON) and for Server-Sent Events
(useEventSource, useEventStream). It is a small,
dependency-free, published npm library written in TypeScript. Keep it that way; think twice before
adding a runtime dependency.
The toolchain is the Rust-based oxc stack: oxlint to lint,
Prettier to format, tsdown (Rolldown + oxc) to
build and emit declarations, and Vitest to test; TypeScript (tsc --noEmit)
type-checks. There is no Babel, ESLint, or Rollup; do not reintroduce them.
Workflow
- Clarify the design before implementing. For anything non-trivial, agree on the approach first.
- One unit of change per commit. Never mix unrelated changes. Present the change for review before committing.
- Every change ships with tests. Run local CI before calling it done, and do not claim it passes without running it.
- Verify against the code and the tools: read before you answer, run before you assert.
Local CI (must be green before review):
npm run typecheck # tsc --noEmit
npm run lint # oxlint
npm run format:check # prettier
npm run build # tsdown
npm run test:cov # vitest
Writing: code, comments, docs, commits
- Concise and to the point. No fluff. Explain the non-obvious; do not narrate the obvious.
- ASCII only. No em-dash and no
--; write-. Use->not the arrow glyph,!=not the not-equal glyph, and so on. - Comments justify why, not what. Delete any comment that restates the code.
- Formatting is not a matter of taste: Prettier owns it. Run
npm run formatrather than hand-formatting. House style (.prettierrc.json) is single quotes, no trailing commas, no bracket spacing, and arrow parens omitted when possible.
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.
- 3d ago First seen · 96 lines · 1,176 tokens per session scan A 3b1e44f90281
react-fetch-streams AGENTS.md is an instructions file published in the GitHub repository rolandjitsu/react-fetch-streams (11 stars, last pushed 3d ago), licensed MIT. It adds 1,176 tokens to every session, about $0.0059 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
angular AGENTS.md
Instructions for angular/angular, covering environment, key documentation, testing and pull requests.
react-seed AGENTS.md
Instructions for guokaigdg/react-seed, covering agents.md, 目录, 1. 项目概览, 2. 技术栈 and 3. 目录结构.
mastra CLAUDE.md
Claude Code instructions for mastra-ai/mastra, a project described as: Mastra is the modern TypeScript framework for AI-powered applications and agents.
node-sdk AGENTS.md
Instructions for transloadit/node-sdk, covering transloadit repository guide, coding style, general, playwright and typescript.
Kokoro-Engine CLAUDE.md
Instructions for chyinan/Kokoro-Engine, covering claude.md, git 规范, 项目概述, 常用命令 and 安装依赖.
js2 CLAUDE.md
Instructions for loopdive/js2, covering js2wasm, answering style, running tests, dev scratch and working in worktrees.