Borrowing it
Nothing to install: this file belongs to nanotaboada/go-samples-gin-restful. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/nanotaboada/go-samples-gin-restful/master/CLAUDE.mdgit clone --depth 1 https://github.com/nanotaboada/go-samples-gin-restfulWrote 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/nanotaboada/go-samples-gin-restful/claude-md)<a href="https://agentmods.dev/instructions/nanotaboada/go-samples-gin-restful/claude-md"><img src="https://agentmods.dev/badge/instructions/nanotaboada/go-samples-gin-restful/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.1 | $0.01708 | $0.01708 |
| Opus 5 | $0.00854 | $0.00854 |
| Sonnet 5 | $0.00342 | $0.00342 |
| Haiku 4.5 | $0.00171 | $0.00171 |
Grade A, and why
go-samples-gin-restful 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 8d 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 — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Overview
REST API for managing football players built with Go and Gin Web Framework. Implements CRUD operations with SQLite + GORM, in-memory caching, and Swagger documentation. Architectural decisions are documented as ADRs in docs/adr/ — check them before proposing structural changes.
Structure
Layer rule: Routes → Controllers → Services → Data. Never skip a layer. Controllers must not contain business logic.
Coding Guidelines
- Pointers: Use pointers for structs in function signatures to avoid copying
- Logging: Standard
logpackage (structuredslogfor new code) - Migrations:
migrations/embed.goembeds all.sqlfiles into the binary at compile time (//go:embed *.sql). No migration files are needed on the filesystem at runtime. Migration files use 5-digit zero-padded names (00001_,00002_). - Seed tools: scripts in
tools/use//go:build ignoreand are excluded from normal builds. Run individually withgo run ./tools/seed_001_starting_eleven.go(recreates the DB from scratch). - Tests: Table-driven tests for multiple cases; target 80%+ coverage for service, controller, route packages
- Test strategy: Integration tests with real in-memory SQLite for all happy paths and expected branches. Use
MockPlayerServiceonly for error branches that cannot be triggered with a healthy database (e.g. simulated connection failures). If a scenario can be exercised with a real database, it must use a real database. - Mock pattern:
MockPlayerServiceuses opt-in function fields — only set theFuncrelevant to the test scenario; unset methods return safe zero-value defaults. Never create a new mock type per test. - Test naming:
TestRequest{METHOD}{Resource}{Condition}Response{Outcome}:- Resource: explicit endpoint target —
Players,PlayerByID,PlayerBySquadNumber - Condition:
Existing,NonExisting,Unknown,InvalidParam,Mismatch,EmptyBody,TrailingSlash,Validation,RetrieveError,CreateError,UpdateError,DeleteError - Outcome:
StatusOK,StatusCreated,StatusNoContent,StatusBadRequest,StatusNotFound,StatusConflict,StatusUnprocessableEntity,StatusInternalServerError, orPlayers/Playerfor body assertions - Examples:
TestRequestGETPlayerByIDExistingResponseStatusOK,TestRequestPOSTPlayersEmptyBodyResponseStatusBadRequest,TestRequestDELETEPlayerByIDDeleteErrorResponseStatusInternalServerError
- Resource: explicit endpoint target —
- Test godoc: Each
Test*function must open with:// TestFuncName tests that a\n// {METHOD} request to {/path} {condition}\n// returns a {outcome}. - Avoid: ignoring errors,
panicin library code, global mutable state,interface{}without type assertions, complex goroutines for simple CRUD
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.
- 8d ago First seen · 114 lines · 1,708 tokens per session scan A 4d587b965b69
go-samples-gin-restful CLAUDE.md is an instructions file published in the GitHub repository nanotaboada/go-samples-gin-restful (2 stars, last pushed yesterday), licensed MIT. It adds 1,708 tokens to every session, about $0.0085 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
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.