refactor-comments-that-are-code-smells
Installation
SKILL.md
Refactor Comments That Are Code Smells
Detection
A comment is a code smell when it:
- Explains what the next code block does (
// Get authenticator...) - Is a numbered list (
// 1. Do this, // 2. Do that) - Explains complex logic that should be extracted
Refactoring
Primary: Split into Actions
Follow the action-pattern skill. Split methods into single-responsibility actions: