refactor-rename-for-clarity

Installation
SKILL.md

Refactor: Rename for Clarity

Improve code readability through better naming.

Naming Principles

1. Names Should Reveal Intent

// BAD: let d: Int
// GOOD: let elapsedDays: Int

2. Names Should Be Searchable

// BAD: if status == 1 { }
// GOOD: if status == .active { }
Installs
2
GitHub Stars
3
First Seen
Feb 26, 2026
refactor-rename-for-clarity — cantagestudio/cosmicatlaspacker