File System
Read, write, search, and manage files and directories.
zero-config9 tools
Works immediately. Restricted to working directory for safety.
The File System plugin gives your AI full access to the local filesystem. Read files, write content, search with grep patterns, list directories, and manage file metadata. Runs in a sandbox restricted to the working directory.
Setup
terminal
Zero-config. Sandboxed to working directory by default.Install
Built-in — no installation needed. Works immediately.
Tools
| Tool | Description | Inputs | Approval |
|---|---|---|---|
fs_read | Read file contents | path | — |
fs_write | Write content to a file | path, content | required |
fs_exists | Check if file or directory exists | path | — |
fs_mkdir | Create a directory | path | required |
fs_remove | Remove a file or directory | path | required |
fs_list | List directory contents | path, filter? | — |
fs_search | Search files by name pattern | directory, pattern | — |
fs_grep | Search file contents | pattern, path, extensions? | — |
fs_stat | Get file metadata | path | — |
Tools marked required will prompt the user for approval before execution. These are typically write, delete, or send operations.
Example Prompts
“Show me the contents of README.md”
fs_read“Create a new file called notes.txt”
fs_write“Find all TypeScript files in src/”
fs_search