write_file
Write content to existing files while maintaining organizational policy compliance through automated validation of file operations against security standards and naming conventions.
Instructions
Write to an existing file (naming convention enforced on creation only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | File content | |
path | Yes | File path |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "File content",
"type": "string"
},
"path": {
"description": "File path",
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}