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/mokeybytes/claude-baseline/claude-mdgit clone --depth 1 https://github.com/MokeyBytes/claude-baselineWrote 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/mokeybytes/claude-baseline/claude-md)<a href="https://agentmods.dev/instructions/mokeybytes/claude-baseline/claude-md"><img src="https://agentmods.dev/badge/instructions/mokeybytes/claude-baseline/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.00975 | $0.00975 |
| Opus 5 | $0.00487 | $0.00487 |
| Sonnet 5 | $0.00195 | $0.00195 |
| Haiku 4.5 | $0.00097 | $0.00097 |
Grade A, and why
claude-baseline 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 — 128 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file configures Claude Code behavior for this project. It is also a template: copy it into any new project, replace the placeholders, and delete sections that do not apply to your stack.
Project
- Owner: [YOUR NAME OR TEAM]
- Stack: [LANGUAGE / FRAMEWORK / DATABASE]
- Package manager: [npm / yarn / pnpm / pip / cargo / go]
- Test runner: [vitest / jest / pytest / go test / cargo test]
- Formatter: enforced automatically by
.claude/hooks/format.sh
Code Style
Keep the block that matches your stack and delete the rest.
TypeScript / JavaScript
- Strict TypeScript; explicit return types on all exported functions
constoverlet; nevervar- async/await only; no callbacks, no raw promise chains
- Named exports only; no default exports
- Template literals over string concatenation
Python
- Type hints on all function signatures
- PEP 8 compliance (enforced by Ruff or Black)
- f-strings over
.format()or%formatting
Go
- Standard
gofmtstyle (enforced automatically) - Errors returned and handled explicitly; never ignored with
_ - Interfaces defined at the point of use, not the point of implementation
Bash
set -euo pipefailon every scriptlocalfor all function-scoped variables- Quote all variable expansions:
"$VAR", not$VAR - Use
[[not[for conditionals - Snake_case function names
Naming
- TS/JS: camelCase vars/functions, PascalCase classes/types/components
- Python: snake_case vars/functions, PascalCase classes
- Booleans:
isActive,hasPermission,canRetry - Functions: verb-noun pairs:
fetchUser(),parseToken(),validateInput() - No single-letter variables except loop counters (
i,j,k) - Banned names:
data,info,tmp,flag,val,obj,result - Names are self-documenting. If a name needs a comment to explain it, rename it.
Engineering Constraints
- One function, one responsibility. Max 30 lines of logic. Max 3 parameters; use an options object or dataclass beyond that.
- Max 2 levels of nesting; use early returns.
- Never silently swallow exceptions. Log with: timestamp, error type, stack trace, and context.
- Validate and sanitize all external input. Assume hostile data at every system boundary (user input, API responses, file reads, environment variables).
- Never hardcode secrets, keys, or tokens. Environment variables only.
- Flag any injection risk: SQL, command, template literal, path traversal.
- Least privilege on all permission and scope decisions.
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 · 128 lines · 975 tokens per session scan A 1782af2cc1c8
claude-baseline CLAUDE.md is an instructions file published in the GitHub repository MokeyBytes/claude-baseline (2 stars, last pushed 7d ago), licensed MIT. It adds 975 tokens to every session, about $0.0049 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
mirage CLAUDE.md
Claude Code instructions for strukto-ai/mirage, covering claude.md, repo layout, typescript packages, python/typescript parity and module layout.
ralph CLAUDE.md
Claude Code instructions for SantanderAI/ralph, covering ralph — instrucciones del proyecto and paridad bash ↔ powershell (importante).
claude-code-statusline CLAUDE.md
Instructions for glauberlima/claude-code-statusline, covering claude.md, project overview, development commands, testing and run all tests (unit + integration).
claude-wrapper CLAUDE.md
Instructions for smartwatermelon/claude-wrapper, covering claude.md, what this is, commands, run tests and lint.
auto-uv-env AGENTS.md
Instructions for ashwch/auto-uv-env, covering agents.md - the auto-uv-env story, what this repo is, architecture diagrams, runtime activation flow and repository lifecycle.
kleosrules AGENTS.md
Instructions for kleosr/kleosrules, a project described as: Cursor harness pack: user rules, skills, Bash hooks, local HANDOFF memory. macOS, Linux, Windows (WSL).