code-refactoring-solid
Installation
SKILL.md
🏗️ Code Refactoring with SOLID Principles
When to use this skill
Use this skill when:
- Refactoring existing code to improve maintainability
- Code has grown complex and difficult to modify
- Adding new features requires changing multiple unrelated parts
- Unit testing is difficult due to tight coupling
- Code violates SOLID principles
- Planning architectural improvements
How to use it
🎯 SOLID Principles Overview
S - Single Responsibility Principle (SRP)
Definition: A class should have only one reason to change.