Every piece of information you give Claude Code can be evaluated on three axes:
- 🟡 Recall — Likelihood Claude will load this information into context at all. Claude can't apply information it doesn't recall.
- 🔵 Attention — Likelihood Claude will skillfully apply the information once it's loaded. If Claude ignores information, it might as well not recall it.
- 🟢 Context Load — How much token budget this information consumes. Higher context load means higher cost, worse attention, slower speed.
No single tier of the hierarchy wins on all three dimensions. That's why you need the hierarchy rather than putting everything in one place.
The Hierarchy
| Tier | 🟡 Recall | 🔵 Attention | 🟢 Context Load |
|---|---|---|---|
| 🟥 Root CLAUDE.md | Highest — always loaded | Degrades with context size | High — always consuming tokens |
| 🟣 Sub-dir CLAUDE.md | High — loaded on file access | Higher — less noise than root | Medium — only when relevant |
| 🔷 Skills | Lower — but user can manually invoke | Highest — fresh, focused context | Lowest — on-demand only |
Loading Triggers
| Mechanism | When It's Loaded | Who Triggers It |
|---|---|---|
| 🟥 Root CLAUDE.md | Always | Automatic |
| 🟣 Sub-dir CLAUDE.md | Claude reads a file in that directory or below | Claude's file access |
| 🔷 Skill (claude-invoked) | Claude decides the skill is valuable based on its description | Claude's judgment |
| 🔷 Skill (user-invoked) | User runs a command (e.g., /review-work-before-submit) |
User |
Progressive Disclosure (Skills)
Skills can contain reference documents that are conditionally loaded into context, adding further efficiency within the most efficient tier:
Practical Decision Flow
When adding new information, ask:
CLAUDE.md Maintenance
When CLAUDE.md grows too large, audit each item: "Is this always needed?"
Sub-dir CLAUDE.md files are loaded less often, so are lower priority to optimize.
Skill Maintenance
When a skill grows too large, audit each item: "Always needed when this skill is invoked?"
Key Tradeoff Summary
| 🟡 Recall | 🔵 Attention | 🟢 Context Load | Design Effort | |
|---|---|---|---|---|
| 🟥 Root CLAUDE.md | Highest — always in context | Degrades with context size | High — always loaded | Low |
| 🟣 Sub-dir CLAUDE.md | High — loaded on file access | Higher — less noise | Medium | Low |
| 🔷 Skills | Lower — but user can manually invoke | Highest — fresh, focused | Lowest — on-demand | Highest |




Top comments (0)