edit_file

Edit a file based on provided instructions.

Arguments

NameTypeDescriptionRequired

path_to_file

string

The path to the file that needs editing, relative to the project root.

edit_prompt

string

Instructions on how to edit the file.

modify_with_diff

boolean

Whether to edit code with diff or with a full rewrite. Useful for additions, less so for deletions or complex refactors.

Returns

TypeDescription

string

The path to the edited file.

Example

- name: edit_file
  arguments:
    path_to_file: <relative-path-to-file>
    edit_prompt: <edit-instructions>
    modify_with_diff: <true/false>
  returns: <path-to-edited-file>

Last updated