# Principle Minimize Reader Load

> Reduce the layers a maintainer must trace and the mutable state they must remember while preserving boundaries that hide meaningful complexity.

- Skill: `njs14/principle-minimize-reader-load` (Agent Skill)
- Install (CLI): `npx skillmds@latest add njs14/principle-minimize-reader-load`
- Raw SKILL.md: https://api.skillmd.com/api/skills/njs14/principle-minimize-reader-load/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: njs14 (https://skillmd.com/u/njs14)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/njs14/principle-minimize-reader-load

---


# Reduce reader load

Treat the request text that activated this skill as the code path a maintainer must understand.

Apply [minimize reader load](../pkstack-principles/references/catalog.md#minimize-reader-load). Trace where
key values originate and change. Collapse layers that repeat the same interface, narrow mutable
state, and name invariants once at their boundary. Return the shorter reasoning path and any layer
kept because it compresses a real decision.

