diff --git a/src/plugin/tool-registry.ts b/src/plugin/tool-registry.ts index 98fe73f3..041d3ef6 100644 --- a/src/plugin/tool-registry.ts +++ b/src/plugin/tool-registry.ts @@ -10,7 +10,6 @@ import { builtinTools, createBackgroundTools, createCallOmoAgent, - createAthenaCouncilTool, createSwitchAgentTool, createLookAt, createSkillMcpTool, @@ -51,11 +50,6 @@ export function createToolRegistry(args: { const backgroundTools = createBackgroundTools(managers.backgroundManager, ctx.client) const callOmoAgent = createCallOmoAgent(ctx, managers.backgroundManager, pluginConfig.disabled_agents ?? []) - const athenaCouncilConfig = pluginConfig.agents?.athena?.council - const athenaCouncilTool = createAthenaCouncilTool({ - backgroundManager: managers.backgroundManager, - councilConfig: athenaCouncilConfig, - }) const isMultimodalLookerEnabled = !(pluginConfig.disabled_agents ?? []).some( (agent) => agent.toLowerCase() === "multimodal-looker", @@ -133,7 +127,6 @@ export function createToolRegistry(args: { ...createSessionManagerTools(ctx), ...backgroundTools, call_omo_agent: callOmoAgent, - athena_council: athenaCouncilTool, switch_agent: createSwitchAgentTool({ client: ctx.client, }), diff --git a/src/shared/agent-tool-restrictions.ts b/src/shared/agent-tool-restrictions.ts index cfe58163..6c7e2257 100644 --- a/src/shared/agent-tool-restrictions.ts +++ b/src/shared/agent-tool-restrictions.ts @@ -56,7 +56,6 @@ const AGENT_RESTRICTIONS: Record> = { edit: false, task: false, call_omo_agent: false, - athena_council: false, }, } diff --git a/src/tools/index.ts b/src/tools/index.ts index 6c5f484c..5c85bc5d 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -36,7 +36,6 @@ import type { BackgroundManager } from "../features/background-agent" type OpencodeClient = PluginInput["client"] export { createCallOmoAgent } from "./call-omo-agent" -export { createAthenaCouncilTool } from "./athena-council" export { createLookAt } from "./look-at" export { createDelegateTask } from "./delegate-task" export { createSwitchAgentTool } from "./switch-agent"