go-concurrency

Installation
SKILL.md

Go Concurrency Patterns

Master Go's concurrency model with goroutines, channels, and synchronization for building efficient concurrent systems.

Core Patterns

Goroutines

func main() {
    go sayHello() // Launch goroutine

    time.Sleep(1 * time.Second) // Wait for goroutine
}

func sayHello() {
    fmt.Println("Hello from goroutine")
}
Installs
5
GitHub Stars
6
First Seen
Feb 21, 2026
go-concurrency — spjoshis/claude-code-plugins