Nymbo commited on
Commit
a80a671
·
verified ·
1 Parent(s): 63bb8fd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -2
README.md CHANGED
@@ -178,10 +178,22 @@ Root:
178
  - Defaults to `Nymbo-Tools/Filesystem` (or NYMBO_TOOLS_ROOT). Absolute paths disabled unless UNSAFE_ALLOW_ABS_PATHS=1.
179
 
180
  Actions:
181
- - list, read, write, append, mkdir, move, copy, delete, info, help
182
 
183
  Key fields:
184
- - path, content (write/append), dest_path (move/copy), recursive, show_hidden, max_entries, offset, max_chars, create_dirs, overwrite
 
 
 
 
 
 
 
 
 
 
 
 
185
 
186
  Output:
187
  - Human-readable listings or JSON-like error strings with code/message/hint.
 
178
  - Defaults to `Nymbo-Tools/Filesystem` (or NYMBO_TOOLS_ROOT). Absolute paths disabled unless UNSAFE_ALLOW_ABS_PATHS=1.
179
 
180
  Actions:
181
+ - list, read, write, append, edit, mkdir, move, copy, delete, info, help
182
 
183
  Key fields:
184
+ - path, content (write/append/edit), dest_path (move/copy), recursive, show_hidden, max_entries, offset, max_chars, create_dirs, overwrite
185
+
186
+ Edit format (SEARCH/REPLACE blocks):
187
+ ```
188
+ <<<<<<< SEARCH
189
+ [exact content to find]
190
+ =======
191
+ [new content to replace with]
192
+ >>>>>>> REPLACE
193
+ ```
194
+ - Multiple blocks can be included; each is applied in order
195
+ - Search text must match exactly (whitespace, indentation)
196
+ - Only the first occurrence of each search text is replaced
197
 
198
  Output:
199
  - Human-readable listings or JSON-like error strings with code/message/hint.