Agent skill

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.

Nick44,414★ · +328/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill filesystem-context --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 13 KB
Bundled scripts: none
Path: skills/filesystem-context/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. When to Use
  2. Core Concepts
  3. Detailed Topics
  4. The Static vs Dynamic Context Trade-off
  5. Pattern 1: Filesystem as Scratch Pad
  6. Pattern 2: Plan Persistence
  7. Pattern 3: Sub-Agent Communication via Filesystem
  8. Pattern 4: Dynamic Skill Loading
  9. Pattern 5: Terminal and Log Persistence
  10. Pattern 6: Learning Through Self-Modification
  11. Filesystem Search Techniques
  12. Practical Guidance
  13. When to Use Filesystem Context
  14. File Organization
Commands it runs
grep -A 5 "error" terminals/1.txt
More from agentic-awesome-skills
All skills →
About this skill
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.

Keep going