Runs through a systematic checklist covering Go Wiki CodeReviewComments and Uber's style guide, organized by category: naming conventions, error handling, concurrency patterns, interface design, and the rest. It runs gofmt and go vet first to catch mechanical issues, then walks through your diff file by file, flagging problems with specific line references. The skill delegates language syntax to specialized skills and focuses on community standards like MixedCaps naming, error flow indentation, and avoiding premature interfaces. It's designed to run proactively before submitting PRs, not just when explicitly asked. Groups findings by severity using a consistent template, which helps separate must-fix issues from nits.
npx skills add https://github.com/cxuu/golang-skills --skill go-code-review