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()