fix(shared): add task_system resolver

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-04-03 17:07:30 +09:00
parent 83acafce48
commit 2ba2f8f5f7
3 changed files with 54 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
export interface TaskSystemConfig {
experimental?: {
task_system?: boolean
}
}
export function isTaskSystemEnabled(config: TaskSystemConfig): boolean {
return config.experimental?.task_system ?? false
}