create_file
Create new files while automatically enforcing organizational naming conventions by converting file paths to snake_case format.
Instructions
Create a new file (automatically applies snake_case naming convention)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | File content | |
path | Yes | Desired file path (will be normalized to snake_case) |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"default": "",
"description": "File content",
"type": "string"
},
"path": {
"description": "Desired file path (will be normalized to snake_case)",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}