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
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
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.