Files
oh-my-opencode/src/config/schema/sisyphus-agent.ts
T
Ryan Dielhenn 2b6a02ee97 nit
2026-03-28 09:37:13 -07:00

12 lines
361 B
TypeScript

import { z } from "zod"
export const SisyphusAgentConfigSchema = z.object({
disabled: z.boolean().optional(),
default_builder_enabled: z.boolean().optional(),
planner_enabled: z.boolean().optional(),
replace_plan: z.boolean().optional(),
tdd: z.boolean().default(true),
})
export type SisyphusAgentConfig = z.infer<typeof SisyphusAgentConfigSchema>