What problem does it solve? Context windows are limited while agent tasks often require more information than fits in a single window, causing token bloat, lost plans, and degraded attention over long conversations. ## Core Features & Use Cases - Tool Output Offloading: Write large tool outputs (web searches, database queries, logs) to scratch files and return summaries with file references instead of raw content. - Plan and State Persistence: Store plans, progress, and user preferences in structured files so agents can re-read objectives across long trajectories. - Dynamic Skill Loading and Sub-Agent Workspaces: Load skill files on demand and let sub-agents share findings through the filesystem instead of message passing. - Use Case: A web search returns 8000 tokens; the agent writes it to scratch/search_results_001.txt, keeps a 100-token summary in context, and greps the file later for specific details. ## Quick Start Use the filesystem-context skill to offload large tool outputs to scratch files and load context dynamically instead of keeping everything in the conversation window.