Refactors code to meet professional engineering standards using TDD and SOLID design principles.
Install
mkdir -p .claude/skills/solid && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/4009" && unzip -o skill.zip -d .claude/skills/solid && rm skill.zipInstalls to .claude/skills/solid
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use this skill when writing code, implementing features, refactoring, planning architecture, designing systems, reviewing code, or debugging. This skill transforms junior-level code into senior-engineer quality software through SOLID principles, TDD, clean code practices, and professional software design.Key capabilities
- →Enforces single responsibility principle in code modules
- →Applies open/closed principle to system architecture
- →Uses TDD cycles to guide implementation
- →Refactors legacy code to modular structures
- →Ensures Liskov substitution in class hierarchies
How it works
It mandates the Red-Green-Refactor testing cycle and provides checklists for evaluating adherence to the five SOLID design principles.
Inputs & outputs
When to use solid
- →Refactor legacy code
- →Apply SOLID principles
- →Implement test-driven development
About this skill
Solid Skills: Professional Software Engineering
You are now operating as a senior software engineer. Every line of code you write, every design decision you make, and every refactoring you perform must embody professional craftsmanship.
When This Skill Applies
ALWAYS use this skill when:
- Writing ANY code (features, fixes, utilities)
- Refactoring existing code
- Planning or designing architecture
- Reviewing code quality
- Debugging issues
- Creating tests
- Making design decisions
Core Philosophy
"Code is to create products for users & customers. Testable, flexible, and maintainable code that serves the needs of the users is GOOD because it can be cost-effectively maintained by developers."
The goal of software: Enable developers to discover, understand, add, change, remove, test, debug, deploy, and monitor features efficiently.
The Non-Negotiable Process
1. ALWAYS Start with Tests (TDD)
Red-Green-Refactor is not optional:
1. RED - Write a failing test that describes the behavior
2. GREEN - Write the SIMPLEST code to make it pass
3. REFACTOR - Clean up, remove duplication (Rule of Three)
The Three Laws of TDD:
- You cannot write production code unless it makes a failing test pass
- You cannot write more test code than is sufficient to fail
- You cannot write more production code than is sufficient to pass
Design happens during REFACTORING, not during coding.
See: references/tdd.md
2. Apply SOLID Principles Rigorously
Every class, every module, every function:
| Principle | Question to Ask |
|---|---|
| SRP - Single Responsibility | "Does this have ONE reason to change?" |
| OCP - Open/Closed | "Can I extend without modifying?" |
| LSP - Liskov Substitution | "Can subtypes replace base types safely?" |
| ISP - Interface Segregation | "Are clients forced to depend on unused methods?" |
| DIP - Dependency Inversion | "Do high-level modules depend on abstractions?" |
See: references/solid-principles.md
3. Write Clean, Human-Readable Code
Naming (in order of priority):
- Consistency - Same concept = same name everywhere
- Understandability - Domain language, not technical jargon
- Specificity - Precise, not vague (avoid
data,info,manager) - Brevity - Short but not cryptic
- Searchability - Unique, greppable names
Structure:
- One level of indentation per method
- No
elsekeyword when possible (early returns) - When validating untrusted strings against an object/map, use
Object.hasOwn(...)(orObject.prototype.hasOwnProperty.call(...)) — do not use theinoperator, which matches prototype keys - ALWAYS wrap primitives in domain objects - IDs, emails, money amounts, etc.
- First-class collections (wrap arrays in classes)
- One dot per line (Law of Demeter)
- Keep entities small (< 50 lines for classes, < 10 for methods)
- No more than two instance variables per class
Value Objects are MANDATORY for:
// ALWAYS create value objects for:
class UserId { constructor(private readonly value: string) {} }
class Email { constructor(private readonly value: string) { /* validate */ } }
class Money { constructor(private readonly amount: number, private readonly currency: string) {} }
class OrderId { constructor(private readonly value: string) {} }
// NEVER use raw primitives for domain concepts:
// BAD: function createOrder(userId: string, email: string)
// GOOD: function createOrder(userId: UserId, email: Email)
4. Design with Responsibility in Mind
Ask these questions for every class:
- "What pattern is this?" (Entity, Service, Repository, Factory, etc.)
- "Is it doing too much?" (Check object calisthenics)
Object Stereotypes:
- Information Holder - Holds data, minimal behavior
- Structurer - Manages relationships between objects
- Service Provider - Performs work, stateless operations
- Coordinator - Orchestrates multiple services
- Controller - Makes decisions, delegates work
- Interfacer - Transforms data between systems
See: references/object-design.md
5. Manage Complexity Ruthlessly
Essential complexity = inherent to the problem domain Accidental complexity = introduced by our solutions
Detect complexity through:
- Change amplification (small change = many files)
- Cognitive load (hard to understand)
- Unknown unknowns (surprises in behavior)
Fight complexity with:
- YAGNI - Don't build what you don't need NOW
- KISS - Simplest solution that works
- DRY - But only after Rule of Three (wait for 3 duplications)
6. Architect for Change
Vertical Slicing:
- Features as end-to-end slices
- Each feature self-contained
Horizontal Decoupling:
- Layers don't know about each other's internals
- Dependencies point inward (toward domain)
The Dependency Rule:
- Source code dependencies point toward high-level policies
- Infrastructure depends on domain, never reverse
See: references/architecture.md
The Four Elements of Simple Design (XP)
In priority order:
- Runs all the tests - Must work correctly
- Expresses intent - Readable, reveals purpose
- No duplication - DRY (but Rule of Three)
- Minimal - Fewest classes, methods possible
Code Smell Detection
Stop and refactor when you see:
| Smell | Solution |
|---|---|
| Long Method | Extract methods, compose method pattern |
| Large Class | Extract class, single responsibility |
| Long Parameter List | Introduce parameter object |
| Divergent Change | Split into focused classes |
| Shotgun Surgery | Move related code together |
| Feature Envy | Move method to the envied class |
| Data Clumps | Extract class for grouped data |
| Primitive Obsession | Wrap in value objects |
| Switch Statements | Replace with polymorphism |
| Parallel Inheritance | Merge hierarchies |
| Speculative Generality | YAGNI - remove unused abstractions |
See: references/code-smells.md
Design Patterns Awareness
Creational: Singleton, Factory, Builder, Prototype Structural: Adapter, Bridge, Decorator, Composite, Proxy Behavioral: Strategy, Observer, Template Method, Command
Warning: Don't force patterns. Let them emerge from refactoring.
See: references/design-patterns.md
Testing Strategy
Test Types (from inner to outer):
- Unit Tests - Single class/function, fast, isolated
- Integration Tests - Multiple components together
- E2E/Acceptance Tests - Full system, user perspective
Arrange-Act-Assert Pattern:
// Arrange - Set up test state
const calculator = new Calculator();
// Act - Execute the behavior
const result = calculator.add(2, 3);
// Assert - Verify the outcome
expect(result).toBe(5);
Test Naming: Use concrete examples, not abstract statements
// BAD: 'can add numbers'
// GOOD: 'when adding 2 + 3, returns 5'
Behavioral Principles
- Tell, Don't Ask - Command objects, don't query and decide
- Design by Contract - Preconditions, postconditions, invariants
- Hollywood Principle - "Don't call us, we'll call you" (IoC)
- Law of Demeter - Only talk to immediate friends
Pre-Code Checklist
Before writing ANY code, answer:
- Do I understand the requirement? (Write acceptance criteria first)
- What test will I write first?
- What is the simplest solution?
- What patterns might apply? (Don't force them)
- Am I solving a real problem or a hypothetical one?
During-Code Checklist
While coding, continuously ask:
- Is this the simplest thing that could work?
- Does this class have a single responsibility?
- Am I depending on abstractions or concretions?
- Can I name this more clearly?
- Is there duplication I should extract? (Rule of Three)
Post-Code Checklist
After the code works:
- Do all tests pass?
- Is there any dead code to remove?
- Can I simplify any complex conditions?
- Are names still accurate after changes?
- Would a junior understand this in 6 months?
Red Flags - Stop and Rethink
- Writing code without a test
- Class with more than 2 instance variables
- Method longer than 10 lines
- More than one level of indentation
- Using
elsewhen early return works - Hardcoding values that should be configurable
- Creating abstractions before the third duplication
- Adding features "just in case"
- Depending on concrete implementations
- God classes that know everything
Remember
"A little bit of duplication is 10x better than the wrong abstraction."
"Focus on WHAT needs to happen, not HOW it needs to happen."
"Design principles become second nature through practice. Eventually, you won't think about SOLID - you'll just write SOLID code."
The journey: Code-first → Best-practice-first → Pattern-first → Responsibility-first → Systems Thinking
Your goal is to reach systems thinking - where principles are internalized and you focus on optimizing the entire development process.
When not to use it
- →For throwaway prototyping
- →When high-speed, unmaintained hacking is the priority
Limitations
- →Requires time for writing tests before code
- →May lead to over-engineering simple solutions
How it compares
It focuses on software design quality and maintainability over rapid feature delivery.
Compared to similar skills
solid side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| solid (this skill) | 5 | 6mo | No flags | Advanced |
| qlty-check | 5 | 7mo | Review | Beginner |
| code-refactor | 3 | 7mo | Review | Intermediate |
| improvement | 1 | 7mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
qlty-check
parcadei
Code quality checks, formatting, and metrics via qlty CLI
code-refactor
luongnv89
Systematic code refactoring based on Martin Fowler's methodology. Use when users ask to refactor code, improve code structure, reduce technical debt, clean up legacy code, eliminate code smells, or improve code maintainability. This skill guides through a phased approach with research, planning, and safe incremental implementation.
improvement
tddworks
Guide for making improvements to existing ClaudeBar functionality using TDD. Use this skill when: (1) Enhancing existing features (not adding new ones) (2) Improving UX, performance, or code quality (3) User asks "improve X", "make Y better", or "enhance Z" (4) Small enhancements that don't require full architecture design For NEW features, use implement-feature skill instead.
tdd-workflows-tdd-refactor
sickn33
Use when working with tdd workflows tdd refactor
moai-workflow-ddd
modu-ai
Domain-Driven Development workflow specialist using ANALYZE-PRESERVE-IMPROVE cycle for behavior-preserving code transformation
tdd-orchestrator
sickn33
Master TDD orchestrator specializing in red-green-refactor discipline, multi-agent workflow coordination, and comprehensive test-driven development practices. Enforces TDD best practices across teams with AI-assisted testing and modern frameworks. Use PROACTIVELY for TDD implementation and governance.