Interface representing lifecycle callbacks for an agent tool. Provides hooks for pre- and post-execution, validation, and error handling.
onBeforeCall: (toolId: string, clientId: string, agentName: string, params: T) => Promise<void>
Optional callback triggered before the tool is executed. Useful for logging, pre-processing, or setup tasks.
onAfterCall: (toolId: string, clientId: string, agentName: string, params: T) => Promise<void>
Optional callback triggered after the tool is executed. Useful for cleanup, logging, or post-processing.
onValidate: (clientId: string, agentName: string, params: T) => Promise<boolean>
Optional callback triggered to validate tool parameters before execution. Allows custom validation logic specific to the tool.
onCallError: (toolId: string, clientId: string, agentName: string, params: T, error: Error) => Promise<void>
Optional callback triggered when the tool execution fails. Useful for error logging or recovery actions.