cxuu/golang-skills
These skills were imported into SkillJury from the public skills ecosystem.
go-code-review
by cxuu/golang-skills
Based on Go Wiki CodeReviewComments . This checklist provides quick review points with references to detailed skills.
go-linting
by cxuu/golang-skills
Source details, install context, and public review data are available on the full page.
go-testing
by cxuu/golang-skills
Guidelines for writing clear, maintainable Go tests following Google's style.
go-documentation
by cxuu/golang-skills
This skill covers documentation conventions from Google's Go Style Guide.
go-naming
by cxuu/golang-skills
Normative : Core naming rules (MixedCaps, no underscores) are required per Google's canonical Go style guide. Advisory guidance provides best practices for clarity and maintainability.
go-concurrency
by cxuu/golang-skills
This skill covers concurrency patterns and best practices from Google's Go Style Guide and Uber's Go Style Guide, including goroutine management, channel usage, mutex handling, and synchronization.
go-error-handling
by cxuu/golang-skills
In Go, errors are values - they are created by code and consumed by code. This skill covers how to return, structure, wrap, and handle errors effectively.
go-performance
by cxuu/golang-skills
Source details, install context, and public review data are available on the full page.
go-style-core
by cxuu/golang-skills
Normative : This guidance is required per Google's canonical Go style guide.
go-interfaces
by cxuu/golang-skills
Go's interfaces enable flexible, decoupled designs through implicit satisfaction and composition. This skill covers interface fundamentals, type inspection, and Go's approach to composition over inheritance.
go-context
by cxuu/golang-skills
context.Context carries security credentials, tracing information, deadlines, and cancellation signals across API and process boundaries. Go programs pass contexts explicitly along the entire function call chain.
go-defensive
by cxuu/golang-skills
Source details, install context, and public review data are available on the full page.
go-functional-options
by cxuu/golang-skills
Source details, install context, and public review data are available on the full page.
go-data-structures
by cxuu/golang-skills
Source details, install context, and public review data are available on the full page.
go-control-flow
by cxuu/golang-skills
Source : Effective Go. Go's control structures are related to C but differ in important ways. Understanding these differences is essential for writing idiomatic Go code.
go-packages
by cxuu/golang-skills
This skill covers package organization and import management following Google's and Uber's Go style guides.