Persona: 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.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiongolang-modernizeExecute the skills CLI command in your project's root directory to begin installation:
Fetches golang-modernize from samber/cc-skills-golang and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate golang-modernize. Access via /golang-modernize in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
1
total installs
1
this week
1.0K
GitHub stars
0
upvotes
Run in your terminal
1
installs
1
this week
1.0K
stars
Persona: 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:
/golang-modernize 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.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.
When invoked:
go.mod or go.work to determine the current Go version (go directive).modernize in the project root — this file contains previously ignored suggestions; do NOT re-suggest anything listed theregolangci-lint with the modernize linter if available/golang-modernize or in CI, scan and suggest across the entire codebase..modernize in the project root so it is not suggested again. Format: one line per ignored suggestion, with a short description..modernize file format# 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
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.
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.
For detailed before/after examples for each Go version (1.21–1.26) and general modernizations, see Go version modernizations.
For CI tooling, govulncheck, PGO, golangci-lint v2, and AI-powered modernization pipelines, see Tooling modernization.
| Deprecated | Replacement | Since |
|---|---|---|
math/rand |
math/rand/v2 |
Go 1.22 |
crypto/elliptic (most functions) |
crypto/ecdh |
Go 1.21 |
reflect.SliceHeader, StringHeader |
unsafe.Slice, unsafe.String |
Go 1.21 |
reflect.PtrTo |
reflect.PointerTo |
Go 1.22 |
runtime.GOROOT() |
go env GOROOT |
Go 1.24 |
runtime.SetFinalizer |
runtime.AddCleanup |
Go 1.24 |
crypto/cipher.NewOFB, NewCFB* |
AEAD modes or NewCTR |
Go 1.24 |
golang.org/x/crypto/sha3 |
crypto/sha3 |
Go 1.24 |
golang.org/x/crypto/hkdf |
crypto/hkdf |
Go 1.24 |
golang.org/x/crypto/pbkdf2 |
crypto/pbkdf2 |
Go 1.24 |
testing/synctest.Run |
testing/synctest.Test |
Go 1.25 |
crypto.EncryptPKCS1v15 |
OAEP encryption | Go 1.26 |
net/http/httputil.ReverseProxy.Director |
ReverseProxy.Rewrite |
Go 1.26 |
When modernizing a codebase, prioritize changes by impact:
math/rand with math/rand/v2 (Go 1.22+) — remove rand.Seed callsos.Root for user-supplied file paths (Go 1.24+) — prevents path traversalgovulncheck (Go 1.22+) — catch known vulnerabilitieserrors.Is/errors.As instead of direct comparison (Go 1.13+)interface{} with any (Go 1.18+)min/max builtins (Go 1.21+)range over int (Go 1.22+)slices and maps packages (Go 1.21+)cmp.Or for default values (Go 1.22+)sync.OnceValue/sync.OnceFunc (Go 1.21+)sync.WaitGroup.Go (Go 1.25+)t.Context() in tests (Go 1.24+)b.Loop() in benchmarks (Go 1.24+)slog from third-party loggers (Go 1.21+)sort.Slice with slices.SortFunc (Go 1.21+)strings.SplitSeq and iterator variants (Go 1.24+)go.mod tool directives (Go 1.24+)govulncheck to CI pipelineencoding/json/v2 for new code (Go 1.25+, experimental)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.
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
samber/cc-skills-golang
tomlord1122/tomtom-skill
jwynia/agent-skills
mindrally/skills
github/awesome-copilot
kostja94/marketing-skills
I recommend golang-modernize for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
golang-modernize reduced setup friction for our internal harness; good balance of opinion and flexibility.
Useful defaults in golang-modernize — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
golang-modernize is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
golang-modernize fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Keeps context tight: golang-modernize is the kind of skill you can hand to a new teammate without a long onboarding doc.
Registry listing for golang-modernize matched our evaluation — installs cleanly and behaves as described in the markdown.
We added golang-modernize from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in golang-modernize — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
golang-modernize reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 54