go-coding-standards

Installation
SKILL.md

Go Coding Standards

Idiomatic Go conventions grounded in Effective Go, Go Code Review Comments, and production-proven idioms. All code MUST pass goimports, golint, and go vet without errors.

1. Import Ordering

Group imports in this order, separated by blank lines:

import (
    // 1. Standard library
    "context"
    "fmt"
    "net/http"

    // 2. External packages
    "github.com/gorilla/mux"
    "log/slog"
Installs
72
GitHub Stars
59
First Seen
Mar 27, 2026
go-coding-standards — eduardo-sl/go-agent-skills