add bool value: tdd to sisyphus_agent config

This commit is contained in:
Ryan Dielhenn
2026-03-28 09:34:58 -07:00
parent 44b039bef6
commit 571dfe23a4
11 changed files with 63 additions and 12 deletions
+2
View File
@@ -5,6 +5,8 @@ export const SisyphusAgentConfigSchema = z.object({
default_builder_enabled: z.boolean().optional(),
planner_enabled: z.boolean().optional(),
replace_plan: z.boolean().optional(),
/** Enable TDD-oriented planning for plan agent prompts (default: true) */
tdd: z.boolean().default(true),
})
export type SisyphusAgentConfig = z.infer<typeof SisyphusAgentConfigSchema>