Go programming conventions, error handling, concurrency patterns, and tooling. Use when writing or editing .go files, working with go.mod, goroutines, channels, or Go interfaces.
Installation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Go programming conventions, error handling, concurrency patterns, and tooling. Use when writing or editing .go files, working with go.mod, goroutines, channels, or Go interfaces.
Go
Use gofmt formatting conventions.
Prefer explicit error handling over panics.
Use context.Context for cancellation and deadlines.
Avoid global mutable state; prefer dependency injection.
Interfaces should be small (1-3 methods) and defined at the call site.