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

if errors.Is(err, ErrNotFound) {
Related skills

More from armanzeroeight/fastagent-plugins

Installs
6
GitHub Stars
27
First Seen
Feb 4, 2026