What problem does it solve? LLM context windows are limited, and large tool outputs, long-running plans, and multi-agent communication quickly bloat or overflow the window. This Skill uses the filesystem as an overflow layer so agents store, retrieve, and update effectively unlimited context through files instead of message history. ## Core Features & Use Cases - Tool Output Offloading: Automatically write large tool outputs (over ~2000 tokens) to scratch files and return compact summaries with file references. - Plan Persistence: Save structured multi-step plans to disk so agents can re-read objectives and progress after context refreshes or summarization. - Sub-Agent Workspaces: Route sub-agent findings through isolated per-agent directories instead of lossy message-passing chains. - Use Case: A web search returns 8000 tokens of results. The Skill writes them to scratch/search_results_001.txt, returns a 100-token summary with the file path, and the agent greps the file later only when specific details are needed. ## Quick Start Ask the agent to offload large tool outputs to scratch files and persist the current task plan to disk so it survives context window refreshes.