plugins/_a0_connector/skills/host-file-editing/SKILL.md
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.
read when inspecting a file or preparing line-based edits.write only when replacing or creating the whole file is truly the right operation.patch with old_text and new_text for simple exact replacements.patch_text for context-anchored edits, especially after inserts/deletes or when line numbers may have shifted.patch with edits only for small line-range edits based on the latest remote read.old_text to match one exact current span; use a longer span if it matches multiple places.patch_text supports update hunks for one file.@@ existing line anchor, then +new line entries for insertion.@@ before target followed by -old and +new, or use @@ old target followed by the same replacement pair.+ for additions, or - for removals.@@ anchors for one insert.