remove-ai-comments
Installation
SKILL.md
Remove "AI-Flavored" Comments
Purpose
This skill guides the removal of low-value comments often generated by AI coding assistants. These comments typically narrate the code structure, state the obvious, or use verbose "tutorial style" explanations that clutter professional codebases.
Identification Guide
Identify and remove comments that fall into these categories:
1. The "Narrator"
Comments that announce the start of a standard coding construct.
- Remove:
// Begin function - Remove:
// Loop through the array - Remove:
// Define variables - Remove:
// Initialize class - Remove:
// End of if statement