What problem does it solve?
This Skill prevents Claude Code sessions from slowing down and forgetting earlier context by teaching how to control token usage through MCP-first exploration, on-demand loading, isolation via subagents, and aggressive summarization.
Core Features & Use Cases
- MCP-first navigation: Use symbol lookup, public API inspection, and reference tracing to understand code cheaply before reading files.
- Lazy loading: Read only what you will modify or must verify, and avoid directory-wide or “just in case” exploration.
- Subagent context isolation: Offload verbose exploration and analysis to subagents so the main context stays clean.
- Summarize and discard: Convert explored details into compact summaries and keep those summaries instead of raw file contents.
- Token budget planning: Estimate costs per phase (understand, plan, implement, verify) to avoid running out of the 200k window mid-task.
Quick Start
Load the context-discipline Skill when your session starts feeling sluggish or you notice you are re-reading files because earlier details no longer seem to persist.