Create Files
createCreate up to 100 files at once, creating parent directories as needed. Supports overwrite or append mode for existing files, with confirmation prompts unless overwrite is set.
Instructions
Create one or more files (max 100), creating parent directories as needed. Pass files: [{ path, content }] — there is no single-path form. An existing file prompts the user to confirm the overwrite, so the call returns without writing anything until that confirmation comes back; set overwrite: true on an entry to replace it without the prompt. Set append: true on an entry to add to the end of an existing file (created if missing) instead of overwriting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| files | Yes | List of files to create (max 100); each entry requires path and content |