What problem does it solve? LLM agents lose critical information when tool outputs bloat the context window, plans get summarized away, and sub-agents degrade information through message-passing chains. This Skill provides file-backed context patterns so agents persist, retrieve, and share context through the filesystem instead of the prompt. ## Core Features & Use Cases - Scratch Pad Offloading: Automatically detect tool outputs exceeding a token threshold, write them to timestamped scratch files, and return compact references with summaries. - Plan Persistence: Save structured multi-step agent plans as JSON on disk so agents can reload objectives and progress after context refreshes or summarization. - Sub-Agent Workspaces & Dynamic Skill Loading: Route sub-agent findings through per-agent file directories and load full skill definitions on demand instead of stuffing the system prompt. - Use Case: A research agent receives an 8000-token web search result; the ToolOutputHandler writes it to a scratch file and returns a ~100-token reference, which the agent later greps for specific details. ## Quick Start Ask the agent to offload any tool output over 2000 tokens to a scratch file and persist the current task plan to disk so it survives context refreshes.