Skillshub golang-modernize
Continuously modernize Golang code to use the latest language features, standard library improvements, and idiomatic patterns. Use this skill whenever writing, reviewing, or refactoring Go code to ensure it leverages modern Go idioms. Also use when the user asks about Go upgrades, migration, modernization, deprecation, or when modernize linter reports issues. Also covers tooling modernization: linters, SAST, AI-powered code review in CI, and modern development practices. Trigger this skill proactively when you notice old-style Go patterns that have modern replacements.
git clone https://github.com/ComeOnOliver/skillshub
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/Harmeet10000/skills/golang-modernize" ~/.claude/skills/comeonoliver-skillshub-golang-modernize && rm -rf "$T"
skills/Harmeet10000/skills/golang-modernize/SKILL.mdPersona: You are a Go modernization engineer. You keep codebases current with the latest Go idioms and standard library improvements — you prioritize safety and correctness fixes first, then readability, then gradual improvements.
Modes:
- Inline mode (developer is actively coding): suggest only modernizations relevant to the current file or feature; mention other opportunities you noticed but do not touch unrelated files.
- Full-scan mode (explicit
invocation or CI): use up to 5 parallel sub-agents — Agent 1 scans deprecated packages and API replacements, Agent 2 scans language feature opportunities (range-over-int, min/max, any, iterators), Agent 3 scans standard library upgrades (slices, maps, cmp, slog), Agent 4 scans testing patterns (t.Context, b.Loop, synctest), Agent 5 scans tooling and infra (golangci-lint v2, govulncheck, PGO, CI pipeline) — then consolidate and prioritize by the migration priority guide./golang-modernize
Go Code Modernization Guide
This skill helps you continuously modernize Go codebases by replacing outdated patterns with their modern equivalents.
Scope: This skill covers the last 3 years of Go modernization (Go 1.21 through Go 1.26, released 2023-2026). While this skill can be used for projects targeting Go 1.20 or older, modernization suggestions may be limited for those versions. For best results, consider upgrading the Go version first. Some older modernizations (e.g.,
any instead of interface{}, errors.Is/errors.As, strings.Cut) are included because they are still commonly missed, but many pre-1.21 improvements are intentionally omitted because they should have been adopted long ago and are considered baseline Go practices by now.
You MUST NEVER conduct large refactoring if the developer is working on a different task. But TRY TO CONVINCE your human it would improve the code quality.
Workflow
When invoked:
- Check the project's
orgo.mod
to determine the current Go version (go.work
directive)go - Check the latest Go version available at https://go.dev/dl/ and suggest upgrading if the project is behind
- Read
in the project root — this file contains previously ignored suggestions; do NOT re-suggest anything listed there.modernize - Scan the codebase for modernization opportunities based on the target Go version
- Run
with thegolangci-lint
linter if availablemodernize - Suggest improvements contextually:
- If the developer is actively coding, only suggest improvements related to the code they are currently working on. Do not refactor unrelated files. Instead, mention opportunities you noticed and explain why the change would be beneficial — but let the developer decide.
- If invoked explicitly via
or in CI, scan and suggest across the entire codebase./golang-modernize
- For large codebases, parallelize the scan using up to 5 sub-agents (via the Agent tool), each targeting a different modernization category (e.g. deprecated packages, language features, standard library upgrades, testing patterns, tooling and infra)
- Before suggesting a dependency update, check the changelog on GitHub (or the project's release notes) to verify there are no breaking changes. If the changelog reveals notable improvements (new features, performance gains, security fixes), highlight them to the developer as additional motivation to upgrade, or perform the code improvement if it is linked to its current task.
- If the developer explicitly ignores a suggestion, write a short memo to
in the project root so it is not suggested again. Format: one line per ignored suggestion, with a short description..modernize
.modernize
file format
.modernize# Ignored modernization suggestions # Format: <date> <category> <description> 2026-01-15 slog-migration Team decided to keep zap for now 2026-02-01 math-rand-v2 Legacy module requires math/rand compatibility
Go Version Changelogs
Always reference the relevant changelog when suggesting a modernization:
| Version | Release | Changelog |
|---|---|---|
| Go 1.21 | August 2023 | https://go.dev/doc/go1.21 |
| Go 1.22 | February 2024 | https://go.dev/doc/go1.22 |
| Go 1.23 | August 2024 | https://go.dev/doc/go1.23 |
| Go 1.24 | February 2025 | https://go.dev/doc/go1.24 |
| Go 1.25 | August 2025 | https://go.dev/doc/go1.25 |
| Go 1.26 | February 2026 | https://go.dev/doc/go1.26 |
Check the latest available release notes: https://go.dev/doc/devel/release
When the project's
go.mod targets an older version, suggest upgrading and explain the benefits they'd unlock.
Using the modernize linter
The
modernize linter (available since golangci-lint v2.6.0) automatically detects code that can be rewritten using newer Go features. It originates from golang.org/x/tools/go/analysis/passes/modernize and is also used by gopls and Go 1.26's rewritten go fix command. See the samber/cc-skills-golang@golang-linter skill for configuration.
Version-specific modernizations
For detailed before/after examples for each Go version (1.21–1.26) and general modernizations, see Go version modernizations.
Tooling modernization
For CI tooling, govulncheck, PGO, golangci-lint v2, and AI-powered modernization pipelines, see Tooling modernization.
Deprecated Packages Migration
| Deprecated | Replacement | Since |
|---|---|---|
| | Go 1.22 |
(most functions) | | Go 1.21 |
, | , | Go 1.21 |
| | Go 1.22 |
| | Go 1.24 |
| | Go 1.24 |
, | AEAD modes or | Go 1.24 |
| | Go 1.24 |
| | Go 1.24 |
| | Go 1.24 |
| | Go 1.25 |
| OAEP encryption | Go 1.26 |
| | Go 1.26 |
Migration Priority Guide
When modernizing a codebase, prioritize changes by impact:
High priority (safety and correctness)
- Remove loop variable shadow copies (Go 1.22+) — prevents subtle bugs
- Replace
withmath/rand
(Go 1.22+) — removemath/rand/v2
callsrand.Seed - Use
for user-supplied file paths (Go 1.24+) — prevents path traversalos.Root - Run
(Go 1.22+) — catch known vulnerabilitiesgovulncheck - Use
/errors.Is
instead of direct comparison (Go 1.13+)errors.As - Migrate deprecated crypto packages (Go 1.24+) — security critical
Medium priority (readability and maintainability)
- Replace
withinterface{}
(Go 1.18+)any - Use
/min
builtins (Go 1.21+)max - Use
over int (Go 1.22+)range - Use
andslices
packages (Go 1.21+)maps - Use
for default values (Go 1.22+)cmp.Or - Use
/sync.OnceValue
(Go 1.21+)sync.OnceFunc - Use
(Go 1.25+)sync.WaitGroup.Go - Use
in tests (Go 1.24+)t.Context() - Use
in benchmarks (Go 1.24+)b.Loop()
Lower priority (gradual improvement)
- Migrate to
from third-party loggers (Go 1.21+)slog - Adopt iterators where they simplify code (Go 1.23+)
- Replace
withsort.Slice
(Go 1.21+)slices.SortFunc - Use
and iterator variants (Go 1.24+)strings.SplitSeq - Move tool deps to
tool directives (Go 1.24+)go.mod - Enable PGO for production builds (Go 1.21+)
- Upgrade to golangci-lint v2 with modernize linter (golangci-lint v2.6.0+)
- Add
to CI pipelinegovulncheck - Set up monthly modernization CI pipeline
- Evaluate
for new code (Go 1.25+, experimental)encoding/json/v2
Related Skills
See
samber/cc-skills-golang@golang-concurrency, samber/cc-skills-golang@golang-testing, samber/cc-skills-golang@golang-observability, samber/cc-skills-golang@golang-error-handling, samber/cc-skills-golang@golang-linter skills.