write_file
Create or update files for revenue tracking and business management. Automatically creates backups and supports complex multi-location edits within allowed directories.
Instructions
Write or update entire file. Creates backup automatically. Use for complex multi-location edits or new files. Only works in allowed directories.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | File content to write | |
path | Yes | Full file path |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "File content to write",
"type": "string"
},
"path": {
"description": "Full file path",
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}