write_file
Store content in a specified file by providing the path and content as input, enabling structured data storage for architectural decision records.
Instructions
Write content to a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content to write to the file | |
path | Yes | Path to the file to write |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content to write to the file",
"type": "string"
},
"path": {
"description": "Path to the file to write",
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}