Install
$ agentstack add skill-muratmirgun-gophers-go-naming ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Go Naming Conventions
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.
Core Rules
- MixedCaps only. No underscores, no
SCREAMING_SNAKE_CASE, nokHungarian. Exceptions: test subtests (TestFoo_BadInput), generated code, cgo. - Capitalization is visibility.
Exported,unexported. Do not invent other conventions. - No stuttering. The package name is at the call site;
http.HTTPClientis wrong,http.Clientis right. - Scope drives length.
iis fine in a 3-line loop; package-level vars need descriptive names. - Initialisms keep one case.
userID,HTTPServer,ParseURL— neveruserId,HttpServer,ParseUrl. - Receivers are 1-2 letter abbreviations, consistent across all methods of the type. Never
this/self.
Naming Decision Flow
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
Quick Reference Table
| 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 |
Frequently Missed Conventions
These are correct but non-obvious — they account for most naming mistakes in code review.
Constructor: New vs NewThing
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).
Boolean Fields Get a Prefix
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 }
Error Strings Are Fully Lowercase
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").
Enum Zero Value Is a Sentinel
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
)
Subtest Names Are Lowercase Phrases
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.
MixedCaps Is Load-Bearing
MaxPacketSize // good
userCount // good
parseHTTPResponse // good
MAX_PACKET_SIZE // wrong — Go reserves casing for visibility
max_packet_size // wrong — snake_case
kMaxBufferSize // wrong — Hungarian
Avoid Stuttering
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.
Avoid Built-In Names
Never shadow error, string, len, cap, append, copy, new, make, nil, iota. The compiler allows it; readers and tools do not.
Anti-Patterns
| Mistake | Fix | |---|---| | MAX_RETRIES = 3 constant | MaxRetries = 3 — MixedCaps | | GetName() string getter | Name() string — Go omits Get | | HttpClient, UserId, ParseUrl | HTTPClient, UserID, ParseURL — uniform initialism case | | this/self receiver | One-letter abbreviation (s for Server) | | util, common, helpers package | Specific name that describes content (stringutil, httpauth) | | user.NewUser() constructor | user.New() — drop the type name | | connected bool field | isConnected bool — prefix reads as a question | | "invalid message ID" error | "invalid message id" — fully lowercase | | StatusReady at iota 0 | Add StatusUnknown at 0 | | userSlice []User | users []User — types do not belong in names |
Verification Checklist
- [ ] No identifier contains
_outside of test subtests, generated code, or cgo. - [ ] No
Getprefix on getters; setters useSet. - [ ] Initialisms are uniform case (grep
Url\|Http\|Json\|Xml\|Id\bin source). - [ ] Receivers across one type all use the same short name.
- [ ] All sentinel errors are
ErrXxx; all error types are*XxxError. - [ ] All iota-based enums place a
Unknown/Invalidvalue at position 0. - [ ] No package named
util,common,helpers,misc.
Enforce With Linters
Most rules are mechanical and a linter will catch them in CI:
revive—var-naming,exported,receiver-naming,error-naming.predeclared— flags identifiers that shadow built-ins.errname— enforcesErrXxx/*XxxError.misspell— keeps comments and identifiers consistent.
Add them to .golangci.yml and run golangci-lint run in CI.
References
- [references/identifiers-and-scope.md](references/identifiers-and-scope.md) — receivers, scope-based length, acronyms, import aliasing
- [references/types-errors-constants.md](references/types-errors-constants.md) — interfaces, structs, enums, sentinel vs typed errors
- [references/functions-and-options.md](references/functions-and-options.md) — constructors, getters, variants, functional options
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: muratmirgun
- Source: muratmirgun/gophers
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.