conductorv2
Plugins/Utilities

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

ToolDescriptionApproval
fs_readRead file contents
fs_writeWrite content to a filerequired
fs_existsCheck if file or directory exists
fs_mkdirCreate a directoryrequired
fs_removeRemove a file or directoryrequired
fs_listList directory contents
fs_searchSearch files by name pattern
fs_grepSearch file contents
fs_statGet file metadata

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