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-agentThis skill uses the workspace's default tool permissions.
Idiomatic, production-ready Go code following Effective Go. Prefers standard library, handles every error, writes table-driven tests.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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