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: common/src/json-config/constants.ts
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,16 @@ export const CodebuffConfigSchema = z
84
84
.describe(
85
85
'Maximum number of turns agent will take before being forced to end'
86
86
),
87
+
baseAgent: z
88
+
.string()
89
+
.optional()
90
+
.describe('Specify default base agent'),
91
+
subagents: z
92
+
.array(z.string())
93
+
.optional()
94
+
.describe(
95
+
'Specify complete list of subagents for the base agent'
96
+
),
87
97
})
88
98
.describe(
89
99
`Defines the overall Codebuff configuration file (e.g., ${codebuffConfigFile}). This schema defines the top-level structure of the configuration. This schema can be found at https://www.codebuff.com/config`
0 commit comments