What problem does it solve? Enforcing coding guidelines across a large codebase manually is slow and inconsistent. This Skill autonomously fixes violations such as explicit boolean comparisons, deep nesting, poor naming, and oversized functions in strictly bounded micro-batches of 5-8 files. ## Core Features & Use Cases - Guideline Enforcement: Applies rules for implicit booleans, affirmative naming (isDefined, isValid), guard clauses, and mandatory blank-line spacing. - Go Error Handling Modernization: Replaces multi-value error tuples with appfault.Result[T] containers and pointer-safe receiver methods. - Atomic Workflow Discipline: Tracks modified files in a change inventory, runs targeted linters per batch, and produces a single consolidated commit pushed to remote. - Use Case: A team maintaining a Go monorepo needs to migrate legacy code to new naming and error-handling standards without breaking CI; the Skill processes files in small verified batches and commits atomically. ## Quick Start Ask the agent to run the coding guideline fix on the next batch of Go files in the target package and commit the results.