Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add ApexIQ/skillsmith --skill go_expertgit clone --depth 1 https://github.com/ApexIQ/skillsmithWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/apexiq/skillsmith/go_expert)<a href="https://agentmods.dev/skills/apexiq/skillsmith/go_expert"><img src="https://agentmods.dev/badge/skills/apexiq/skillsmith/go_expert/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/apexiq/skillsmith/go_expert"><img src="https://agentmods.dev/badge/skills/apexiq/skillsmith/go_expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00038 | $0.02132 |
| Opus 5 | $0.00019 | $0.01066 |
| Sonnet 5 | $0.00008 | $0.00426 |
| Haiku 4.5 | $0.00004 | $0.00213 |
Grade A, and why
go-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 317 lines — stays where its author put it; the contents beside it link to each section on GitHub.
🔷 Go Expert — Production-Grade Go
Philosophy: Go is about simplicity and clarity. If your Go code is clever, it's wrong. Write boring, obvious code that any engineer can debug at 2 AM.
1. When to Use This Skill
- Writing new Go services or CLI tools
- Reviewing Go code for idioms and best practices
- Designing concurrent systems with goroutines
- Structuring Go projects for maintainability
- Writing effective Go tests and benchmarks
- Debugging Go-specific issues (goroutine leaks, race conditions)
2. Go Idioms
Error Handling — The Go Way
// GOOD: Check errors immediately, add context
user, err := db.GetUser(ctx, userID)
if err != nil {
return fmt.Errorf("get user %s: %w", userID, err)
}
// GOOD: Custom error types for programmatic handling
type NotFoundError struct {
Resource string
ID string
}
func (e *NotFoundError) Error() string {
return fmt.Sprintf("%s not found: %s", e.Resource, e.ID)
}
// Check error type
var nfe *NotFoundError
if errors.As(err, &nfe) {
http.Error(w, nfe.Error(), http.StatusNotFound)
return
}
// BAD: Ignoring errors
user, _ := db.GetUser(ctx, userID) // Bug waiting to happen
// BAD: Generic error without context
if err != nil {
return err // Which step failed? Nobody knows.
}
Interfaces — Accept Interfaces, Return Structs
// GOOD: Small, focused interface
type UserStore interface {
GetUser(ctx context.Context, id string) (*User, error)
CreateUser(ctx context.Context, u *User) error
}
// GOOD: Concrete struct that implements the interface
type PostgresUserStore struct {
db *sql.DB
}
func (s *PostgresUserStore) GetUser(ctx context.Context, id string) (*User, error) {
// Implementation
}
// GOOD: Function accepts interface
func NewUserService(store UserStore) *UserService {
return &UserService{store: store}
}
// BAD: Interface with 20 methods — too broad
type Repository interface {
GetUser(...) ...
CreateUser(...) ...
DeleteUser(...) ...
GetTeam(...) ...
// ... 16 more methods
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 317 lines · 38 tokens per session scan A 4cc2e2f6646c
go-expert is a skill published in the GitHub repository ApexIQ/skillsmith (5 stars, last pushed 5mo ago), licensed MIT. It adds 38 tokens to every session and 2,132 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
adept-contributing
How to contribute to the adeptability (adept) Go CLI — build, the required pre-PR gates, conventional commits, and where things live. Apply when changing adept's own source, opening a PR, or adding a harness.
adept-code-style
Go code style and conventions for the adept codebase — formatting, linters, error wrapping with sentinels, the composition-root/no-globals rule, and core invariants. Apply when writing or reviewing Go in this repo. (matches: /.go).
concurrency-patterns-go
Apply safe, idiomatic Go concurrency patterns with goroutines and channels. Use when the user works with goroutines, channels, sync primitives, context cancellation, worker pools, fan-in/fan-out, select statements, or asks about concurrent Go programming and avoiding race conditions.
error-handling-go
Implement robust Go error handling with wrapping, sentinel errors, and custom types. Use when the user handles errors in Go, creates custom error types, wraps errors with fmt.Errorf and %w, uses errors.Is/As, or asks about Go error best practices and error propagation strategies.
idiomatic-go
Write clean, idiomatic Go following community conventions and effective patterns. Use when the user writes Go code, designs packages, defines interfaces, uses struct embedding, writes receiver methods, organizes Go projects, or asks about Go best practices and conventions.
go
Use when writing, reviewing, testing, or shipping Go code and HTTP services: idioms, %w error wrapping, goroutine/context/errgroup concurrency, net/http 1.22 routing, log/slog, project layout, table-driven tests, Go hardening. NOT language-agnostic threat modeling (that is secure-coding), NOT Dockerfile/CI shipping…