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