Skip to content

Commit 9048b61

Browse files
authored
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
2 parents 70d604e + 4fe4fb1 commit 9048b61

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/features/background-agent/manager.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ export class BackgroundManager {
152152
system: input.skillContent,
153153
tools: {
154154
task: false,
155-
call_omo_agent: false,
156155
},
157156
parts: [{ type: "text", text: input.prompt }],
158157
},
@@ -313,7 +312,6 @@ export class BackgroundManager {
313312
agent: existingTask.agent,
314313
tools: {
315314
task: false,
316-
call_omo_agent: false,
317315
},
318316
parts: [{ type: "text", text: input.prompt }],
319317
},

src/plugin-handlers/config-handler.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ export function createConfigHandler(deps: ConfigHandlerDeps) {
282282
config.tools = {
283283
...(config.tools as Record<string, unknown>),
284284
"grep_app_*": false,
285+
call_omo_agent: false,
285286
};
286287

287288
if (agentResult.explore) {

0 commit comments

Comments
 (0)