filesystem-context
Use for file-based context management, dynamic context discovery, and reducing context window bloat. Offload context to files for just-in-time loading.
npx skills add sickn33/agentic-awesome-skills --skill filesystem-context --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Filesystem-Based Context Engineering The filesystem provides a single interface through which agents can flexibly store, retrieve, and update an effectively unlimited amount of context. This pattern addresses the fundamental constraint that context windows are limited while tasks often require more information than fits in a single window. The core insight is that files enable dynamic context discovery: agents pull relevant context on demand rather than carrying everything in the context window. This contrasts with static context, which is always included regardless of relevance. ## When to Use Activate this skill when: - Tool outputs are bloating the context window - Agents need to persist state across long trajectories - Sub-agents must share information without direct message passing - Tasks require more context than fits in the window - Building agents that learn and update their own instructions - Implementing scratch pads for intermediate results - Terminal outputs or logs need to be accessible to agents ## Core Concepts Context engineering can fail in four predictable ways. First, when the context an agent needs is not in the total available context. Second, when retrieved
- When to Use
- Core Concepts
- Detailed Topics
- The Static vs Dynamic Context Trade-off
- Pattern 1: Filesystem as Scratch Pad
- Pattern 2: Plan Persistence
- Pattern 3: Sub-Agent Communication via Filesystem
- Pattern 4: Dynamic Skill Loading
- Pattern 5: Terminal and Log Persistence
- Pattern 6: Learning Through Self-Modification
- Filesystem Search Techniques
- Practical Guidance
- When to Use Filesystem Context
- File Organization
grep -A 5 "error" terminals/1.txt
What does the filesystem-context skill do?
Use for file-based context management, dynamic context discovery, and reducing context window bloat. Offload context to files for just-in-time loading.
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill filesystem-context --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.