gollem CLAUDE.md

gollem CLAUDE.md is an instructions file for coding agents from gollem-dev/gollem. It costs 2,175 tokens per session, scanned A, original, Apache-2.0.

A repository guide for Claude Code, the coding assistant, explaining its rules, development practices, and required checks for a Go project.

In plain words
What is it for?
It guides code changes, formatting, linting, security scans, test execution, comments, package layout, and safe use of temporary files and commands.
Why use it?
It keeps coding work consistent and prevents avoidable problems such as exposing unstable code, skipping security checks, or using the wrong test structure.

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/gollem-dev/gollem/claude-md
Clone the repo
git clone --depth 1 https://github.com/gollem-dev/gollem
Per session 2,175 This file is loaded in full into every session.
When invoked 2,175 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.02175 $0.02175
Opus 5 $0.01087 $0.01087
Sonnet 5 $0.00435 $0.00435
Haiku 4.5 $0.00217 $0.00217

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

Security

Grade A, and why

gollem 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 3d 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 · 232 lines

How it starts

The opening of the file, as written. The whole thing — 232 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.

Restriction & Rules

  • In principle, do not trust developers who use this library from outside
    • Do not export unnecessary methods, structs, and variables
    • Assume that exposed items will be changed. Never expose fields that would be problematic if changed
    • Use export_test.go for items that need to be exposed for testing purposes
  • When making changes, before finishing the task, always:
    • Run go vet ./..., go fmt ./... to format the code
    • Run golangci-lint run ./... to check lint error
    • Run gosec -quiet ./... to check security issue
    • Run tests to ensure no impact on other code
  • All comment and character literal in source code must be in English
  • Test files should have package {name}_test. Do not use same package name
  • Test must be included in same name test file. (e.g. test for abc.go must be in abc_test.go)
  • Use named empty structure (e.g. type ctxHogeKey struct{} ) as private context key
  • Do not create binary. If you need to run, use go run command instead
  • When a tmp directory is specified, search for files within the ./tmp directory relative to the project root.
  • Naming Convention: In Go, package names already express the subject, so avoid redundancy in method/struct names
    • Good: openai.NewHistory(), claude.ToMessages(), gemini.ToContents()
    • Bad: openai.NewHistoryFromOpenAI(), claude.ToClaude(), gemini.ToGemini()
  • Environment Variables: Outside of test code, NEVER use os.Getenv() or os.LookupEnv() directly. Always use github.com/urfave/cli/v3 for environment variable access
    • This ensures proper configuration management and testability
    • Test code may use os.Getenv() for test setup purposes

Commands

Development and Testing

  • task or task mock - Generate mock files for testing (uses moq)
  • go test ./... - Run all tests (MUST run before exiting tasks)
  • go test -v ./llm/openai/ - Run tests for specific package
  • go test -v ./path/to/package - Run specific package tests when developing
  • go build ./... - Build all packages
  • go mod tidy - Clean up dependencies

Read the full file on GitHub · 232 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. 3d ago First seen · 232 lines · 2,175 tokens per session scan A 389269e1c1a5

Subscribe to this mod's changes

gollem CLAUDE.md is an instructions file published in the GitHub repository gollem-dev/gollem (193 stars, last pushed 4d ago), licensed Apache-2.0. It adds 2,175 tokens to every session, about $0.0109 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.