go

go is a skill for Claude Code, Codex from SumonMSelim/agentguard. It costs 34 tokens per session (1,691 once invoked), scanned A, original, MIT.

A guide to writing and reviewing Go 1.25 code, covering project structure, errors, interfaces, concurrency, generics, testing, security, and tools.

In plain words
What is it for?
Use it when creating or reviewing Go projects, packages, command-line programs, tests, and concurrent code.
Why use it?
It helps avoid common Go mistakes, such as ignored errors, unclear package boundaries, circular imports, and unsafe error handling.

Skill for Claude CodeCodex

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 skills/sumonmselim/agentguard/go
Any agent
npx skills add SumonMSelim/agentguard --skill go
Clone the repo
git clone --depth 1 https://github.com/SumonMSelim/agentguard

Made for: Claude Code, Codex.

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 go

README.md
[![agentmods](https://agentmods.dev/badge/skills/sumonmselim/agentguard/go.svg)](https://agentmods.dev/skills/sumonmselim/agentguard/go)
Your own site
<a href="https://agentmods.dev/skills/sumonmselim/agentguard/go"><img src="https://agentmods.dev/badge/skills/sumonmselim/agentguard/go.svg" alt="Measured on agentmods" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,691 The whole file, excluding the scripts and references it only reads on demand.
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.00034 $0.01691
Opus 5 $0.00017 $0.00846
Sonnet 5 $0.00007 $0.00338
Haiku 4.5 $0.00003 $0.00169

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

Security

Grade A, and why

go 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 5d 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.

skills/go/SKILL.md · 106 lines

How it starts

The opening of the file, as written. The whole thing — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Go

Project structure

  • go.mod at repo root. Module path matches repo URL: module github.com/org/repo
  • Pin Go version in go.mod: go 1.25. Toolchain auto-selects via toolchain directive
  • Tool dependencies via go.mod tool directives (1.24+). go get -tool golang.org/x/tools/cmd/stringer
  • Standard layout: cmd/ for binaries, internal/ for private packages, pkg/ only if genuinely public
  • No circular imports. internal/ enforces package boundaries
  • go.sum committed. Never manually edited

Errors

  • Errors are values. Return error as last return value
  • Wrap with context: fmt.Errorf("op failed: %w", err). Always %w, not %v, when caller may inspect
  • Sentinel errors: var ErrNotFound = errors.New("not found"). Use errors.Is to check, not ==
  • Custom error types: implement Error() string. Use errors.As to extract
  • Never ignore errors. _ = f() only with explicit justification in comment
  • No panic in library code. Reserve for truly unrecoverable states in main
  • Check errors immediately after call. No deferred error checks buried in logic

Interfaces

  • Define interfaces at point of use (consumer), not point of implementation
  • Small interfaces. Prefer single-method interfaces: io.Reader, io.Writer
  • Accept interfaces, return concrete types
  • No interface for a single implementation unless testing or future extensibility is clear
  • interface{}any (Go 1.18+). Use any everywhere
  • Embed interfaces to compose: type ReadWriter interface { Reader; Writer }

Generics

  • Use generics to eliminate identical logic across types. Not for premature abstraction
  • Constrain tightly: [T int | int64] over [T any] when type matters
  • comparable constraint for map keys and equality checks
  • golang.org/x/exp/slices and maps patterns now in stdlib (slices, maps packages, 1.21+)
  • Range over func iterators (1.22+): use iter.Seq and iter.Seq2 for custom iterables
  • Generic type aliases fully supported (1.24+): type Set[T comparable] = map[T]struct{}

Read the full file on GitHub · 106 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. 5d ago First seen · 106 lines · 0 tokens per session scan A 2cdfc837d672

Subscribe to this mod's changes

go is a skill published in the GitHub repository SumonMSelim/agentguard (56 stars, last pushed 1mo ago), licensed MIT. It adds 34 tokens to every session and 1,691 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

go-idioms

写 Go 时使用。地道 Go:错误处理、并发、接口的正确姿势。.

Wade-DevCode/awesome-coding-skills-cn · 26 tokens

ast-grep

Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should be used when users ask to search for…

JanDeDobbeleer/oh-my-posh · 80 tokens

gen-test

Generate idiomatic tests for Go packages and handlers in the Meshery project.

meshery/meshery · 18 tokens

golang-testing

Production-ready Golang tests — table-driven tests, testify suites and mocks, parallel tests, fuzzing, fixtures, goroutine leak detection with goleak, snapshot testing, code coverage, integration tests, idiomatic test naming. Use when writing or reviewing Go tests, choosing a testing approach, setting up Go test CI…

samber/cc-skills-golang · 115 tokens

ax-go-agent-optimize

Use when writing Go code with github.com/ax-llm/ax/packages/go for agent optimization, verified agent-playbook evolution, evaluators, judges, optimizer artifacts, BootstrapFewShot, and GEPA.

ax-llm/ax · 51 tokens

gmeasure

Benchmark and measure Go code with gmeasure — an Experiment groups named Measurements, recorded via RecordValue/RecordDuration/MeasureDuration or repeated Sample/SampleValue/SampleDuration with SamplingConfig, timed inline with a Stopwatch, summarized through GetStats/Stats (StatMin/Max/Mean/Median/StdDev…

onsi/gomega · 129 tokens