Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub devjarus/coding-agent --plugin coding-agentHow 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.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Share bugs, ideas, or general feedback.
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 run