fix(config): revert task_system default to false to avoid breaking change

This commit is contained in:
YeonGyu-Kim
2026-04-01 18:20:05 -07:00
parent 51d9685571
commit 624a6becc7
4 changed files with 71 additions and 60 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ export function applyToolConfig(params: {
pluginConfig: OhMyOpenCodeConfig;
agentResult: Record<string, unknown>;
}): void {
const taskSystemEnabled = params.pluginConfig.experimental?.task_system ?? true
const taskSystemEnabled = params.pluginConfig.experimental?.task_system ?? false
const denyTodoTools = taskSystemEnabled
? { todowrite: "deny", todoread: "deny" }
: {}