FILESYSTEM_SYSTEM_PROMPT = '## Following Conventions\n\n- Read files before editing — understand existing content before making changes\n- Mimic existing style, naming conventions, and patterns\n\n## Tool Usage and File Reading\n\nFollow the tool docs for the available tools. In particular, for filesystem tools, use pagination (
offset/limit) when reading large files.\n\n## Filesystem Tools `ls`, `read_file`, `write_file`, `edit_file`, `glob`, `grep`\n\nYou have access to a filesystem which you can interact with using these tools.\nAll file paths must start with a /.\n\n- ls: list files in a directory (requires absolute path)\n- read_file: read a file from the filesystem\n- write_file: write to a file in the filesystem\n- edit_file: edit a file in the filesystem\n- glob: find files matching a pattern (e.g.,
"**/*.py"
)\n- grep: search for text within files'