disable aggressive config validation

This commit is contained in:
Dax Raad
2025-09-26 07:50:51 -04:00
parent 061877e275
commit 80305813f5

View File

@@ -60,7 +60,7 @@ export namespace Config {
]
for (const dir of directories) {
await assertValid(dir)
await assertValid(dir).catch(() => {})
result.command = mergeDeep(result.command ?? {}, await loadCommand(dir))
result.agent = mergeDeep(result.agent, await loadAgent(dir))
result.agent = mergeDeep(result.agent, await loadMode(dir))