What problem does it solve?
This Skill addresses the limitations of fixed context windows by enabling agents to store, retrieve, and manage effectively unlimited context using the filesystem, preventing context bloat and enabling dynamic discovery of information.
Core Features & Use Cases
- Offload Large Outputs: Store massive tool outputs (e.g., search results, logs) to files, returning only a summary and reference to the context.
- Persistent Planning: Save agent plans to files, ensuring they remain accessible across long-running tasks even after context window resets.
- Dynamic Skill Loading: Load skill definitions from files on demand, keeping the static context lean and relevant.
- Sub-Agent Communication: Facilitate inter-agent communication by having agents write findings to shared filesystem locations.
- Use Case: An agent performing a complex web scraping task generates gigabytes of raw HTML. Instead of filling the context window, the agent writes the HTML to a file and includes a reference, allowing it to selectively retrieve specific data later using grep or file reading tools.
Quick Start
Use the filesystem-context skill to save a large tool output to a file and get a reference back.