# Composition Over Construction
## The Core Insight
> "Design is about taking things apart."
Good design is not about adding features. It's about removing dependencies. It's about separating concerns so cleanly that each piece can be understood, tested, and changed independently.
## Taking Things Apart
When you see a complex system, the instinct is to understand how the pieces fit together. But the real skill is seeing how to *pull them apart*.
- What different concerns are mixed here?
- Which responsibilities could be separate?
- Where are we conflating different concepts?
Each separation reduces complexity. Each coupling increases it.
## Building from Simple Parts
Once you have simple, independent pieces:
- They compose freely
- They test trivially
- They change safely
Inheritance complects. Composition liberates.
A system built from small, focused functions that transform data is:
- Easier to understand (each piece does one thing)
- Easier to test (pure functions, clear inputs/outputs)
- Easier to change (modify one piece without touching others)
## The Anti-Pattern
The opposite of composition is the "god object" or "kitchen sink" - one thing that knows about everything, does everything, and can't be changed without breaking everything else.
Every helper method you add to a class is a small step toward the kitchen sink. Every layer of abstraction is a coupling waiting to cause pain.
## Practical Application
Before adding a method, wrapper, or abstraction:
- Does this *separate* concerns, or *combine* them?
- Am I making pieces more independent, or more coupled?
- Could I solve this with a function that takes data and returns data?
**Separate, don't combine. Compose, don't construct.**
## External References
- [Simple Made Easy](https://www.infoq.com/presentations/Simple-Made-Easy/) - Rich Hickey on complecting vs composing
- [Out of the Tar Pit](https://curtclifton.net/papers/MosesleyMarks06a.pdf) - Moseley & Marks on essential vs accidental complexity
- [A Philosophy of Software Design](https://www.amazon.com/dp/173210221X) - John Ousterhout on deep vs shallow modules
Source: claude-code-templates (MIT). See About Us for full credits.