error-handling

Installation
SKILL.md

Error Handling

Implement idiomatic Go error handling patterns.

Quick Start

Basic error handling:

result, err := doSomething()
if err != nil {
    return fmt.Errorf("do something: %w", err)
}

Sentinel error:

var ErrNotFound = errors.New("not found")
Installs
9
GitHub Stars
29
First Seen
Feb 4, 2026
error-handling — armanzeroeight/fastagent-plugins