What problem does it solve? Codebases accumulate verbose, generated-sounding comments that restate function names, narrate reasoning history, or describe alternatives considered, making code harder to scan and maintain. ## Core Features & Use Cases - Comment Quality Rules: Applies five concrete rules — delete redundant comments, cap length at two lines, state what not the story, match sibling style, and never restate self-describing names. - Keep-or-Drop Test: Provides a single decision test — keep a comment only if removing it would make a maintainer guess wrong about something not visible in the code. - Use Case: When reviewing a diff in the dlthub-start CLI codebase (src/create_dlthub_workspace/**), use this Skill to flag comments that narrate tradeoffs or restate parameter names like stream=False, and rewrite them into one-line factual statements. ## Quick Start Review the comments and docstrings in my latest diff and rewrite or delete any that violate the comment style rules.