What problem does it solve? Large instruction files like CLAUDE.md are re-sent on every turn, inflating token costs and latency when no caching strategy is applied. This Skill provides a concrete layout and budgeting method to maximize cached static content and minimize per-turn recomputation. ## Core Features & Use Cases - Dynamic Boundary Placement: Explains the __SYSTEM_PROMPT_DYNAMIC_BOUNDARY__ marker and how to place stable rules above it and volatile context (git status, dates, memory) below it. - Token Budget Management: Enforces per-file limits (4K chars) and a total budget (12K chars) with a chars/4+1 token estimation formula. - Progressive Skill Loading: Loads only Level 1 skill content (~200 tokens) first, escalating to Level 2 only when needed. - Use Case: A team with a bloated CLAUDE.md restructures it so 70%+ of the system prompt sits in the cacheable static region, cutting prompt costs by roughly 60%. ## Quick Start Ask the AI to analyze your CLAUDE.md and reorganize it so static rules sit above the dynamic boundary for prompt cache optimization.