swe-programming-golang
Go coding standards from authoritative docs/explanation/software-engineering/programming-languages/golang/ documentation
Best use case
swe-programming-golang is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Go coding standards from authoritative docs/explanation/software-engineering/programming-languages/golang/ documentation
Teams using swe-programming-golang should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/swe-programming-golang/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How swe-programming-golang Compares
| Feature / Agent | swe-programming-golang | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Go coding standards from authoritative docs/explanation/software-engineering/programming-languages/golang/ documentation
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Go Coding Standards
## Purpose
Progressive disclosure of Go coding standards for agents writing Go code.
**Authoritative Source**: [docs/explanation/software-engineering/programming-languages/golang/README.md](../../../docs/explanation/software-engineering/programming-languages/golang/README.md)
**Usage**: Auto-loaded for agents when writing Go code. Provides quick reference to idioms, best practices, and antipatterns.
## Prerequisite Knowledge
**IMPORTANT**: This skill provides **OSE Platform-specific style guides**, not educational tutorials.
**You MUST understand Go fundamentals before using these standards.** Complete the AyoKoding Go learning path first:
1. **[Go Learning Path](../../../apps/ayokoding-web/content/en/learn/software-engineering/programming-languages/golang/)** - Initial setup, language overview, quick start guide (0-95% language coverage)
2. **[Go By Example](../../../apps/ayokoding-web/content/en/learn/software-engineering/programming-languages/golang/by-example/)** - 75+ heavily annotated code examples (beginner to advanced patterns)
3. **[Go In the Field](../../../apps/ayokoding-web/content/en/learn/software-engineering/programming-languages/golang/in-the-field/)** - 37+ production implementation guides (standard library first, framework integration)
4. **[Go Release Highlights](../../../apps/ayokoding-web/content/en/learn/software-engineering/programming-languages/golang/release-highlights/)** - Go 1.18-1.26 features (generics, fuzzing, PGO, iterators, Green Tea GC default, self-referential generics, errors.AsType)
**What this skill covers**: OSE Platform naming conventions, framework choices, repository-specific patterns, how to apply Go knowledge in THIS codebase.
**What this skill does NOT cover**: Go syntax, language fundamentals, generic patterns (those are in ayokoding-web).
**See**: [Programming Language Documentation Separation](../../../repo-governance/conventions/structure/programming-language-docs-separation.md) for content separation rules.
## Quick Standards Reference
### Naming Conventions
**Packages**: lowercase, single word
- `http`, `json`, `user`, `payment`
- Avoid underscores
**Types and Functions**: MixedCaps
- Exported: `UserAccount`, `CalculateTotal()`
- Unexported: `userAccount`, `calculateTotal()`
**Variables**: Short names in limited scope
- `i`, `j` for loop counters
- `r` for reader, `w` for writer
- Descriptive names for package-level: `defaultTimeout`
**Constants**: MixedCaps (not UPPER_CASE)
- `MaxRetries`, `DefaultTimeout`
### Modern Go Features (Go 1.18+)
**Generics**: Use for type-safe data structures
```go
func Map[T, U any](slice []T, f func(T) U) []U {
result := make([]U, len(slice))
for i, v := range slice {
result[i] = f(v)
}
return result
}
```
**Error Wrapping**: Always `%w` for error args in `fmt.Errorf` — `errorlint` linter enforces:
```go
if err != nil {
return fmt.Errorf("failed to process user: %w", err) // %w preserves chain
}
// Never: fmt.Errorf("...%v", err) — errorlint violation
```
**Error Comparison**: Always `errors.Is`/`errors.As` — `errorlint` linter enforces:
```go
if errors.Is(err, io.EOF) { ... } // NOT: err == io.EOF
var exitErr *exec.ExitError
if errors.As(err, &exitErr) { ... } // NOT: err.(*exec.ExitError)
```
**Sealed-Interface Sum Types**: Use `//sumtype:decl` + `gochecksumtype` for exhaustive type switches:
```go
//sumtype:decl
type MyStatus interface {
isMyStatus()
Code() string
String() string
}
type StatusA struct{}
func (StatusA) isMyStatus() {}
func (StatusA) Code() string { return "a" }
func (StatusA) String() string { return "a" }
// gochecksumtype enforces exhaustive coverage:
switch s.(type) {
case StatusA:
// ...
}
```
See [Sealed-Interface Sum Types](../../../docs/explanation/software-engineering/programming-languages/golang/design-patterns.md#sealed-interface-sum-types) for full pattern.
**Doc Comments** — `godot` + `revive exported` + `revive package-comments` enforce:
```go
// Package doctor checks required development tools are installed.
package doctor
// Execute runs the root cobra command, writing errors to stderr and exiting on failure.
func Execute() { ... }
// DefaultMaxSize is the maximum allowed file size for env backup inclusion (1 MB).
const DefaultMaxSize = 1024 * 1024
// Code implements ToolStatus.
func (StatusOK) Code() string { return "ok" }
```
Rules:
- First line = identifier name + verb + object + period (`godot`)
- Imperative mood for functions: "Execute runs…" not "This runs…"
- Interface implementations: `// Code implements [InterfaceName].`
- `String()` (fmt.Stringer): optional — recognized as stdlib interface
- Unexported identifiers: no linter, code-review only
- Package main: `// Package main is the entry point for [tool name].`
**Struct Embedding**: Use for composition
```go
type User struct {
BaseModel
Name string
}
```
### Error Handling
**Explicit Error Returns**: Always check errors
```go
result, err := doSomething()
if err != nil {
return fmt.Errorf("operation failed: %w", err)
}
```
**Custom Error Types**: Define for specific cases
```go
type ValidationError struct {
Field string
Err error
}
func (e *ValidationError) Error() string {
return fmt.Sprintf("validation failed for %s: %v", e.Field, e.Err)
}
```
**Error Wrapping**: Preserve error chain
```go
return fmt.Errorf("processing user %s: %w", userID, err)
```
### Concurrency
**Goroutines**: Use for concurrent operations
```go
go func() {
// Concurrent work
}()
```
**Channels**: Use for communication
```go
ch := make(chan Result, 10) // Buffered
ch <- result // Send
result := <-ch // Receive
```
**Context**: Use for cancellation and timeouts
```go
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
```
### Testing Standards
**Table-Driven Tests**: Preferred testing pattern
```go
tests := []struct {
name string
input int
expected int
}{
{"positive", 5, 10},
{"zero", 0, 0},
{"negative", -5, -10},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result := double(tt.input)
if result != tt.expected {
t.Errorf("got %d, want %d", result, tt.expected)
}
})
}
```
**Test Helpers**: Use `t.Helper()` for helper functions
```go
func assertEqual(t *testing.T, got, want any) {
t.Helper()
if got != want {
t.Errorf("got %v, want %v", got, want)
}
}
```
### Security Practices
**Input Validation**: Validate all external input
- Check bounds, formats, and types
- Reject invalid input early
**SQL Injection**: Use parameterized queries
```go
rows, err := db.Query("SELECT * FROM users WHERE id = ?", userID)
```
**Context Timeouts**: Always set timeouts
```go
ctx, cancel := context.WithTimeout(ctx, 30*time.Second)
defer cancel()
```
## Comprehensive Documentation
**Authoritative Index**: [docs/explanation/software-engineering/programming-languages/golang/README.md](../../../docs/explanation/software-engineering/programming-languages/golang/README.md)
### Mandatory Standards (All Go Code MUST Follow)
1. **[Coding Standards](../../../docs/explanation/software-engineering/programming-languages/golang/coding-standards.md)** - Naming conventions, package organization, Effective Go idioms
2. **[Testing Standards](../../../docs/explanation/software-engineering/programming-languages/golang/testing-standards.md)** - Table-driven tests, testify, gomock, TestContainers, Godog
3. **[Code Quality Standards](../../../docs/explanation/software-engineering/programming-languages/golang/code-quality-standards.md)** - golangci-lint, gofmt, staticcheck, go vet
4. **[Build Configuration](../../../docs/explanation/software-engineering/programming-languages/golang/build-configuration.md)** - go.mod structure, Makefile patterns, CI/CD integration
### Context-Specific Standards (Apply When Relevant)
1. **[Error Handling Standards](../../../docs/explanation/software-engineering/programming-languages/golang/error-handling-standards.md)** - Error wrapping, sentinel errors, custom error types
2. **[Concurrency Standards](../../../docs/explanation/software-engineering/programming-languages/golang/concurrency-standards.md)** - Goroutines, channels, context, race detection
3. **[Type Safety Standards](../../../docs/explanation/software-engineering/programming-languages/golang/type-safety-standards.md)** - Generics, type parameters, constraints, type assertions
4. **[Performance Standards](../../../docs/explanation/software-engineering/programming-languages/golang/performance-standards.md)** - Profiling with pprof, benchmarking, memory optimization
5. **[Security Standards](../../../docs/explanation/software-engineering/programming-languages/golang/security-standards.md)** - Input validation, injection prevention, crypto practices
6. **[API Standards](../../../docs/explanation/software-engineering/programming-languages/golang/api-standards.md)** - REST conventions, HTTP routing, middleware patterns
7. **[DDD Standards](../../../docs/explanation/software-engineering/programming-languages/golang/ddd-standards.md)** - Domain-Driven Design tactical patterns without classes
8. **[Dependency Standards](../../../docs/explanation/software-engineering/programming-languages/golang/dependency-standards.md)** - Go modules, version selection, replace directives
9. **[Design Patterns](../../../docs/explanation/software-engineering/programming-languages/golang/design-patterns.md)** - Common Go patterns (functional options, interface design)
## Test-Driven Development
TDD is required for all Go code changes. Write the failing test first using Go `testing` (or a
Godog step definition consuming a Gherkin scenario from `specs/apps/<app-name>/`), confirm it fails
for the right reason, implement the minimum code to pass, then refactor. For Go CLI projects the
primary levels are unit (Go `testing` + Godog, mocked I/O via package-level function vars) and
integration (Godog `//go:build integration` + real `/tmp` filesystem). Property-based testing via
gopter covers invariants over generated inputs.
**Canonical reference**:
[Test-Driven Development Convention](../../../repo-governance/development/workflow/test-driven-development.md)
## Related Skills
- docs-applying-content-quality
- repo-practicing-trunk-based-development
## References
- [Go README](../../../docs/explanation/software-engineering/programming-languages/golang/README.md)
- [Functional Programming](../../../repo-governance/development/pattern/functional-programming.md)Related Skills
swe-programming-typescript
TypeScript coding standards from authoritative docs/explanation/software-engineering/programming-languages/typescript/ documentation
swe-programming-rust
Rust coding standards from authoritative docs/explanation/software-engineering/programming-languages/rust/ documentation
swe-programming-fsharp
F# coding standards from authoritative docs/explanation/software-engineering/programming-languages/f-sharp/ documentation
swe-programming-csharp
C# coding standards from authoritative docs/explanation/software-engineering/programming-languages/c-sharp/ documentation
nx-workspace
Explore and understand Nx workspaces. USE WHEN answering questions about the workspace, projects, or tasks. ALSO USE WHEN an nx command fails or you need to check available targets/configuration before running a task. EXAMPLES: 'What projects are in this workspace?', 'How is project X configured?', 'What depends on library Y?', 'What targets can I run?', 'Cannot find configuration for task', 'debug nx task failure'.
nx-run-tasks
Helps with running tasks in an Nx workspace. USE WHEN the user wants to execute build, test, lint, serve, or run any other tasks defined in the workspace.
nx-plugins
Find and add Nx plugins. USE WHEN user wants to discover available plugins, install a new plugin, or add support for a specific framework or technology to the workspace.
nx-import
Import, merge, or combine repositories into an Nx workspace using nx import. USE WHEN the user asks to adopt Nx across repos, move projects into a monorepo, or bring code/history from another repository.
nx-generate
Generate code using nx generators. INVOKE IMMEDIATELY when user mentions scaffolding, setup, structure, creating apps/libs, or setting up project structure. Trigger words - scaffold, setup, create a ... app, create a ... lib, project structure, generate, add a new project. ALWAYS use this BEFORE calling nx_docs or exploring - this skill handles discovery internally.
monitor-ci
Monitor Nx Cloud CI pipeline and handle self-healing fixes. USE WHEN user says "monitor ci", "watch ci", "ci monitor", "watch ci for this branch", "track ci", "check ci status", wants to track CI status, or needs help with self-healing CI fixes. Prefer this skill over native CI provider tools (gh, glab, etc.) for CI monitoring — it integrates with Nx Cloud self-healing which those tools cannot access.
link-workspace-packages
Link workspace packages in monorepos (npm, yarn, pnpm, bun). USE WHEN: (1) you just created or generated new packages and need to wire up their dependencies, (2) user imports from a sibling package and needs to add it as a dependency, (3) you get resolution errors for workspace packages (@org/*) like "cannot find module", "failed to resolve import", "TS2307", or "cannot resolve". DO NOT patch around with tsconfig paths or manual package.json edits - use the package manager's workspace commands to fix actual linking.
swe-developing-frontend-ui
UI development skill covering design token usage, shadcn/ui + Radix composition patterns, accessibility requirements, anti-patterns catalog, and brand context for OrganicLever and OSE Platform. Auto-loads when working on TSX components, CSS, or UI design tasks.