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/evanlong-me/nvidia-anthropic-proxy/agents-mdgit clone --depth 1 https://github.com/evanlong-me/nvidia-anthropic-proxyWrote 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/evanlong-me/nvidia-anthropic-proxy/agents-md)<a href="https://agentmods.dev/instructions/evanlong-me/nvidia-anthropic-proxy/agents-md"><img src="https://agentmods.dev/badge/instructions/evanlong-me/nvidia-anthropic-proxy/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 | $0.00284 | $0.00284 |
| Opus 5 | $0.00142 | $0.00142 |
| Sonnet 5 | $0.00057 | $0.00057 |
| Haiku 4.5 | $0.00028 | $0.00028 |
Grade B, and why
nvidia-anthropic-proxy AGENTS.md scanned grade B 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 5d 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
`~/.claude/settings.json`: What it actually says
AGENTS.md
This file provides guidance to coding agents when working with code in this repository.
项目概述
Cloudflare Worker 代理,让 OpenAI 兼容 API(如 NVIDIA NIM)支持 Anthropic API 格式。
命令
npm run setup # 配置 secrets 和安装依赖
npm run dev # 本地开发
npm run deploy # 部署到 Cloudflare
架构
单文件 Worker (index.js),转换 Anthropic ↔ OpenAI 格式:
POST /v1/messages→/chat/completionsGET /v1/models→/modelsGET /health
环境变量 (Cloudflare Secrets)
NVIDIA_API_KEY- 必需
coding agents 配置
~/.claude/settings.json:
{
"env": {
"ANTHROPIC_BASE_URL": "https://你的worker地址.workers.dev",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "minimaxai/minimax-m2.1",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "minimaxai/minimax-m2.1",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "z-ai/glm4.7"
}
}
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.
- 5d ago First seen · 43 lines · 284 tokens per session scan B adce29da8543
nvidia-anthropic-proxy AGENTS.md is an instructions file published in the GitHub repository evanlong-me/nvidia-anthropic-proxy (38 stars, last pushed 27d ago), licensed MIT. It adds 284 tokens to every session, about $0.0014 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
LocalAI AGENTS.md
AGENTS.md instructions for mudler/LocalAI, covering localai agent instructions, policy for ai-assisted contributions, topics and quick reference.
sonicjs AGENTS.md
AGENTS.md instructions for SonicJs-Org/sonicjs, covering sonicjs agent guidelines, decision tree — code exploration, rtk (rust token killer), caveman mode and delegation — cavecrew subagents.
skyvern CLAUDE.md
Claude Code instructions for Skyvern-AI/skyvern, covering claude.md, development commands, python backend commands, code quality & testing and frontend commands (in skyvern-frontend/).
skyvern AGENTS.md
AGENTS.md instructions for Skyvern-AI/skyvern, covering skyvern agent guide, project structure for agent navigation, coding conventions for agents, python standards and asynchronous programming.
sonicjs CLAUDE.md
Claude Code instructions for SonicJs-Org/sonicjs, covering sonicjs ai development guidelines, core technology stack, workspace boundary (conductor), architecture direction: document model (authoritative) and the 5 document tables (migration 0002documents.sql).
Agent-Span AGENTS.md
AGENTS.md instructions for oxbshw/Agent-Span, covering agents.md, build & test, crate layout, adding a channel and adding an mcp tool.