Skip to content

Commit 18e07ee

Browse files
igorcostaAutohand Evolve
andcommitted
Merge legacy multi file edit tool removal into main
Co-authored-by: Autohand Evolve <code-noreply@autohand.ai>
2 parents 3fb8c05 + 76fa185 commit 18e07ee

18 files changed

Lines changed: 30 additions & 47 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ Autohand Code CLI includes 40+ tools for autonomous coding:
297297

298298
### File Operations
299299

300-
`read_file`, `write_file`, `append_file`, `apply_patch`, `search`, `search_replace`, `semantic_search`, `list_tree`, `create_directory`, `delete_path`, `rename_path`, `copy_path`, `multi_file_edit`
300+
`read_file`, `write_file`, `append_file`, `apply_patch`, `search`, `search_replace`, `semantic_search`, `list_tree`, `create_directory`, `delete_path`, `rename_path`, `copy_path`
301301

302302
### Git Operations
303303

docs/agent-skills.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ Skills can specify which tools they need via the `allowed-tools` field. Availabl
182182
| `delete_path` | Delete files/directories |
183183
| `rename_path` | Rename/move files |
184184
| `copy_path` | Copy files/directories |
185-
| `multi_file_edit` | Edit multiple files atomically |
186185

187186
### Git Operations
188187

docs/cc-src-tool-gap-analysis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The main gaps versus `cc-src` are not basic file/shell tools. They are orchestra
3131
| cc-src tool/category | Autohand equivalent | Gap | Priority |
3232
| --- | --- | --- | --- |
3333
| `FILE_READ_TOOL_NAME` | `read_file` | Covered | Low |
34-
| `FILE_EDIT_TOOL_NAME` | `apply_patch`, `multi_file_edit` style edits via executor paths | Covered, but naming differs | Low |
34+
| `FILE_EDIT_TOOL_NAME` | `apply_patch` style edits via executor paths | Covered, but naming differs | Low |
3535
| `FILE_WRITE_TOOL_NAME` | `write_file`, `append_file` | Covered | Low |
3636
| `GLOB_TOOL_NAME` | `glob` | Covered | Low |
3737
| `GREP_TOOL_NAME` | `find`, `search`, `search_with_context` | Covered, and broader | Low |

docs/config-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ When you approve a file operation (edit, write, delete), it's automatically save
599599
"version": 1,
600600
"permissions": {
601601
"whitelist": [
602-
"multi_file_edit:src/components/Button.tsx",
602+
"apply_patch:src/components/Button.tsx",
603603
"write_file:package.json",
604604
"run_command:bun test"
605605
]
@@ -616,7 +616,7 @@ When you approve a file operation (edit, write, delete), it's automatically save
616616

617617
**Pattern format:**
618618

619-
- `tool_name:path` - For file operations (e.g., `multi_file_edit:src/file.ts`)
619+
- `tool_name:path` - For file operations (e.g., `apply_patch:src/file.ts`)
620620
- `tool_name:command args` - For commands (e.g., `run_command:npm test`)
621621

622622
### Viewing Permissions

docs/config-reference_es.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ Cuando apruebas una operación de archivo (editar, escribir, eliminar), se guard
492492
"version": 1,
493493
"permissions": {
494494
"whitelist": [
495-
"multi_file_edit:src/components/Button.tsx",
495+
"apply_patch:src/components/Button.tsx",
496496
"write_file:package.json",
497497
"run_command:bun test"
498498
]
@@ -509,7 +509,7 @@ Cuando apruebas una operación de archivo (editar, escribir, eliminar), se guard
509509

510510
**Formato de patrón:**
511511

512-
- `nombre_herramienta:ruta` - Para operaciones de archivo (ej. `multi_file_edit:src/file.ts`)
512+
- `nombre_herramienta:ruta` - Para operaciones de archivo (ej. `apply_patch:src/file.ts`)
513513
- `nombre_herramienta:comando args` - Para comandos (ej. `run_command:npm test`)
514514

515515
### Visualizando Permisos

docs/config-reference_hi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ export AUTOHAND_SKIP_UPDATE_CHECK=1
493493
"version": 1,
494494
"permissions": {
495495
"whitelist": [
496-
"multi_file_edit:src/components/Button.tsx",
496+
"apply_patch:src/components/Button.tsx",
497497
"write_file:package.json",
498498
"run_command:bun test"
499499
]
@@ -510,7 +510,7 @@ export AUTOHAND_SKIP_UPDATE_CHECK=1
510510

511511
**पैटर्न फॉर्मेट:**
512512

513-
- `tool_name:path` - फाइल ऑपरेशन के लिए (जैसे `multi_file_edit:src/file.ts`)
513+
- `tool_name:path` - फाइल ऑपरेशन के लिए (जैसे `apply_patch:src/file.ts`)
514514
- `tool_name:command args` - कमांड के लिए (जैसे `run_command:npm test`)
515515

516516
### अनुमतियां देखना

docs/config-reference_id.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ Ketika Anda menyetujui operasi file (edit, tulis, hapus), secara otomatis disimp
464464
"version": 1,
465465
"permissions": {
466466
"whitelist": [
467-
"multi_file_edit:src/components/Button.tsx",
467+
"apply_patch:src/components/Button.tsx",
468468
"write_file:package.json",
469469
"run_command:bun test"
470470
]
@@ -481,7 +481,7 @@ Ketika Anda menyetujui operasi file (edit, tulis, hapus), secara otomatis disimp
481481

482482
**Format pola:**
483483

484-
- `nama_tool:path` - Untuk operasi file (mis. `multi_file_edit:src/file.ts`)
484+
- `nama_tool:path` - Untuk operasi file (mis. `apply_patch:src/file.ts`)
485485
- `nama_tool:perintah args` - Untuk perintah (mis. `run_command:npm test`)
486486

487487
### Melihat Izin

docs/config-reference_ja.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ export AUTOHAND_SKIP_UPDATE_CHECK=1
506506
"version": 1,
507507
"permissions": {
508508
"whitelist": [
509-
"multi_file_edit:src/components/Button.tsx",
509+
"apply_patch:src/components/Button.tsx",
510510
"write_file:package.json",
511511
"run_command:bun test"
512512
]
@@ -523,7 +523,7 @@ export AUTOHAND_SKIP_UPDATE_CHECK=1
523523

524524
**パターン形式:**
525525

526-
- `tool_name:path` - ファイル操作用(例:`multi_file_edit:src/file.ts`
526+
- `tool_name:path` - ファイル操作用(例:`apply_patch:src/file.ts`
527527
- `tool_name:command args` - コマンド用(例:`run_command:npm test`
528528

529529
### 権限の表示

docs/config-reference_ko.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ export AUTOHAND_SKIP_UPDATE_CHECK=1
493493
"version": 1,
494494
"permissions": {
495495
"whitelist": [
496-
"multi_file_edit:src/components/Button.tsx",
496+
"apply_patch:src/components/Button.tsx",
497497
"write_file:package.json",
498498
"run_command:bun test"
499499
]
@@ -510,7 +510,7 @@ export AUTOHAND_SKIP_UPDATE_CHECK=1
510510

511511
**패턴 형식:**
512512

513-
- `도구_이름:경로` - 파일 작업용 (예: `multi_file_edit:src/file.ts`)
513+
- `도구_이름:경로` - 파일 작업용 (예: `apply_patch:src/file.ts`)
514514
- `도구_이름:명령 인수` - 명령어용 (예: `run_command:npm test`)
515515

516516
---

docs/config-reference_ptBR.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ Quando você aprova uma operação de arquivo (editar, escrever, excluir), ela
507507
"version": 1,
508508
"permissions": {
509509
"whitelist": [
510-
"multi_file_edit:src/components/Button.tsx",
510+
"apply_patch:src/components/Button.tsx",
511511
"write_file:package.json",
512512
"run_command:bun test"
513513
]
@@ -524,7 +524,7 @@ Quando você aprova uma operação de arquivo (editar, escrever, excluir), ela
524524

525525
**Formato do padrão:**
526526

527-
- `nome_ferramenta:caminho` - Para operações de arquivo (ex: `multi_file_edit:src/file.ts`)
527+
- `nome_ferramenta:caminho` - Para operações de arquivo (ex: `apply_patch:src/file.ts`)
528528
- `nome_ferramenta:comando args` - Para comandos (ex: `run_command:npm test`)
529529

530530
### Visualizando Permissões

0 commit comments

Comments
 (0)