JetBrains / go-modern-guidelines
- пятница, 28 августа 2026 г. в 00:00:02
Help AI coding agents write modern Go
This repository contains guidelines for code agents that help them write modern Go code.
For example, an agent with these guidelines uses max(a, b) instead of an if-else block, slices.Contains instead of a manual loop, cmp.Or(a, b, c) instead of a chain of nil checks. It also knows about recent additions like new(42) to get a pointer to a value and errors.AsType[T](err) for type-safe error matching—both from Go 1.26.
The guidelines cover the most useful features from Go 1.0 through Go 1.27, including everything targeted by the modernize analyzer. An agent will:
go.modAll coding agents tend to generate outdated Go. Two reasons:
Training data lag. Models don't know about features added after their training cutoff. They can't use errors.AsType[T] (Go 1.26) if they've never seen it.
Frequency bias. Even for features the model knows, it often picks older patterns. There's more for i := 0; i < n; i++ in the training data than for i := range n, so that's what comes out.
These guidelines fix both problems by giving the agent an explicit reference.
This aligns with the Go team's direction. The modernize analyzer exists to automatically update existing code to use newer idioms (see this talk from the Go team). These guidelines serve the same goal for new code: agents write modern Go from the start, so there's less to fix later.
The marketplace integrations run a small CLI that is installed on first use with go install. Because of that, the Go toolchain must be installed and available on your PATH.
The CLI is installed into a local cache (for example ~/.cache/go-modern-guidelines) and never modifies your project. It targets Go 1.25 or newer; on an older Go it still works as long as automatic toolchain switching is enabled (GOTOOLCHAIN=auto, the default), which lets Go fetch a compatible toolchain on first run.
The guidelines are available for Junie, Claude Code, Codex, and Cursor, and for other agents via skills.sh.
Run the following commands inside a Junie CLI session.
/extensions marketplace add JetBrains/go-modern-guidelines
/extensions install modern-go-guidelines
Junie invokes the skill automatically when it is relevant to a Go task.
Update the installed extension from inside a Junie CLI session:
/extensions update modern-go-guidelines
Run the following commands inside a Claude Code session.
/plugin marketplace add JetBrains/go-modern-guidelines
/plugin install modern-go-guidelines@goland-claude-marketplace
Claude Code invokes the skill automatically when it is relevant to a Go task.
To invoke it explicitly:
/modern-go-guidelines:use-modern-go
Claude Code can update the marketplace and installed plugin automatically at startup. Automatic updates are disabled by default for third-party marketplaces, so enable them once:
/plugin.goland-claude-marketplace.When Claude Code reports that the plugin was updated, apply the new version to the current session with:
/reload-plugins
To update it manually instead, run these commands in a terminal:
claude plugin marketplace update goland-claude-marketplace
claude plugin update modern-go-guidelines@goland-claude-marketplaceRun the following commands in a terminal.
codex plugin marketplace add JetBrains/go-modern-guidelines
codex plugin add modern-go-guidelines@goland-codex-marketplace
Refresh the marketplace and reinstall the plugin so Codex replaces its cached copy:
codex plugin marketplace upgrade goland-codex-marketplace
codex plugin remove modern-go-guidelines@goland-codex-marketplace
codex plugin add modern-go-guidelines@goland-codex-marketplaceFor convenience, the guidelines are distributed as a Cursor plugin.
cursor-agent plugin marketplace add https://github.com/JetBrains/go-modern-guidelines
/plugins command inside a Cursor session.Refresh the marketplace from Git and reopen Cursor so it can pick up the new plugin version:
cursor-agent plugin marketplace update goland-cursor-marketplaceIf the installed plugin is still on the previous version, reinstall it with the /plugins command. Cursor does not currently provide a non-interactive CLI command for updating an installed plugin.
The same skill package works across other agents such as OpenCode. Install it with:
npx skills add JetBrains/go-modern-guidelines(--skill use-modern-go installs only this skill.)
Update the project-installed skill with:
npx skills update use-modern-go -p -yFor a globally installed skill, replace -p with -g.
To try changes to the CLI in your agent, build this checkout into the tool's cache:
make dev-installThen set GO_MODERN_GUIDELINES_DEV=1 in the environment your agent runs in. With it set, any agent using the plugin runs your local build instead of the released version, the same way across Claude Code, Codex, and Cursor. Export it before launching the agent so the agent process inherits it:
export GO_MODERN_GUIDELINES_DEV=1After editing the CLI, run make dev-install again to rebuild; the next call picks it up. To go back to the released version, unset the variable (or run make dev-uninstall to remove the build):
make dev-uninstallThis requires the Go toolchain. The dev build is stored in the tool's cache directory ($XDG_CACHE_HOME/go-modern-guidelines or ~/.cache/go-modern-guidelines).
The build is driven by scripts/dev-install.sh, which is intentionally separate from the agent-facing wrapper so an agent can never trigger a build. Without make (for example on Windows) you can run it directly:
sh scripts/dev-install.sh install # or: uninstall
pwsh scripts/dev-install.ps1 install # PowerShell equivalent