What problem does it solve? Codebases accumulate noisy comments that restate the code, outdated file headers, and vague TODOs that no one can act on. This Skill enforces a disciplined standard so every comment that survives carries information the code itself cannot express. ## Core Features & Use Cases - Comment decision rule: A two-question test (is the fact absent from the code, and would it surprise a competent reader) decides whether a comment earns its line. - Content guidelines: Defines what passes (non-obvious constraints, external API quirks, traps, pointers to issues or specs), what to cut (restated code, section banners, change narration), and how to handle file headers, TODOs, and dead code. - Use Case: While editing a payment integration, you add a one-line comment noting that the vendor returns 200 with an empty body on rate limit, with a link to the tracking issue, instead of a five-line essay. ## Quick Start Review the comments in this file and remove or rewrite any that restate the code, then fix the TODOs to include an actionable reference.