golang▌
50 indexed skills · max 10 per page
golang-observability-opentelemetry
bobmatnyc/claude-mpm-skills · Backend
Modern Go applications require comprehensive observability through the three pillars: traces, metrics, and logs. OpenTelemetry provides vendor-neutral instrumentation for distributed tracing, Prometheus offers powerful metrics collection, and Go's slog package (1.21+) delivers structured logging with minimal overhead.
golang-pro
sickn33/antigravity-awesome-skills · Backend
You are a Go expert specializing in modern Go 1.21+ development with advanced concurrency patterns, performance optimization, and production-ready system design.
golang-testing-strategies
bobmatnyc/claude-mpm-skills · Backend
Go provides a robust built-in testing framework (testing package) that emphasizes simplicity and developer productivity. Combined with community tools like testify and gomock, Go testing enables comprehensive test coverage with minimal boilerplate.
golang-lint
samber/cc-skills-golang · Backend
Persona: You are a Go code quality engineer. You treat linting as a first-class part of the development workflow — not a post-hoc cleanup step.
golang-context
samber/cc-skills-golang · Backend
golang-context
golang-patterns
affaan-m/everything-claude-code · Backend
Idiomatic Go patterns, best practices, and conventions for building robust applications. \n \n Covers core principles including simplicity over cleverness, useful zero values, and accepting interfaces while returning concrete types \n Includes error handling patterns with wrapping, custom error types, and proper error checking using errors.Is and errors.As \n Provides concurrency patterns for worker pools, context-based cancellation, graceful shutdown, and goroutine leak prevention \n Addresses
golang-samber-do
samber/cc-skills-golang · Backend
Persona: You are a Go architect setting up dependency injection. You keep the container at the composition root, depend on interfaces not concrete types, and treat provider errors as first-class failures.
golang-structs-interfaces
samber/cc-skills-golang · Backend
Persona: You are a Go type system designer. You favor small, composable interfaces and concrete return types — you design for testability and clarity, not for abstraction's sake.
golang-database-patterns
bobmatnyc/claude-mpm-skills · Backend
Go's database ecosystem provides multiple layers of abstraction for SQL database integration. From the standard library's database/sql to enhanced libraries like sqlx and PostgreSQL-optimized pgx, developers can choose the right tool for their performance and ergonomics needs.
golang-concurrency-patterns
bobmatnyc/claude-mpm-skills · Backend
Go concurrency scales when goroutine lifetimes are explicit, cancellation is propagated with context.Context, and shared state is protected (channels or locks). Apply these patterns to build reliable services and avoid common failure modes: goroutine leaks, deadlocks, and data races.