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.
Instalação
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
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.