import { executeAcpListAgents } from "../../../../tools/acp/list-agents.js"; import type { ToolContext, ToolExecutionResult, } from "../../../../tools/types.js"; export async function run( input: Record, context: ToolContext, ): Promise { return executeAcpListAgents(input, context); }