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()
Installs
3
GitHub Stars
3
First Seen
Feb 9, 2026
go-concurrency — peixotorms/odinlayer-skills