Merge pull request #727 from code-yeongyu/feat/disable-call-omo-agent-default

feat(tools): disable call_omo_agent by default, enable via sisyphus_task
This commit is contained in:
YeonGyu-Kim
2026-01-13 11:26:27 +09:00
committed by GitHub
2 changed files with 1 additions and 2 deletions

View File

@@ -152,7 +152,6 @@ export class BackgroundManager {
system: input.skillContent,
tools: {
task: false,
call_omo_agent: false,
},
parts: [{ type: "text", text: input.prompt }],
},
@@ -313,7 +312,6 @@ export class BackgroundManager {
agent: existingTask.agent,
tools: {
task: false,
call_omo_agent: false,
},
parts: [{ type: "text", text: input.prompt }],
},

View File

@@ -282,6 +282,7 @@ export function createConfigHandler(deps: ConfigHandlerDeps) {
config.tools = {
...(config.tools as Record<string, unknown>),
"grep_app_*": false,
call_omo_agent: false,
};
if (agentResult.explore) {