software-engineering
Installation
SKILL.md
Software Engineering
Expert guidance for building robust, scalable, and maintainable software systems using industry-standard practices and architectural patterns.
Core Software Engineering Principles
SOLID Principles
Single Responsibility Principle (SRP)
Each class should have only one reason to change.
# Bad - Multiple responsibilities
class User:
def __init__(self, name):
self.name = name