What problem does it solve?
The filesystem-based context pattern dramatically reduces prompt window pollution by persisting large tool outputs, logs, and intermediate results to the disk and loading only relevant references on demand. This enables dynamic context discovery for long-running tasks and multi-turn workflows without overwhelming the model.
Core Features & Use Cases
- Scratch pad for tool outputs: offload large results to files and reference them in prompts.
- Plan persistence: save long-horizon plans to disk and re-read them after context refresh.
- Dynamic context discovery: selectively load context via file paths to minimize static prompt growth.
- Sub-agent/workspace coordination: share findings and state via the filesystem across agents.
- Dynamic skill loading: keep only skill references in memory and load content when needed.
- Terminal/log persistence: persist terminal outputs for targeted retrieval and auditing.
Quick Start
To start using this skill, create a scratch folder, offload a large tool output and reference it in your next prompt, then save and load a plan from scratch/current_plan.json to resume work after context refresh.