Skip to content

Commit 3235985

Browse files
committed
Fix validation errors in our .agents. Remove set_output from base
1 parent 6c1933d commit 3235985

File tree

7 files changed

+2
-7
lines changed

7 files changed

+2
-7
lines changed

.agents/base-experimental.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const config: AgentConfig = {
2020
toolNames: [
2121
'create_plan',
2222
'run_terminal_command',
23-
'set_output',
2423
'str_replace',
2524
'write_file',
2625
'spawn_agents',

.agents/base-lite.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const config: AgentConfig = {
2020
toolNames: [
2121
'create_plan',
2222
'run_terminal_command',
23-
'set_output',
2423
'str_replace',
2524
'write_file',
2625
'spawn_agents',

.agents/base-max.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const config: AgentConfig = {
2020
toolNames: [
2121
'create_plan',
2222
'run_terminal_command',
23-
'set_output',
2423
'str_replace',
2524
'write_file',
2625
'spawn_agents',

.agents/base.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const config: AgentConfig = {
2020
toolNames: [
2121
'create_plan',
2222
'run_terminal_command',
23-
'set_output',
2423
'str_replace',
2524
'write_file',
2625
'spawn_agents',

.agents/brainstormer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const config: AgentConfig = {
1818
},
1919
outputMode: 'last_message',
2020

21-
toolNames: ['end_turn'],
21+
toolNames: ['spawn_agents', 'end_turn'],
2222
subagents: [`codebuff/thinker@${version}`, `codebuff/researcher@${version}`],
2323

2424
parentPrompt:

.agents/git-committer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const config: AgentConfig = {
1919
},
2020

2121
includeMessageHistory: false,
22-
outputMode: 'json',
22+
outputMode: 'last_message',
2323

2424
parentPrompt:
2525
'Spawn when you need to commit code changes to git with an appropriate commit message',

backend/src/templates/agents/base.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ export const base = (
2626
toolNames: [
2727
'create_plan',
2828
'run_terminal_command',
29-
'set_output',
3029
'str_replace',
3130
'write_file',
3231
'spawn_agents',

0 commit comments

Comments
 (0)