Ensures your Go packages follow Google's documentation standards with actual enforcement tools. Ships with a check script that flags missing doc comments on exported symbols, plus reference files covering everything from basic doc comment structure to runnable examples. The validation loop is smart: write code, add docs, run the checker, fix gaps. Honestly refreshing to have concrete rules on when to document context cancellation (only exceptions) versus cleanup (always). Includes templates and a lookup table for common decisions like whether to document that parameter or error return. Less guessing, more shipping documented code that doesn't over-explain the obvious.
npx skills add https://github.com/cxuu/golang-skills --skill go-documentation