What problem does it solve? AI-authored and PR-introduced Go code often ships with doc comments longer than the code itself, restating signatures, duplicating guidance, or recording expired facts. This Skill runs the full discover→classify→edit→verify loop so the output is a cleaned-up diff, not just an audit report. ## Core Features & Use Cases - Automated scanning: A Python scanner flags Go functions whose doc comment is as long as or longer than the body, with an adjustable ratio threshold. - Rule-based classification: Four redundancy classes (restates code, duplicated elsewhere, narrates the obvious, expired facts) plus load-bearing patterns that must be kept regardless of length. - End-to-end editing: Applies comment-only edits, sweeps unresolvable references, verifies with build/test/lint, and folds changes back via git fixup and autosquash. - Use Case: Before pushing a PR that introduced new Go files with verbose doc comments, run the scan, rule on each flagged comment, trim in place, and fold the result into the unpushed commit. ## Quick Start Scan the Go files my PR introduced, trim the redundant doc comments in place, and verify the build still passes.