go-clean-architecture
Use when scaffolding or refactoring a Go service into a framework-agnostic clean (hexagonal) architecture: Domain, Usecase, Repository, Delivery layers, inward…
Use when naming any Go identifier — packages, types, functions, methods, receivers, variables, constants, errors, options. Covers MixedCaps, scope-based length, initialism casing, the no-`Get` rule, `-er` interfaces, sentinel `ErrX` vs typed `XError`, and the most commonly
$ npx -y skills add muratmirgun/gophers --skill go-naming --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/go-namingContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when naming any Go identifier — packages, types, functions, methods, receivers, variables, constants, errors, options. Covers MixedCaps, scope-based length, initialism casing, the no-`Get` rule, `-er` interfaces, sentinel `ErrX` vs typed `XError`, and the most commonly
name: go-naming description: "Use when naming any Go identifier — packages, types, functions, methods, receivers, variables, constants, errors, options. Covers MixedCaps, scope-based length, initialism casing, the no-`Get` rule, `-er` interfaces, sentinel `ErrX` vs typed `XError`, and the most commonly missed conventions (constructors, boolean fields, enum zero values, lowercase error strings). Apply proactively whenever new identifiers are introduced, even if the user has not asked about naming." license: MIT compatibility: "Designed for Claude Code or similar AI coding agents. Go 1.0+ for the core rules; iota/enum guidance is version-neutral." allowed-tools: Read Edit Write Glob Grep Bash(go:*) Bash(golangci-lint:*)
Go uses naming to encode visibility (`UpperCamelCase` = exported, `lowerCamelCase` = unexported), so naming is load-bearing — not cosmetic. Names should be **short, contextual, and non-repetitive**. The package name is always present at the call site; pretending otherwise is the single biggest source of bad Go names.
1. **MixedCaps only.** No underscores, no `SCREAMING_SNAKE_CASE`, no `kHungarian`. Exceptions: test subtests (`TestFoo_BadInput`), generated code, cgo. 2. **Capitalization is visibility.** `Exported`, `unexported`. Do not invent other conventions. 3. **No stuttering.** The package name is at the call site; `http.HTTPClient` is wrong, `http.Client` is right. 4. **Scope drives length.** `i` is fine in a 3-line loop; package-level vars need descriptive names. 5. **Initialisms keep one case.** `userID`, `HTTPServer`, `ParseURL` — never `userId`, `HttpServer`, `ParseUrl`. 6. **Receivers are 1-2 letter abbreviations**, consistent across all methods of the type. Never `this`/`self`.
What are you naming?
├─ Package → lowercase single word, singular, specific (not util/common/helper)
├─ File → lowercase, underscores OK (user_handler.go)
├─ Interface → method + "-er" when single-method (Reader, Closer, Stringer)
├─ Struct/Type → MixedCaps noun (Request, FileHeader)
├─ Constructor → New() if package has one primary type; NewThing() if multiple
├─ Constant → MixedCaps; never ALL_CAPS; role-based not value-based
├─ Enum (iota) → type-prefix + Unknown/Invalid at position 0
├─ Sentinel error → ErrXxx (var ErrNotFound = errors.New("..."))
├─ Error type → XxxError (type PathError struct{})
├─ Boolean field → is/has/can prefix (isReady, hasPerm)
├─ Getter → field name only (Owner()), never GetOwner()
├─ Setter → SetXxx (SetOwner)
├─ Option → WithXxx (WithLogger, WithPort)
├─ Variant → WithContext suffix, In suffix (in-place), Must prefix (panics)
└─ Variable → length proportional to scope distance| Element | Convention | Example | |---|---|---| | Package | lowercase, singular | `http`, `tabwriter` | | Exported | `UpperCamelCase` | `ReadAll`, `HTTPClient` | | Unexported | `lowerCamelCase` | `parseToken`, `userCount` | | Receiver | 1-2 letters | `func (s *Server)` | | Constant | MixedCaps | `MaxRetries`, `defaultTimeout` | | Initialism | uniform case | `URL`, `HTTPServer`, `xmlParser` | | Sentinel error | `Err` prefix | `ErrNotFound` | | Error type | `Error` suffix | `*PathError` | | Boolean field | `is`/`has`/`can` | `isConnected` | | Option func | `With` + field | `WithPort(8080)` | | Format func | `f` suffix | `Errorf`, `Wrapf` |
These are correct but non-obvious — they account for most naming mistakes in code review.
If the package exports **one primary type**, the constructor is `New()`. Callers write `apiclient.New()`, not `apiclient.NewClient()`. Only use `NewThing` when the package builds several things (`http.NewRequest`, `http.NewServeMux`).
Unexported boolean fields use `is`/`has`/`can`. A bare adjective is ambiguous — is `connected` a method or a field, a state or a verb past tense?
type Conn struct { isOpen bool }
func (c *Conn) IsOpen() bool { return c.isOpen }Including acronyms. Errors get concatenated: `fmt.Errorf("parsing token: %w", err)` becomes `"parsing token: invalid message id"`. Mid-sentence capitals look wrong. Use `"invalid message id"` not `"invalid message ID"`.
Sentinel errors should include the package name: `errors.New("apiclient: not found")`.
`var s Status` is silently `0`. If `0` is `StatusReady`, uninitialised values look intentional. Put `StatusUnknown` (or `Invalid`) at iota 0.
type Status int
const (
StatusUnknown Status = iota // zero-value catch
StatusReady
StatusRunning
)t.Run("valid id", ...) // not "Valid ID"
t.Run("empty input", ...)> Read [references/types-errors-constants.md](references/types-errors-constants.md) when naming new struct/interface/enum/error families.
MaxPacketSize // good userCount // good parseHTTPResponse // good MAX_PACKET_SIZE // wrong — Go reserves casing for visibility max_packet_size // wrong — snake_case kMaxBufferSize // wrong — Hungarian
The package name is always present at the call site.
// In package http
type Client struct{} // not HTTPClient — caller writes http.Client
// In package user
func New() *User // not NewUser — caller writes user.New()
// In package dbpool
type Pool struct{} // not DBPool
type Option func() // not PoolOption> Read [references/identifiers-and-scope.md](references/identifiers-and-scope.md) for receivers, variable scope rules, and import aliasing.
Never shadow `error`, `string`, `len`, `cap`, `append`, `copy`, `new`, `make`, `nil`, `iota`. The compiler allows it; readers and tools do not.
26 production-grade Go skills for Claude Code, Gemini CLI, and opencode. Battle-tested patterns from the Go community — codified as triggerable AI skills.
Repo: muratmirgun/gophers
Use when scaffolding or refactoring a Go service into a framework-agnostic clean (hexagonal) architecture: Domain, Usecase, Repository, Delivery layers, inward…
Invoke this skill to systematically review a Go change against community style standards before merging. Walks the diff topic by topic — formatting, errors,…
Use when writing or reviewing Go code for clarity, formatting, control flow, variable declarations, switch usage, and function design. Covers the priority…
Use when writing or reviewing concurrent Go code — goroutines, channels, select, mutexes, atomics, errgroup, singleflight, worker pools, or fan-out/fan-in…
Use when designing, propagating, or debugging context.Context flow in Go — first-parameter placement, deadlines and cancellation, request-scoped values,…
Use when writing conditionals, loops, switches, type switches, or blank-identifier patterns in Go. Covers if-with-initialization, guard clauses, early returns,…