claude-baseline CLAUDE.md

claude-baseline CLAUDE.md is an instructions file for coding agents from MokeyBytes/claude-baseline. It costs 975 tokens per session, scanned A, original, MIT.

A reusable instruction template for Claude Code projects, covering project details, coding style, languages, tools, and formatting rules. Claude Code is a coding assistant that follows project guidance files.

In plain words
What is it for?
Use it to configure coding conventions for TypeScript, JavaScript, Python, Go, or Bash projects, including types, exports, errors, formatting, and testing tools.
Why use it?
It gives an agent consistent rules for how code should be written and checked instead of leaving those decisions implicit.

Instructions file

Install

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.

agentmods
npx agentmods add instructions/mokeybytes/claude-baseline/claude-md
Clone the repo
git clone --depth 1 https://github.com/MokeyBytes/claude-baseline

Wrote 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.

agentmods badge for claude-baseline CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/mokeybytes/claude-baseline/claude-md.svg)](https://agentmods.dev/instructions/mokeybytes/claude-baseline/claude-md)
Your own site
<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>
Per session 975 This file is loaded in full into every session.
When invoked 975 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 1782af2cc1c8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

CLAUDE.md · 128 lines

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
  • const over let; never var
  • 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 gofmt style (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 pipefail on every script
  • local for 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.

Read the full file on GitHub · 128 lines

Changes

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.

  1. 4d ago First seen · 128 lines · 975 tokens per session scan A 1782af2cc1c8

Subscribe to this mod's changes

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.