go-errors

Installation
SKILL.md

Go Error Handling

Core Principle

Errors are values in Go. Handle them explicitly — don't hide them, don't panic for expected failures.

Error Interface

type error interface {
    Error() string
}

Creating Errors

Installs
3
GitHub Stars
3
First Seen
Feb 9, 2026
go-errors — peixotorms/odinlayer-skills