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.
This commit is contained in:
YeonGyu-Kim
2026-02-04 11:38:24 +09:00
parent 737fac4345
commit 4330f25fee
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
export const ALLOWED_AGENTS = ["explore", "librarian", "metis", "momus"] as const
export const ALLOWED_AGENTS = ["explore", "librarian"] as const
export const CALL_OMO_AGENT_DESCRIPTION = `Spawn explore/librarian/metis/momus agent. run_in_background REQUIRED (true=async with task_id, false=sync).
export const CALL_OMO_AGENT_DESCRIPTION = `Spawn explore/librarian agent. run_in_background REQUIRED (true=async with task_id, false=sync).
Available: {agents}