You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,18 +36,22 @@ Or one of the above command can be ran to run the agent with multiple instructio
36
36
steps:
37
37
- name: name of the step
38
38
original: original instruction
39
-
work_dir: optionally work directory
39
+
work_dir: optional work directory
40
40
command: bash command to run
41
41
- name: name of other step
42
42
original: original instruction
43
-
condition: bash command to run and check the return code
43
+
condition: optional bash command to run and check the return code
44
44
instruction: instruction to run the agent
45
45
- name: name of other step
46
46
original: original instruction
47
47
ignore: true
48
48
notes: notes
49
49
```
50
50
51
+
step can have `files` set to a list of files to inclde in the instruction for the agent to consult.
52
+
53
+
step can have `commit_if_change` set to either `true` or a string to commit the changes. If set to true, the step name is used as the commit message. If set to a string, the string is used instead.
0 commit comments