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/threeal/nodejs-starter/claude-mdgit clone --depth 1 https://github.com/threeal/nodejs-starterWhat 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.00773 | $0.00773 |
| Opus 5 | $0.00387 | $0.00387 |
| Sonnet 5 | $0.00155 | $0.00155 |
| Haiku 4.5 | $0.00077 | $0.00077 |
Grade A, and why
nodejs-starter 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 yesterday.
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 — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Template notice: This file describes the template repository itself. If working in a project derived from this template, inform the user that this CLAUDE.md still contains template guidance and should be updated with project-specific content.
About This Repository
This is a minimal Node.js library and CLI starter template written in TypeScript targeting Node 24 (ESM). The Fibonacci sequence code in src/ is a placeholder — replace it with your actual library and CLI logic when starting a new project.
Architecture
Source Files
src/cli/commands/— Individual yargs command modules; each exports acreateXxxCommand()factory that accepts injected streams/deps for testability.src/cli/index.ts— CLI entry point built with yargs that wires commands and parsesprocess.argv.src/fibonacci.ts— The library implementation (currently a Fibonacci sequence generator as a placeholder example).src/index.ts— The library's public API (re-exports from implementation modules).src/*.test.ts— Vitest test files co-located with source.
Build Outputs
dist/cli/index.js— CLI binary.dist/index.js+dist/index.d.ts— Library entry (exported as".").
Tooling
Dependabot
Keeps GitHub Actions and npm dependencies up to date automatically via .github/dependabot.yaml.
ESLint
Linter configured in eslint.config.ts.
GitHub Actions
Automates CI. Workflow files:
.github/workflows/ci.yaml— Triggers on push tomain, pull requests, and manual dispatch.
Lefthook
Git hook manager configured in lefthook.yaml.
pnpm
Package manager. Also manages the Node.js runtime — versions for Node.js and pnpm are pinned in package.json.
Prettier
Formatter configured in .prettierrc.json using prettier-plugin-organize-imports — import order is auto-managed.
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.
- yesterday First seen · 87 lines · 773 tokens per session scan A a22ec2c6da09
nodejs-starter CLAUDE.md is an instructions file published in the GitHub repository threeal/nodejs-starter (5 stars, last pushed 4d ago), licensed Unlicense. It adds 773 tokens to every session, about $0.0039 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
page-agent AGENTS.md
Instructions for alibaba/page-agent, covering instructions for coding assistants, project overview, development commands, architecture and monorepo structure.
react-starter-kit AGENTS.md
Instructions for kriasoft/react-starter-kit, covering monorepo structure, tech stack, commands, database: bun db:{push,generate,migrate,studio,seed,export} and verification.
react-starter-kit CLAUDE.md
Instructions for kriasoft/react-starter-kit, a project described as: Modern React starter kit with Bun, TypeScript, Tailwind CSS, tRPC, Stripe, and Cloudflare Workers. Production-ready monorepo for building fast web apps.
react-starter-kit copilot-instructions.md
Instructions for kriasoft/react-starter-kit: Read AGENTS.md in the repository root and any subdirectory AGENTS.md files for project context, conventions, and architecture details before making changes.
terminal AGENTS.md
Instructions for m4tt72/terminal, covering agents.md - repository guide for agentic coding, project overview, commands, development and testing.
OneJS AGENTS.md
Instructions for Singtaa/OneJS, covering onejs v3: agent guide, requirements, install, project setup and build and live reload.