Skip to main content

Envisioning is an emerging technology research institute and advisory.

LinkedInInstagramGitHub

2011 — 2026

research
  • Observatory
  • Newsletter
  • Methodology
  • Origins
  • Vocab
services
  • Signals Session
  • Bespoke Projects
  • Use Cases
  • Readinessfree
  • Signals
  • Free scan↗free
impact
  • ANBIMAFuture of Brazilian Capital Markets
  • IEEECharting the Energy Transition
  • Horizon 2045Future of Human and Planetary Security
  • WKOTechnology Scanning for Austria
solutions
  • Innovation
  • Strategy
  • Consultants
  • Foresight
  • Associations
  • Governments
resources
  • Partners
  • How We Work
  • Data Visualization
  • Multi-Model Method
  • FAQ
  • Security & Privacy
about
  • Manifesto
  • Community
  • Events
  • Support
  • Contact
  • Login
ResearchServicesSignalsAbout
ResearchServicesSignalsAbout
  1. Home
  2. Vocab
  3. Filesystem (AI Agent)

Filesystem (AI Agent)

The directory tree an agent reads, writes, and executes within — the default environment for coding agents.

Added: May 2, 2026
Back to Vocab

The filesystem is the tree of files and directories an AI agent reads from, writes to, and executes within — the default environment for a coding agent. It contains everything the agent works on: source code, build scripts, configuration files, AGENTS.md instruction files, and tool definitions. When a harness starts an agent "in your project," it is pointing the agent at a filesystem as its environment.

Agents interact with the filesystem exclusively through tool calls and tool results. A Read tool exposes file contents; Write and Edit tools modify files; Execute tools run scripts or commands. The filesystem is stateful in the traditional sense — changes persist across tool calls and remain visible to subsequent operations within the session.

The filesystem as an environment introduces scope risks. An agent with write access to a broad filesystem can modify or delete files beyond its intended scope. Conversely, an agent pointed at the wrong filesystem — a sandboxed subdirectory instead of the project root — will be unable to find or operate on the files it needs. Knowing which filesystem an agent is running against is a prerequisite for predicting what it can and cannot do.

Open questions include how to give agents reliable awareness of filesystem scope boundaries, and how to maintain filesystem-level hygiene as agent sessions accumulate temporary files, generated artifacts, and modified source files without creating state that poisons future sessions.