askill
solid

solidSafety 95Repository

Apply SOLID principles to write flexible, maintainable, and testable code. Use when designing classes, interfaces, and module boundaries. Covers Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion with practical TypeScript examples and detection heuristics.

1 stars
1.2k downloads
Updated 2/20/2026

Package Files

Loading files...
SKILL.md

SOLID Principles

Five principles for building software that is easy to understand, extend, and maintain. They reduce coupling, increase cohesion, and make code testable.

When to Apply

Reference these principles when:

  • Designing new classes, modules, or interfaces
  • Refactoring code with too many responsibilities
  • Reviewing PRs for architectural concerns
  • Breaking apart god objects or fat interfaces
  • Deciding where to draw module boundaries
  • Making code more testable

Quick Reference

PrincipleOne-LinerRed Flag
SRPOne reason to change"This class handles X and Y and Z"
OCPAdd, don't modifyGrowing if/else or switch chains for types
LSPSubtypes are substitutableType-checking or special-casing in calling code
ISPSmall, focused interfacesEmpty method implementations or throw new Error("Not implemented")
DIPDepend on abstractionsnew ConcreteClass() inside business logic

See references/PRINCIPLES.md for detailed explanations and TypeScript examples.

Detection Checklist

Ask these questions for every class and module:

QuestionViolated Principle
Does this class have multiple reasons to change?SRP
Do I need to modify existing code to add a new variant?OCP
Does calling code need type-checks or special cases for subtypes?LSP
Are implementors forced to stub out unused methods?ISP
Does high-level logic directly instantiate infrastructure?DIP

Applying SOLID at Different Scales

ScaleSRPOCPLSPISPDIP
FunctionDoes one thingTakes abstractions as params
ClassOne reason to changeExtend via compositionSubtypes honor contractsImplements only what it usesConstructor injection
ModuleOne bounded contextPlugin architectureInterchangeable implementationsThin public APIDepends inward
ServiceSingle domainNew features = new servicesAPI contract stabilityMinimal API surfaceAbstractions at boundaries

Relationships Between Principles

  • SRP + ISP: Splitting responsibilities often means splitting interfaces too
  • OCP + DIP: Depending on abstractions is what makes extension without modification possible
  • LSP + OCP: If subtypes are substitutable, you can extend behavior by adding new subtypes
  • DIP + ISP: Small focused interfaces make dependency inversion practical

Common Anti-Patterns

Anti-PatternViolated PrinciplesFix
God class doing everythingSRPExtract focused classes
switch on type across codebaseOCP, LSPReplace with polymorphism
Subclass that throws "not supported"LSP, ISPRedesign hierarchy, split interface
Fat interface with 20 methodsISPSplit into role-based interfaces
Business logic importing DB driverDIPInject repository interface
Service creating its own dependenciesDIPConstructor injection

Best Practices

DO

  • Start with SRP — it's the foundation for all others
  • Use interfaces to define boundaries between components
  • Let violations emerge from real problems, then fix them
  • Prefer composition over inheritance for extending behavior
  • Keep interfaces small and role-specific
  • Inject dependencies through constructors

DON'T

  • Apply SOLID dogmatically to trivial code (a 5-line utility doesn't need an interface)
  • Create abstractions before you have at least two implementations
  • Confuse SRP with "single method" — it's about reasons to change, not size
  • Force Liskov compliance on classes that shouldn't be in the same hierarchy
  • Over-segregate interfaces into single-method fragments when a cohesive group makes sense

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

92/100Analyzed 2/25/2026

High-quality technical reference skill covering SOLID principles comprehensively. Well-structured with tables, checklists, and clear sections including when-to-apply guidance. Includes detection heuristics, anti-patterns, and best practices. Located in dedicated skills folder with appropriate metadata. Reference-style content is accurate and dense, making it highly valuable for reusable guidance across projects.

95
90
92
92
80

Metadata

Licenseunknown
Version-
Updated2/20/2026
Publisherfellipeutaka

Tags

api