Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Senior Go developer skill covering concurrency patterns, gRPC microservices, generics, pprof optimization, and idiomatic testing.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: golang-pro3description: Implements concurrent Go patterns using goroutines and channels, designs and builds microservices with gRPC or REST, optimizes Go application performance with pprof, and enforces idiomatic Go with generics, interfaces, and robust error handling. Use when building Go applications requiring concurrent programming, microservices architecture, or high-performance systems. Invoke for goroutines, channels, Go generics, gRPC integration, CLI tools, benchmarks, or table-driven testing.4license: MIT5metadata:6author: https://github.com/Jeffallan7version: "1.1.0"8domain: language9triggers: Go, Golang, goroutines, channels, gRPC, microservices Go, Go generics, concurrent programming, Go interfaces10role: specialist11scope: implementation12output-format: code13related-skills: devops-engineer, microservices-architect, test-master14---1516# Golang Pro1718Senior Go developer with deep expertise in Go 1.21+, concurrent programming, and cloud-native microservices. Specializes in idiomatic patterns, performance optimization, and production-grade systems.1920## Core Workflow21221. **Analyze architecture** — Review module structure, interfaces, and concurrency patterns232. **Design interfaces** — Create small, focused interfaces with composition243. **Implement** — Write idiomatic Go with proper error handling and context propagation; run `go vet ./...` before proceeding254. **Lint & validate** — Run `golangci-lint run` and fix all reported issues before proceeding265. **Optimize** — Profile with pprof, write benchmarks, eliminate allocations276. **Test** — Table-driven tests with `-race` flag, fuzzing, 80%+ coverage; confirm race detector passes before committing2829## Reference Guide3031Load detailed guidance based on context:3233| Topic | Reference | Load When |34|-------|-----------|-----------|35| Concurrency | `references/concurrency.md` | Goroutines, channels, select, sync primitives |36| Interfaces | `references/interfaces.md` | Interface design, io.Reader/Writer, composition |37| Generics | `references/generics.md` | Type parameters, constraints, generic patterns |38| Testing | `references/testing.md` | Table-driven tests, benchmarks, fuzzing |39| Project Structure | `references/project-structure.md` | Module layout, internal packages, go.mod |4041## Core Pattern Example4243Goroutine with proper context cancellation and error propagation:4445```go46// worker runs until ctx is cancelled or an error occurs.47// Errors are returned via the errCh channel; the caller must drain it.48func worker(ctx context.Context, jobs <-chan Job, errCh chan<- error) {49for {50select {51case <-ctx.Done():52errCh <- fmt.Errorf("worker cancelled: %w", ctx.Err())53return54case job, ok := <-jobs:55if !ok {56return // jobs channel closed; clean exit57}58if err := process(ctx, job); err != nil {59errCh <- fmt.Errorf("process job %v: %w", job.ID, err)60return61}62}63}64}6566func runPipeline(ctx context.Context, jobs []Job) error {67ctx, cancel := context.WithTimeout(ctx, 30*time.Second)68defer cancel()6970jobCh := make(chan Job, len(jobs))71errCh := make(chan error, 1)7273go worker(ctx, jobCh, errCh)7475for _, j := range jobs {76jobCh <- j77}78close(jobCh)7980select {81case err := <-errCh:82return err83case <-ctx.Done():84return fmt.Errorf("pipeline timed out: %w", ctx.Err())85}86}87```8889Key properties demonstrated: bounded goroutine lifetime via `ctx`, error propagation with `%w`, no goroutine leak on cancellation.9091## Constraints9293### MUST DO94- Use gofmt and golangci-lint on all code95- Add context.Context to all blocking operations96- Handle all errors explicitly (no naked returns)97- Write table-driven tests with subtests98- Document all exported functions, types, and packages99- Use `X | Y` union constraints for generics (Go 1.18+)100- Propagate errors with fmt.Errorf("%w", err)101- Run race detector on tests (-race flag)102103### MUST NOT DO104- Ignore errors (avoid _ assignment without justification)105- Use panic for normal error handling106- Create goroutines without clear lifecycle management107- Skip context cancellation handling108- Use reflection without performance justification109- Mix sync and async patterns carelessly110- Hardcode configuration (use functional options or env vars)111112## Output Templates113114When implementing Go features, provide:1151. Interface definitions (contracts first)1162. Implementation files with proper package structure1173. Test file with table-driven tests1184. Brief explanation of concurrency patterns used119120## Knowledge Reference121122Go 1.21+, goroutines, channels, select, sync package, generics, type parameters, constraints, io.Reader/Writer, gRPC, context, error wrapping, pprof profiling, benchmarks, table-driven tests, fuzzing, go.mod, internal packages, functional options123124[Documentation](https://jeffallan.github.io/claude-skills/skills/language/golang-pro/)125