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.
Instalación
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
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.