Home / aiskillstore / marketplace · pending/samber/golang-structs-interfaces/SKILL.md · GitHub

golang-structs-interfaces skillA

This file is byte-identical to the first copy the registry indexed. Same content hash, same audit grade.

golang-structs-interfaces is agent-read markdown (skill) from aiskillstore/marketplace: Golang struct and interface design patterns — composition, embedding, type assertions, type switches, interface segregation, dependency injection via interfaces, struct field tags, and pointer vs value receivers. Use this skill when designing Go types, defining or implementing interfaces, embedding structs or interfaces, writing type assertions or type switches, adding struct field tags for JSON/YAML/DB serialization, or choosing between pointer and value receivers. Also use when the user asks a.

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

**Persona:** You are a Go type system designer. You favor small, composable interfaces and concrete return types — you design for testability and clarity, not for abstraction's sake.

> **Community default.** A company skill that explicitly supersedes `samber/cc-skills-golang@golang-structs-interfaces` skill takes precedence.

# Go Structs & Interfaces

## Interface Design Principles

### Keep Interfaces Small

> "The bigger the interface, the weaker the abstraction." — Go Proverbs

Interfaces SHOULD have 1-3 methods. Small interfaces are easier to implement, mock, and compose. If you need a larger contract, compose it from small interfaces:

→ See `samber/cc-skills-golang@golang-naming` skill for interface naming conventions (method + "-er" suffix, canonical names)

```go
type Reader interface {
    Read(p []byte) (n int, err error)
}

type Writer interface {
    Write(p []byte) (n int, err error)
}

// Composed from small interfaces
type ReadWriter interface {
    Reader
    Writer
}
```

Compose larger interfaces from smaller ones:

```go
type ReadWriteCloser interface {
    io.Reader
    io.Writer
    io.Closer
}
```

### Define Interfaces Where They're Consumed
…

Read the whole file at its exact version.

How to install

Latest version
mdr add aiskillstore/marketplace/golang-structs-interfaces@v1.2.1
Exact content
mdr add aiskillstore/marketplace/golang-structs-interfaces@sha256:0bc93e1e86c3cf24

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_e3tgtb3ztss5uavq.svg)](https://markdownregistry.com/a/art_e3tgtb3ztss5uavq)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
v1.2.1 latest2026-09-23 641ee2a 12,174 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (12174 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

aiskillstore/marketplace · 427 stars · license none · pushed 2026-09-24 · branch main

API

GET https://markdownregistry.com/api/v1/artifacts/art_e3tgtb3ztss5uavq
GET https://markdownregistry.com/api/v1/resolve?ref=aiskillstore/marketplace/golang-structs-interfaces
GET https://markdownregistry.com/api/v1/blob/0bc93e1e86c3cf24571205b6fdd773a23df1b34366e7f639a9530d6984117601

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from aiskillstore/marketplace

sitemapkit skill
aiskillstore/marketplace · pending/0nl1n1n/sitemapkit/SKILL.md · Discover and extract sitemaps from any website using SitemapKit. Use this skill whenever the user wants to find pages…
git:20260903.f89877a · audit A · 427 stars
angular-developer skill
aiskillstore/marketplace · pending/angular/angular-developer/SKILL.md · Generates Angular code and provides architectural guidance. Trigger when creating projects, components, services, or…
v1.0 · audit A · 427 stars
angular-new-app skill
aiskillstore/marketplace · pending/angular/angular-new-app/SKILL.md · Creates a new Angular app using the Angular CLI. This skill should be used whenever a user wants to create a new…
v1.0 · audit A · 427 stars
.cursorrules rules
aiskillstore/marketplace · pending/axelfreeman/marketing-mindset/.cursorrules
git:20260903.567c889 · audit A · 427 stars
AGENTS.md@pending/axelfreeman/marketing-mindset agents
aiskillstore/marketplace · pending/axelfreeman/marketing-mindset/AGENTS.md
git:20260903.567c889 · audit A · 427 stars
marketing-mindset skill
aiskillstore/marketplace · pending/axelfreeman/marketing-mindset/SKILL.md · Use when the user needs a professional marketer's operating mindset for any marketing, growth, or client-acquisition…
v0.1.0 · audit A · 427 stars
llms.txt@pending/axelfreeman/marketing-mindset llmstxt
aiskillstore/marketplace · pending/axelfreeman/marketing-mindset/llms.txt
git:20260903.567c889 · audit A · 427 stars
brand-voice-editor skill
aiskillstore/marketplace · pending/azeemkafridi/brand-voice-editor/SKILL.md · Edit social media content into a consistent brand voice while preserving facts and preparing it for BulkPublish…
git:20260902.2316198 · audit A · 427 stars
bulk-publish skill
aiskillstore/marketplace · pending/azeemkafridi/bulk-publish/SKILL.md · Upload media files (local or URL), manage media library, and batch-create posts via BulkPublish. Use when the user…
git:20260902.082a188 · audit A · 427 stars
campaign-performance-report skill
aiskillstore/marketplace · pending/azeemkafridi/campaign-performance-report/SKILL.md · Produce campaign performance reports from BulkPublish analytics with platform-aware metrics, caveats, and…
git:20260902.71e47fa · audit A · 427 stars
check-quota skill
aiskillstore/marketplace · pending/azeemkafridi/check-quota/SKILL.md · Check BulkPublish plan limits and current usage. Use when the user asks about their plan, limits, or remaining quota.
git:20260902.32a44bf · audit A · 427 stars
content-repurposing skill
aiskillstore/marketplace · pending/azeemkafridi/content-repurposing/SKILL.md · Repurpose a source article, newsletter, transcript, or announcement into a coordinated BulkPublish social content…
git:20260902.171842e · audit A · 427 stars

Every file in aiskillstore/marketplace

Other files named golang-structs-interfaces

golang-structs-interfaces skill
samber/cc-skills-golang · skills/golang-structs-interfaces/SKILL.md · Golang struct and interface design patterns — composition, embedding, type assertions, type switches, interface…
v1.2.1 · audit A · 3,326 stars
golang-structs-interfaces skill
omarluq/librecode · .librecode/skills/golang-structs-interfaces/SKILL.md · Golang struct and interface design patterns — composition, embedding, type assertions, type switches, interface…
v1.1.3 · audit A · 30 stars

Browse by kind, by grade A, or by owner.