go-concurrency
Installation
SKILL.md
Go Concurrency Skill
Master Go concurrency patterns for safe, efficient parallel programming.
Overview
Production-ready concurrency patterns including goroutines, channels, sync primitives, and common pitfalls to avoid.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| pattern | string | yes | - | Pattern: "worker-pool", "fan-out", "pipeline", "semaphore" |
| workers | int | no | runtime.NumCPU() | Number of concurrent workers |
| buffer_size | int | no | 0 | Channel buffer size |