skills/smithery.ai/andrewhowdencom-go

andrewhowdencom-go

Installation
SKILL.md

Go

Follow Effective Go as the baseline.

Project Structure

We follow the standard layout. See Layout Reference for details.

  • cmd/: Main applications.
  • internal/: Private application logic.

Inlined Expertise: Common Patterns

1. Functional Options Pattern

Use for object construction with optional parameters.

type Server struct {
    timeout time.Duration
}
Installs
1
First Seen
Mar 3, 2026
andrewhowdencom-go from smithery.ai