go-declarations

go-declarations is a skill for Claude Code from cxuu/golang-skills. It costs 78 tokens per session (1,180 once invoked), scanned A, original, Apache-2.0.

A set of guidelines for declaring and initializing values in Go, a programming language. It covers variables, constants, structs, maps, enum-like constants, zero values, and keeping declarations within the right scope.

In plain words
What is it for?
Use it when writing Go variable, constant, struct, map, pointer, or enum declarations, including decisions between var and := and the design of iota-based constants.
Why use it?
It helps avoid confusing or overly broad declarations and reduces mistakes such as shadowing names or choosing the wrong initialization form. It also encourages consistent formatting for related declarations.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the golang-skills plugin — 20 skills shipped together

Good fit Use it when writing Go variable, constant, struct, map, pointer, or enum declarations, including decisions between var and := and the design of iota-based constants.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cxuu/golang-skills/go-declarations
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.

Any agent
npx skills add cxuu/golang-skills --skill go-declarations
Clone the repo
git clone --depth 1 https://github.com/cxuu/golang-skills

Made for: Claude Code.

Or install golang-skills, the plugin that ships this one along with the rest of its 20 skills.

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-declarations

README.md
[![agentmods](https://agentmods.dev/badge/skills/cxuu/golang-skills/go-declarations/github.svg)](https://agentmods.dev/skills/cxuu/golang-skills/go-declarations)
Your own site
<a href="https://agentmods.dev/skills/cxuu/golang-skills/go-declarations"><img src="https://agentmods.dev/badge/skills/cxuu/golang-skills/go-declarations/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for go-declarations

Your own site · 80×15
<a href="https://agentmods.dev/skills/cxuu/golang-skills/go-declarations"><img src="https://agentmods.dev/badge/skills/cxuu/golang-skills/go-declarations.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,180 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 18 Mar 2026
  • Snyk pass 16 Mar 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00078 $0.01180
Opus 5 $0.00039 $0.00590
Sonnet 5 $0.00016 $0.00236
Haiku 4.5 $0.00008 $0.00118

Measured 13d ago against content hash e9190b437615, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

go-declarations 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 13d 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-declarations/SKILL.md · 165 lines

How it starts

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

Go Declarations and Initialization

Compatibility: Examples may use any, which requires Go 1.18+.

Resource Routing

  • references/SCOPE.md - Read when deciding between var, :=, if-init, and narrow variable scope.
  • references/IOTA.md - Read when designing constants or enum-like values.
  • references/INITIALIZATION.md - Read when initializing structs, maps, zero values, or pointers.
  • references/LITERALS.md - Read for composite literal formatting and keyed-field tradeoffs.
  • references/STRUCTS.md - Read when designing or initializing structs.
  • references/SHADOWING.md - Read when a declaration may shadow a builtin or outer variable.

Quick Reference: var vs :=

Context Use Example
Top-level var (always) var _s = F()
Local with value := s := "foo"
Local zero-value (intentional) var var filtered []int
Type differs from expression var with type var _e error = F()

Group Similar Declarations

Group related var, const, type in parenthesized blocks. Separate unrelated declarations into distinct blocks.

// Bad
const a = 1
const b = 2

// Good
const (
    a = 1
    b = 2
)

Inside functions, group adjacent vars even if unrelated:

var (
    caller  = c.name
    format  = "json"
    timeout = 5 * time.Second
)

Constants and iota

Start enums at one so the zero value represents invalid/unset:

const (
    Add Operation = iota + 1
    Subtract
    Multiply
)

Use zero when the default behavior is desirable (e.g., LogToStdout).


Variable Scope

Use if-init to limit scope when the result is only needed for the error check:

if err := os.WriteFile(name, data, 0644); err != nil {
    return err
}

Don't reduce scope if it forces deeper nesting or you need the result outside the if. Move constants into functions when only used there.


Initializing Structs

  • Always use field names (enforced by go vet). Exception: test tables with ≤3 fields.
  • Omit zero-value fields — let Go set defaults.
  • Use var for zero-value structs: var user User not user := User{}
  • Use &T{} over new(T): sptr := &T{Name: "bar"}

Read the full file on GitHub · 165 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 13d ago First seen · 165 lines · 78 tokens per session scan A e9190b437615

Subscribe to this mod's changes

go-declarations is a skill published in the GitHub repository cxuu/golang-skills (159 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 78 tokens to every session and 1,180 once invoked, about $0.0004 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.