A solid reference for Go concurrency primitives when you're wiring up goroutines, channels, and worker pools. It covers the standard patterns: managing goroutine lifecycles, using sync primitives, context for cancellation, and the usual pipeline architectures. The implementation playbook promises detailed examples, which is helpful when you're debugging race conditions or setting up graceful shutdown. It's scoped tightly to concurrency, so don't expect general Go advice. Useful if you're past the basics but still hitting the common pitfalls with channel deadlocks or leaky goroutines. The clarity around when not to use it is refreshing.
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill go-concurrency-patterns