go

Installation
SKILL.md

Critical Patterns

Error Handling (REQUIRED)

// ✅ ALWAYS: Explicit error handling
result, err := doSomething()
if err != nil {
    return fmt.Errorf("doSomething failed: %w", err)
}

// ❌ NEVER: Ignore errors
result, _ := doSomething()

Naming Conventions (REQUIRED)

// ✅ ALWAYS: Short, clear names
Related skills
Installs
5
GitHub Stars
1
First Seen
Jan 26, 2026