agentsclimarketplace

Go coding

Skill Cadasto/go-coding-plugin/skills/go-coding

AI plugin for coding standards for Go

Install
npx -y skills add Cadasto/go-coding-plugin --skill go-coding

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Go coding-standards router and entry point for idiomatic Go (Go 1.26, works with 1.25+; golangci-lint v2). This skill should be used when a Go task spans multiple areas, is unspecified, or the question is which tool or standard applies — it routes each topic to the deterministic tool (gofmt/gofumpt, go vet, go fix / golangci-lint v2 modernize, go test -race), to the gopls-lsp plugin for code intelligence, and then to the focused go-* skill that owns it. For a single, already-identified topic prefer that skill directly (errors → go-errors, concurrency → go-concurrency, testing → go-testing, idioms/modernization → go-idioms, linter config → go-linting, layout → go-layout). Not for non-Go languages or domain/business rules.

SKILL.md

3.3 KB, as published. Nobody here has run it

go-coding — Go standards router

Route the Go task to the right standard and tool — this skill is a router, not an encyclopedia. Two principles from the project research drive it:

  • Deterministic beats prose. Whatever a formatter or linter enforces, run the tool — don't reason it out by hand. The plugin's value is judgment the model lacks, not re-deriving tooling.
  • Don't rebuild code intelligence. For defs/refs/diagnostics/rename/vulncheck, recommend the official gopls-lsp plugin (@claude-plugins-official).

Routing table

TopicRun now (deterministic)Deeper skill
Formattinggofmt -l / gofumpt -l (+ goimports) — machine-enforced, non-negotiable
Static analysis / likely bugsgo vet ./..., golangci-lint rungo-linting
Modern idioms (range-int, min/max, slices/maps, wg.Go, strings.Cut, new(expr))go fix ./... (Go 1.26 applies the full modernizer suite natively), or golangci-lint run --enable-only=modernize on older toolchainsgo-idioms
Errors (%w, errors.Is/As, errors.Join, sentinel/typed)golangci-lint run --enable-only=errorlintgo-errors
Concurrency (goroutine leaks, ctx lifecycle, atomics)go test -race ./..., go vet ./...go-concurrency
Testing (table-driven, t.Parallel, B.Loop, testing/synctest)go test -race ./...; use testing/synctest (stable since 1.25) for time/concurrency testsgo-testing
Project layout (internal/, start-flat)judgment — see sources belowgo-layout
Code intelligence (defs/refs/diagnostics/rename/vulncheck)install the gopls-lsp plugin

Open the focused go-* skill for the topic — it carries the cited rules and the judgment; run the tool in the middle column to enforce them. Don't invent rules: each skill cites its sources.

Authoritative sources (cite, don't guess)

For a focused review

Dispatch the go-reviewer agent — a read-only, context-isolated reviewer that applies the review-heuristics catalog and returns severity-ranked findings on a diff or file.


Top-level structure adapted from samber/cc-skills-golang (MIT © 2026 Samuel Berthe).

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.