From coding-agent
Go expertise — patterns for building HTTP servers, CLI tools, and concurrent systems using Go standard library and popular packages. Covers Go idioms, error handling, interfaces, and goroutine patterns.
How this skill is triggered — by the user, by Claude, or both
Slash command
/coding-agent:go-specialistThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Idiomatic, production-ready Go code following Effective Go. Prefers standard library, handles every error, writes table-driven tests.
Idiomatic, production-ready Go code following Effective Go. Prefers standard library, handles every error, writes table-driven tests.
net/http stdlib, chi, gorilla/mux, gin; middleware for logging, auth, panic recoverysync.WaitGroup, sync.Mutex, errgroup, context.Context always first paramfmt.Errorf("%w"), sentinel errors with errors.Is, typed with errors.Ast.Run, testing/httptest, testify, go test -racego.mod, golangci-lint, go vet, go generatecontext.Context as first parameter always%w for stack-friendly unwrappinglog/slog_go vet and golangci-lint clean with no warningsgo test -racego build ./... -> go test ./... -> go test -race ./...go vet ./... and golangci-lint runnpx claudepluginhub devjarus/coding-agent --plugin coding-agentGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.