npx skills add ...
npx skills add cxuu/golang-skills --skill go-naming
Use when naming any Go identifier — packages, types, functions, methods, variables, constants, or receivers — to ensure idiomatic, clear names. Also use when a user is creating new types, packages, or exported APIs, even if they don't explicitly ask about naming conventions. Does not cover package organization (see go-packages).
npx skills add cxuu/golang-skills --skill go-naming
scripts/check-naming.sh - Run when checking SCREAMING_SNAKE_CASE constants, Get-prefixed getters, generic package names, or receivers named this/self.references/IDENTIFIERS.md - Read when choosing names for initialisms, exported identifiers, or package-level symbols.references/REPETITION.md - Read when names repeat package, receiver, type, or local context.references/VARIABLES.md - Read when choosing local variable names, receiver names, or loop identifiers.Names should:
Naming is more art than science—Go names tend to be shorter than in other languages.
Normative: All Go identifiers must use MixedCaps.
Underscores are allowed only in: test functions (TestFoo_InvalidInput),
generated code, and OS/cgo interop.
Normative: Packages must be lowercase with no underscores.
Short, lowercase, singular nouns. Avoid generic names like util, common,
helper — prefer specific names: stringutil, httpauth, configloader.
Advisory: One-method interfaces use "-er" suffix.
Name one-method interfaces by the method plus -er: Reader, Writer,
Formatter. Honor canonical method names (Read, Write, Close, String)
and their signatures.
Normative: Receivers must be short abbreviations, used consistently.
One or two letters abbreviating the type, consistent across all methods:
func (c *Client) Connect(), func (c *Client) Send().
Never use this or self.
Normative: Constants use MixedCaps, never ALL_CAPS or K prefix.
Name constants by role, not value: MaxRetries not Three,
DefaultPort not Port8080.
Normative: Initialisms maintain consistent case throughout.
Initialisms (URL, ID, HTTP, API) must be all uppercase or all lowercase:
HTTPClient, userID, ParseURL() — not HttpClient, orderId, ParseUrl().
Advisory: No
Getprefix for simple accessors; use verb-like names for actions.
Getter for field owner is Owner(), not GetOwner(). Setter is
SetOwner(). Use Compute or Fetch for expensive operations.
When functions differ only by type, include type at the end:
ParseInt(), ParseInt64().
Variable naming balances brevity with clarity. Key principles:
i, v) for small scopes; longer,
descriptive names for larger scopesi for index,
r/w for reader/writer)users not userSlice, name not nameString_ prefix for package-level unexported
vars/consts to prevent shadowingGo names should not feel repetitive when used. Consider the full context:
widget.New() not widget.NewWidget()p.Name() not p.ProjectName()sqldb, use Connection not DBConnectionNever shadow Go's predeclared identifiers (error, string, len, cap,
append, copy, new, make, etc.) as variable, parameter, or type names.
For detailed guidance: See go-declarations — "Avoid Using Built-In Names"
section.
| Element | Rule | Example |
|---|---|---|
| Package | lowercase, no underscores | package httputil |
| Exported | MixedCaps, starts uppercase | func ParseURL() |
| Unexported | mixedCaps, starts lowercase | func parseURL() |
| Receiver | 1-2 letter abbreviation | func (c *Client) |
| Constant | MixedCaps, never ALL_CAPS | const MaxSize = 100 |
| Initialism | consistent case | userID, XMLAPI |
| Variable | length ~ scope size | i (small), userCount (large) |
| Built-in names | Never shadow predeclared identifiers | See go-declarations |
Validation: After renaming identifiers, run
bash scripts/check-naming.shto verify no naming anti-patterns remain. Then rungo build ./...to confirm the rename didn't break anything.
-er suffix or choosing receiver typesutil/common, or resolving import collisionsErrFoo) or custom error types// Good: user, oauth2, tabwriter
// Bad: user_service, UserService, count (shadows var)const MaxPacketSize = 512
const defaultTimeout = 30 * time.Secondfor i, v := range items { ... } // small scope
pendingOrders := filterPending(orders) // larger scope
const _defaultPort = 8080 // unexported global