Go Packages and Imports When this skill does NOT apply : For naming individual identifiers within a package, see go-naming. For organizing functions within a single file, see go-functions. For configuring linters that enforce import rules, see go-linting. Package Organization Avoid Util Packages Package names should describe what the package provides. Avoid generic names like , , — they obscure meaning and cause import conflicts. Generic names can be used as part of a name (e.g., ) but should not be the entire package name. Package Size | Question | Action | |----------|--------| | Can you de…