fix: allow custom skill config bag

Co-authored-by: VACInc <3279061+VACInc@users.noreply.github.com>
This commit is contained in:
Peter Steinberger
2026-01-20 15:56:52 +00:00
parent 74f382f732
commit 76698ed296
5 changed files with 54 additions and 1 deletions

View File

@@ -380,6 +380,7 @@ export const ClawdbotSchema = z
enabled: z.boolean().optional(),
apiKey: z.string().optional(),
env: z.record(z.string(), z.string()).optional(),
config: z.record(z.string(), z.unknown()).optional(),
})
.strict(),
)