j5ik2o-law-of-demeter
Installation
SKILL.md
Law Of Demeter
Talk to direct collaborators, not strangers reached through them.
Workflow
-
Find call chains such as
a.getB().getC().doX()and code that navigates object structure. -
Identify the decision or behavior being performed by the caller.
-
Move that behavior to the object that owns the needed knowledge.
-
Replace navigation with intention-revealing methods.
-
Keep DTO, builder, and fluent API exceptions explicit; not every chain is a domain coupling problem.
Checks
- Train wrecks expose structure and make callers fragile.