What problem does it solve? Go linters handle formatting, but clarity rules like early returns, named boolean conditions, non-nil collections, and value-vs-pointer parameter choices require judgment. This Skill encodes those judgment-based style rules so AI agents write and review Go code that stays readable and idiomatic. ## Core Features & Use Cases - Style Rule Enforcement: Covers line breaking at semantic boundaries, var vs := intent signaling, non-nil slice/map initialization, named struct fields, early returns, switch over if-else chains, and options structs for long parameter lists. - Code Review Guidance: Supports parallelized style reviews across large codebases using up to 5 sub-agents, each covering an independent style concern. - Use Case: When asked to write a function with 10 parameters or deeply nested validation, the Skill overrides the literal request and produces an options struct with early returns instead, keeping the happy path at minimal indentation. ## Quick Start Review this Go file for style issues and rewrite any nested validation logic using early returns and named boolean conditions.