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/sam-agents/sam/claude-mdgit clone --depth 1 https://github.com/sam-agents/samWhat 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.00911 | $0.00911 |
| Opus 5 | $0.00456 | $0.00456 |
| Sonnet 5 | $0.00182 | $0.00182 |
| Haiku 4.5 | $0.00091 | $0.00091 |
Grade A, and why
sam 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 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.
How it starts
The opening of the file, as written. The whole thing — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SAM (sam-agents)
Autonomous TDD agent system distributed as an npm CLI. Installs agent definitions and per-platform skills into target projects (Claude Code, Cursor, Gemini CLI, GitHub Copilot, Antigravity).
This is a template-generation tool, not a runtime app — there are no unit tests, only verification scripts.
Layout
bin/cli.js # CLI entry point — install logic + per-platform generators
_sam/ # Source of truth: agent definitions + workflows
agents/ # Individual agent configs (architect, dev, reviewer, test, etc.)
core/workflows/ # Autonomous TDD pipeline (step-01 … step-04)
_config/ # Manifests (agent-manifest.csv, manifest.yaml)
docs/ # Per-platform guides (GEMINI, COPILOT, DEPLOYMENT)
templates/_sam/ # Mirror of _sam/ — what gets shipped to consumers
templates/.claude/ # Claude Code command wrappers
scripts/ # sync-templates, verify-sync, verify-manifest, verify-gemini
The _sam/ ↔ templates/_sam/ rule
_sam/ is the single source of truth. templates/_sam/ is a generated mirror that ships in the npm package.
- Edit
_sam/only, then runnpm run sync-templatesbefore committing. npm testrunsverify-sync.jsand will fail CI if they drift.- Never hand-edit
templates/_sam/.
Commands
npm test # verify-manifest + verify-sync + verify-gemini
npm run sync-templates # _sam/ → templates/_sam/
node bin/cli.js --platform all ./test-project # manual smoke test
Adding or editing an agent
- Edit (or create) the markdown file under
_sam/agents/. - If new: add a row to
_sam/_config/agent-manifest.csvand register it in the platform agent lists inbin/cli.js(generateCursorRules,generateAntigravitySkills,generateGeminiSkills). - Run
npm run sync-templates, thennpm test. - Smoke-test with
node bin/cli.js --platform all ./test-project.
Agent file format
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 · 74 lines · 911 tokens per session scan A f55312b2e046
sam CLAUDE.md is an instructions file published in the GitHub repository sam-agents/sam (18 stars, last pushed 1mo ago), licensed MIT. It adds 911 tokens to every session, about $0.0046 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
aiworkspace AGENTS.md
Instructions for a-tokyo/aiworkspace, covering ai workspace, structure, key commands, conventions and code quality.
skills AGENTS.md
AGENTS.md instructions for Apolinariolanga/skills, covering agents.md, project overview, commands, architecture and update checking system.
agent-skills AGENTS.md
Instructions for LLl0k0laD/agent-skills, covering agents.md, repository overview, creating a new skill, directory structure and naming conventions.
P0G AGENTS.md
Instructions for yz9yt/P0G, covering p0g agent guidelines, core principles, 1. clean instance mindset, 2. explicit over implicit and 3. minimal footprint.
research-os AGENTS.md
Instructions for lxinfei5/research-os, covering researchos — constitution, §0 what this is, §1 directory discipline, §2 half-life (innovation 1) — memory design and §3 behavior pillars (innovations 2–5).
agentic-workflow CLAUDE.md
Instructions for gtrabanco/agentic-workflow, covering claude.md, repository layout, working rules, authoring a skill and hand off, don't compose across a model/effort boundary.