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/antfu/node-modules-inspector/agents-mdgit clone --depth 1 https://github.com/antfu/node-modules-inspectorWhat 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.00354 | $0.00354 |
| Opus 5 | $0.00177 | $0.00177 |
| Sonnet 5 | $0.00071 | $0.00071 |
| Haiku 4.5 | $0.00035 | $0.00035 |
Grade A, and why
node-modules-inspector 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 2d 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.
What it actually says
AGENTS.md
CLI + web UI to visualize a project's node_modules. Supports pnpm, npm, bun. Hosted version: node-modules.dev.
Layout
packages/node-modules-inspector/— CLI + Nuxt SPA + devframe RPC serverpackages/node-modules-tools/— core lib: package-manager agents, resolution, typestest/e2e/— Playwright
RPC functions live in packages/node-modules-inspector/src/node/rpc/<name>.ts — one per file, wired up in handlers.ts.
Commands (from repo root)
pnpm dev— dev serverpnpm build— full buildpnpm test/pnpm test:e2e/pnpm test:a11y— vitest / playwright e2e / playwright accessibility (axe-core)pnpm lint/pnpm typecheck
Conventions
- TypeScript only. Vue 3 Composition API +
<script setup lang="ts">. - pnpm 11 with catalogs — new deps go in
pnpm-workspace.yaml, referenced ascatalog:<name>. - Lint:
@antfu/eslint-config. Pre-commit runseslint --fixvia nano-staged. - Commits: conventional, optional scope —
feat(inspector): ...,fix: .... AGENTS.mdis the source of truth;CLAUDE.mdis a symlink to it.- E2E runs single-worker (stateful WS backend) — don't parallelize.
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.
- 2d ago First seen · 28 lines · 354 tokens per session scan A 560626d109f5
node-modules-inspector AGENTS.md is an instructions file published in the GitHub repository antfu/node-modules-inspector (2,934 stars, last pushed 8d ago), licensed MIT. It adds 354 tokens to every session, about $0.0018 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
rn-devtools-hub CLAUDE.md
Instructions for rn-devtools-hub/rn-devtools-hub: Instructions for Claude Code in this repo.
rn-devtools-hub AGENTS.md
Instructions for rn-devtools-hub/rn-devtools-hub, covering agents.md: guide for ai agents, if you are working on this repo and driving a running app (mcp).
dev3000 AGENTS.md
Instructions for vercel-labs/dev3000, covering agents.md, runtime, local ui, production workflows, browser tools and development rules.
agent-inspect AGENTS.md
Instructions for rajudandigam/agent-inspect, covering agentinspect ai maintainer instructions, product boundary, source of truth, public-copy rule and start every task.
jenkins-cli CLAUDE.md
Instructions for avivsinai/jenkins-cli, covering claude.md, build & test commands, run a single test, skip e2e tests during unit testing and e2e with colima on macos (if docker is unreachable).
huly-mcp CLAUDE.md
Instructions for dearlordylord/huly-mcp, covering project instructions, design principle: llm-first api, project harness (copy to new projects), package manager and verification.