What problem does it solve?
Identify and remove AI-generated noise in Go code, including redundant comments, verbose godoc, style drift from project conventions, trivially dead code, and unnecessary error wrapping. The result is cleaner, more idiomatic Go that stays aligned with gofmt standards.
Core Features & Use Cases
- Detect redundant comments that restate obvious behavior and clutter the codebase.
- Flag verbose or repetitive godoc on exported and unexported symbols where unnecessary.
- Identify style drift from the project's Go idioms, formatting, and import grouping.
- Surface dead code, unused imports, and over-wrapped errors to improve maintainability.
- Provide actionable cleanup guidance during AI-assisted code reviews or pre-merge hygiene passes.
Quick Start
Provide the Go source you want audited and I will surface noise patterns to remove.