Skip to content

Commit 4330f25

Browse files
committed
revert(call-omo-agent): remove metis/momus from ALLOWED_AGENTS
call_omo_agent is for lightweight exploration agents (explore, librarian). metis/momus are consultation agents that should be invoked via delegate_task. Reverts part of #1462 that incorrectly added metis/momus to call_omo_agent.
1 parent 737fac4 commit 4330f25

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/tools/call-omo-agent/constants.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
export const ALLOWED_AGENTS = ["explore", "librarian", "metis", "momus"] as const
1+
export const ALLOWED_AGENTS = ["explore", "librarian"] as const
22

3-
export const CALL_OMO_AGENT_DESCRIPTION = `Spawn explore/librarian/metis/momus agent. run_in_background REQUIRED (true=async with task_id, false=sync).
3+
export const CALL_OMO_AGENT_DESCRIPTION = `Spawn explore/librarian agent. run_in_background REQUIRED (true=async with task_id, false=sync).
44
55
Available: {agents}
66

src/tools/call-omo-agent/tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export function createCallOmoAgent(
4747
prompt: tool.schema.string().describe("The task for the agent to perform"),
4848
subagent_type: tool.schema
4949
.string()
50-
.describe("The type of specialized agent to use for this task (explore, librarian, metis, or momus)"),
50+
.describe("The type of specialized agent to use for this task (explore or librarian only)"),
5151
run_in_background: tool.schema
5252
.boolean()
5353
.describe("REQUIRED. true: run asynchronously (use background_output to get results), false: run synchronously and wait for completion"),

0 commit comments

Comments
 (0)