Host File Editing
Boundary
Use text_editor_remote only for file work on the machine where A0 CLI is running. These paths and files belong to the CLI host, not the Agent Zero server or Docker container.
If the task belongs inside Agent Zero's own runtime, use the normal server-side file tools instead.
Access Modes
- Read&Write: reads, writes, and patches may modify the CLI host. Keep changes narrow and intentional.
- Read only: inspect files only. If writes are blocked, tell the user to switch local file access to Read&Write with F3.
Editing Flow
- Start with
readwhen inspecting a file or preparing line-based edits. - Use
writeonly when replacing or creating the whole file is truly the right operation. - Prefer
patchwithold_textandnew_textfor simple exact replacements. - Use
patch_textfor context-anchored edits, especially after inserts/deletes or when line numbers may have shifted. - Use
patchwitheditsonly for small line-range edits based on the latest remote read. - If freshness-aware line patching rejects an edit as stale, reread the file and retry with updated ranges.
- Treat reads as bounded text previews (2,000 lines / 256 KiB). Follow
next_linefor another small slice; use the authenticated HTTP transfer path for complete large files and binary data. - Keep each write or patch payload within 256 KiB. Do not split a binary file into text-editor calls.
Patch Text Rules
- Exact replace requires
old_textto match one exact current span; use a longer span if it matches multiple places. patch_textsupports update hunks for one file.- Use one
@@ existing lineanchor, then+new lineentries for insertion. - For replacement, use
@@ before targetfollowed by-oldand+new, or use@@ old targetfollowed by the same replacement pair. - Do not repeat the same old line as both context and deletion in one hunk.
- Every non-header content line must begin with exactly one prefix: space for context,
+for additions, or-for removals. - Do not stack multiple
@@anchors for one insert.
Failure Handling
- If no CLI is connected, ask the user to connect A0 CLI to this Agent Zero instance.
- If writes are blocked, tell the user to switch local file access to Read&Write with F3.
- If a request times out or the CLI disconnects, summarize the failure and wait for reconnection.
- If the tool rejects binary or oversized content, use the CLI/Core HTTP upload/download path when the workflow exposes it; otherwise ask the user to attach or upload the file through A0 CLI.