What problem does it solve?
It reduces clutter and confusion from comments that repeat the code, go stale, or explain the wrong thing, while helping you add comments that genuinely improve maintainability.
Core Features & Use Cases
- Self-explanatory-first guidance: Prefer clearer names and refactoring over explanatory commentary.
- Correct comment selection: Add comments for WHY, not WHAT, focusing on business logic, non-obvious algorithms, regex intent, and API constraints/gotchas.
- Code review cleanup: Remove or rewrite redundant, outdated, or dead-code comments; convert low-value notes into high-value TODO/FIXME/HACK/SECURITY/PERF/BUG/REFACTOR-style annotations only when they add durable context.
- Annotation standards: Encourage actionable, time-proof tags (e.g., FIXME with clear intent, SECURITY with validation rationale) rather than decorative or changelog-style commentary.
Quick Start
Ask the AI to review the snippet and either remove redundant or outdated comments and add brief, WHY-focused comments only where needed.