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/noahneancy-byte/netreach/claude-mdgit clone --depth 1 https://github.com/noahneancy-byte/netreachWrote 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/noahneancy-byte/netreach/claude-md)<a href="https://agentmods.dev/instructions/noahneancy-byte/netreach/claude-md"><img src="https://agentmods.dev/badge/instructions/noahneancy-byte/netreach/claude-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 | $0.00655 | $0.00655 |
| Opus 5 | $0.00328 | $0.00328 |
| Sonnet 5 | $0.00131 | $0.00131 |
| Haiku 4.5 | $0.00065 | $0.00065 |
Grade A, and why
netreach CLAUDE.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 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.
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 — 45 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Project
NetReach (no-login fork) — Python CLI + library that gives AI agents read/search access to 7 no-login, low-risk internet sources. Positioning: installer + doctor + config tool. NOT a wrapper — after install, agents call upstream tools directly. This fork removes all login/Cookie channels (Twitter, Reddit, Facebook, Instagram, XiaoHongShu, LinkedIn, Xueqiu, Xiaoyuzhou). License: MIT | Version: 2.0.0
Commands
pip install -e .— Dev installpytest tests/ -v— All testspytest tests/test_cli.py -v— CLI tests onlypython -m agent_reach.cli doctor— Run diagnosticspython -m agent_reach.cli install --env=auto— Auto-configure
Structure
agent_reach/cli.py— CLI entry point (argparse; install / doctor / version)agent_reach/core.py— Core read/search routing logicagent_reach/config.py— Config management (YAML, env vars; proxy only)agent_reach/doctor.py— Diagnostics engineagent_reach/probe.py— Upstream command probing (missing / broken / timeout / ok)agent_reach/channels/— One file per platform (web.py, youtube.py, rss.py, github.py, v2ex.py, bilibili.py, exa_search.py)agent_reach/channels/base.py— Base channel classagent_reach/channels/mcporter.py— Read-only mcporter config helpersagent_reach/skill/— SKILL.md + references/ (search / web / dev / video)agent_reach/utils/— paths / process / text / url helperstests/— pytest tests
Conventions
- Python 3.10+ with type hints
- Each channel is a single file in
channels/, inherits fromChannel - Channel contract: implement
can_handle(url)andcheck(config);backendsis an ordered candidate list check()must really probe backends (viaprobe_command) and setself.active_backend- Use
logurufor logging,richfor CLI output - Commit format:
type(scope): message(one commit = one thing) - All upstream tool calls go through public API/CLI, never hack internals
Rules
- NEVER modify upstream open source projects' source code
- NetReach is a "glue layer" — only route and call, don't reimagine
- No login/Cookie channels in this fork — never re-add credential-based platforms
- Version in THREE places must match:
pyproject.toml,__init__.py,tests/test_cli.py - Always new branch for changes, PR to main, never push to main directly
- Run
pytest tests/ -vbefore committing — all tests must pass
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 · 45 lines · 655 tokens per session scan A 5542b691998f
netreach CLAUDE.md is an instructions file published in the GitHub repository noahneancy-byte/netreach (6 stars, last pushed 17d ago), licensed MIT. It adds 655 tokens to every session, about $0.0033 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-31.
Other instructions, from other repositories
github-mcp-server copilot-instructions.md
Copilot instructions for github/github-mcp-server, covering github mcp server - copilot instructions, project overview, critical build & validation steps, required commands (run before committing) and when modifying mcp tools/endpoints.
OpenBiliClaw CLAUDE.md
Claude Code instructions for whiteguo233/OpenBiliClaw, covering claude.md, project overview, build & development commands, python backend and browser extension (extension/).
av CLAUDE.md
Claude Code instructions for aviator-co/av, covering claude.md, project overview, documentation sources, command structure philosophy and development workflow.
ghtkn AGENTS.md
AGENTS.md instructions for suzuki-shunsuke/ghtkn, a project described as: A CLI to create short-lived (8 hours) GitHub App User Access Token for secure local development.
vscode-gitlens CLAUDE.md
Claude Code instructions for gitkraken/vscode-gitlens, a project described as: Supercharge Git inside VS Code and unlock untapped knowledge within each repository — Visualize code authorship at a glance via Git blame annotations and CodeLens, seamlessly navigate and explore Git repositories, gain valuable insights via…
dev_agent
Expert engineer for this GitHub Action.