Solid
Skill vladcheck/skills/solid
Skills that are authored by me.
npx -y skills add vladcheck/skills --skill solidAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when you need to check if a class or family of classes follows S.O.L.I.D. principles
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
0.8 KB, as published. Nobody here has run it
Principles
S - Single-Responsibility Principle: A class should have only one reason to change O - Open-Closed Principle: Software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification L - Liskov's Substitution Principle: Derived or child classes must be able to replace their base or parent classes I - Interface Segregation Principle: Clients should not be forced to depend on methods that are irrelevant to them D - Dependency Inversion Principle: High-level modules should not depend on low-level modules. Both should depend on abstractions