Files
openclaw/src/agents/plugin-tool-delivery-defaults.ts

11 lines
322 B
TypeScript

import type { DeliveryContext } from "../utils/delivery-context.js";
import type { AnyAgentTool } from "./tools/common.js";
export function applyPluginToolDeliveryDefaults(params: {
tools: AnyAgentTool[];
deliveryContext?: DeliveryContext;
}): AnyAgentTool[] {
void params.deliveryContext;
return params.tools;
}