go-concurrency
Installation
SKILL.md
Go Concurrency
Core Principle
"Do not communicate by sharing memory; instead, share memory by communicating."
Pass data ownership through channels. Only one goroutine accesses a value at a time — data races cannot occur by design.
Goroutines
// Launch with go keyword — lightweight, cheap to create
go list.Sort()