boy-scout-rule

Installation
SKILL.md

Boy Scout Rule

"Leave the campground cleaner than you found it."

Always leave code better than you found it. Make incremental improvements when you touch a file.

What to Improve

Code Quality:

  • Remove dead code (commented blocks, unused functions)
  • Fix linting issues in files you touch
  • Improve unclear naming (x, temp, data → descriptive)
  • Add type annotations (TypeScript/Elixir @spec)
  • Extract magic numbers to named constants
  • Simplify complex logic
  • Add missing error handling
  • Update outdated comments
Related skills
Installs
24
GitHub Stars
152
First Seen
Jan 22, 2026