go-strict

Installation
SKILL.md

Go Strict Standard

Rules extracted from 2 production Go services.

CRITICAL: Error Handling

GO-01: Always wrap errors with context

// BAD: no context, impossible to trace
if err != nil {
    return err
}

// GOOD: fmt.Errorf with %w for wrapping
store, err := createStore(path)
if err != nil {
    return nil, fmt.Errorf("create store: %w", err)
}
Installs
3
GitHub Stars
4
First Seen
Jun 12, 2026
go-strict — 0xmassi/claude-skills