append_file
Append text to an existing file in the workspace, returning the path and bytes added. Fails if the file is missing or the max size would be exceeded.
Instructions
Append text to an existing file inside the workspace.
Args: path: Path to an existing file, relative to the workspace root. content: Text to append.
Returns: The path and number of bytes appended. Fails if the file does not exist or if appending would exceed the max file size.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| content | Yes |