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 agentmods add skills/fall-out-bug/sdp/go-modernnpx skills add fall-out-bug/sdp --skill go-moderngit clone --depth 1 https://github.com/fall-out-bug/sdpWrote 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/fall-out-bug/sdp/go-modern)<a href="https://agentmods.dev/skills/fall-out-bug/sdp/go-modern"><img src="https://agentmods.dev/badge/skills/fall-out-bug/sdp/go-modern.svg" alt="Measured on agentmods" 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 | $0.00022 | $0.00633 |
| Opus 5 | $0.00011 | $0.00316 |
| Sonnet 5 | $0.00004 | $0.00127 |
| Haiku 4.5 | $0.00002 | $0.00063 |
Grade A, and why
go-modern 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 5d 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 — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
@go-modern
Use this skill when editing or reviewing Go in sdp.
The repo targets modern Go. Prefer standard-library idioms that are already available in the checked-in Go version.
Core Rule
Before changing Go code:
- Detect the module Go version from
go.modorsdp-plugin/go.mod. - Use only language and stdlib features supported by that version.
- Prefer standard-library modernizations that reduce custom code without changing behavior.
Prefer These Patterns
slices.SortFuncoversort.Sliceslices.Containsover manual membership loopsmaps.Copyormaps.Cloneover manual copy loopsstrings.Cutoverstrings.SplitN(..., 2)orstrings.Indexplus slicingstrings.CutPrefixandstrings.CutSuffixoverHasPrefixorHasSuffixplus trimmin(...)andmax(...)over trivial compare-and-assign blocksanyoverinterface{}for parameters, locals, and variadics when behavior does not change
First-Wave Safe Changes
Use these freely in polish PRs when tests stay green:
- mechanical helper swaps (
Cut,CutPrefix,SortFunc,Contains,Copy,Clone) - removing tiny custom helpers now replaced by stdlib
- local
interface{}toanyupdates - comments or docs that replace outdated Go guidance such as
golint
Avoid In The First Pass
Do not batch risky modernizations into a style PR:
- context plumbing solely to replace
exec.Commandwithexec.CommandContext - wide JSON tag changes such as
omitemptytoomitzero - concurrency rewrites (
wg.Go, atomics, cancellation semantics) unless the feature already needs them - broad repo-wide
interface{}churn across public structs or serialized payloads
Review Checklist
When reviewing Go changes, ask:
- Is there a standard-library helper that makes this code shorter and clearer?
- Is the rewrite behavior-preserving and easy to verify?
- Is the new idiom supported by the module's Go version?
- Does the change remove custom parsing, sorting, or copying logic instead of adding abstraction?
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.
- 5d ago First seen · 72 lines · 22 tokens per session scan A 79ac2ef11961
go-modern is a skill published in the GitHub repository fall-out-bug/sdp (19 stars, last pushed 2mo ago), licensed MIT. It adds 22 tokens to every session and 633 once invoked, about $0.0001 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-30.
Other skills, from other repositories
telnyx-ai-assistants-go
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
ring:verifying-code
Verifying a Go project: runs every quality check (lint, vet, imports, format, docs, unit, integration, E2E) and returns a single MERGEREADY or NEEDSFIX verdict. Report-only: never fixes anything. Use for a quick pre-merge or pre-PR check outside a full dev-cycle. Skip when not a Go project, when you want a single…
typescript-best-practices
Enforces TypeScript best practices and modern patterns.
building-glamorous-tuis
Build terminal UIs with Charmbracelet (Bubble Tea, Lip Gloss, Gum). Use when: Go TUI, shell prompts/spinners, "make CLI prettier", adaptive layouts, async rendering, focus state machines, sparklines, heatmaps, kanban boards, SSH apps.
gosm
/gosm - Go Semi-Auto Orchestrator.
golang-testing
Go testing patterns including table-driven tests, subtests, benchmarks, fuzzing, and test coverage. Follows TDD methodology with idiomatic Go practices.