multi_edit
Perform atomic batch file modifications with parallel processing, AI validation, and automatic rollback for enterprise multi-file editing operations.
Instructions
๐ ENHANCED Atomic batch operations - FileModificationManager orchestrator with parallel processing and smart AI routing. Enterprise-grade multi-file editing with NVIDIA cloud escalation for complex operations, AI validation, and automatic rollback.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_operations | Yes | ||
parallel_processing | No | ||
transaction_mode | No | all_or_nothing | |
validation_level | No | strict |
Input Schema (JSON Schema)
{
"properties": {
"file_operations": {
"items": {
"properties": {
"edits": {
"items": {
"properties": {
"description": {
"type": "string"
},
"find": {
"type": "string"
},
"replace": {
"type": "string"
}
},
"required": [
"find",
"replace"
],
"type": "object"
},
"type": "array"
},
"file_path": {
"type": "string"
}
},
"required": [
"file_path",
"edits"
],
"type": "object"
},
"type": "array"
},
"parallel_processing": {
"default": true,
"type": "boolean"
},
"transaction_mode": {
"default": "all_or_nothing",
"enum": [
"all_or_nothing",
"best_effort",
"dry_run"
],
"type": "string"
},
"validation_level": {
"default": "strict",
"enum": [
"strict",
"lenient",
"none"
],
"type": "string"
}
},
"required": [
"file_operations"
],
"type": "object"
}