backup_and_edit
Create backups of files before making edits to ensure data safety and prevent loss during modification processes.
Instructions
Create backups of files before editing them
Input Schema
Name | Required | Description | Default |
---|---|---|---|
files | Yes | List of files to backup and edit | |
operation | Yes | The edit operation to perform |
Input Schema (JSON Schema)
{
"properties": {
"files": {
"description": "List of files to backup and edit",
"type": "array"
},
"operation": {
"description": "The edit operation to perform",
"type": "object"
}
},
"required": [
"files",
"operation"
],
"type": "object"
}