Borrowing it
Nothing to install: this file belongs to hexxla/mosaic. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/hexxla/mosaic/main/.agents/skills/use-modern-go/SKILL.mdgit clone --depth 1 https://github.com/hexxla/mosaicWrote 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/hexxla/mosaic/use-modern-go)<a href="https://agentmods.dev/skills/hexxla/mosaic/use-modern-go"><img src="https://agentmods.dev/badge/skills/hexxla/mosaic/use-modern-go/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/hexxla/mosaic/use-modern-go"><img src="https://agentmods.dev/badge/skills/hexxla/mosaic/use-modern-go.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.00034 | $0.02981 |
| Opus 5 | $0.00017 | $0.01491 |
| Sonnet 5 | $0.00007 | $0.00596 |
| Haiku 4.5 | $0.00003 | $0.00298 |
Grade A, and why
use-modern-go 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 11d 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 — 371 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Modern Go Guidelines
Detected Go Version
Run sh .agents/skills/use-modern-go/scripts/project-go-version.sh. Pass a
module directory when the task targets a nested module.
The script prints the module's go directive or unknown if it cannot find
one. Do not infer the target version from the installed toolchain.
How to Use This Skill
DO NOT search for go.mod files or try to detect the version yourself. Use ONLY the version shown above.
If version detected (not "unknown"):
- Say: "This project is using Go X.XX, so I'll stick to modern Go best practices and freely use language features up to and including this version. If you'd prefer a different target version, just let me know."
- Do NOT list features, do NOT ask for confirmation
If version is "unknown":
- Say: "Could not detect Go version in this repository"
- Use AskUserQuestion: "Which Go version should I target?" → [1.24] / [1.25] / [1.26] / [1.27]
When writing Go code, use ALL features from this document up to the target version:
- Prefer modern built-ins and packages (
slices,maps,cmp) over legacy patterns - Never use features from newer Go versions than the target
- Never use outdated patterns when a modern alternative is available
Features by Go Version
Go 1.0+
time.Since:time.Since(start)instead oftime.Now().Sub(start)
Go 1.8+
time.Until:time.Until(deadline)instead ofdeadline.Sub(time.Now())
Go 1.13+
errors.Is:errors.Is(err, target)instead oferr == target(works with wrapped errors)
Go 1.18+
any: Useanyinstead ofinterface{}bytes.Cut:before, after, found := bytes.Cut(b, sep)instead of Index+slicestrings.Cut:before, after, found := strings.Cut(s, sep)
Go 1.19+
fmt.Appendf:buf = fmt.Appendf(buf, "x=%d", x)instead of[]byte(fmt.Sprintf(...))atomic.Bool/atomic.Int64/atomic.Pointer[T]: Type-safe atomics instead ofatomic.StoreInt32
var flag atomic.Bool
flag.Store(true)
if flag.Load() { ... }
var ptr atomic.Pointer[Config]
ptr.Store(cfg)
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 11d ago First seen · 371 lines · 34 tokens per session scan A 7301c11fbc5e
use-modern-go is a skill published in the GitHub repository hexxla/mosaic (5 stars, last pushed 15d ago), licensed MIT. It adds 34 tokens to every session and 2,981 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
cli-to-go-migration
Reusable agent skill for migrating command-line interfaces from any programming language to Go.
golang-testing
Production-ready Golang tests — table-driven tests, testify suites and mocks, parallel tests, fuzzing, fixtures, goroutine leak detection with goleak, snapshot testing, code coverage, integration tests, idiomatic test naming. Use when writing or reviewing Go tests, choosing a testing approach, setting up Go test CI…
golang-benchmark
Golang benchmarking, profiling, and performance measurement. Use when writing, running, or comparing Go benchmarks, profiling hot paths with pprof, interpreting CPU/memory/trace profiles, analyzing results with benchstat, setting up CI benchmark regression detection, or investigating production performance with…
golang-modernize
Modernize Golang code to use recent language features, standard library improvements, and idiomatic patterns. Trigger proactively when writing or reviewing Go code and old-style patterns are detected, or when encountering a deprecation warning. Also use when the user explicitly asks for modernization, a Go version…
golang-samber-do
Dependency injection in Golang using samber/do — service containers, lifecycle management, scopes, health checks, graceful shutdown, and module organization. Apply when using or adopting samber/do, when the codebase imports github.com/samber/do or github.com/samber/do/v2, or when refactoring manual constructor…
golang-project-layout
Provides a guide for setting up Golang project layouts and workspaces. Use when starting a new Go project, organizing an existing codebase, setting up a monorepo with multiple packages, creating CLI tools with multiple main packages, deciding between cmd/internal/pkg directory conventions, or discussing package…