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
commit 9048b616e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

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

View File

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