Skip to main content

reset

client.agentExecutionPhases.reset(data?: ResetAgentExecutionPhasesRequest): Promise<unknown>

Resets all agent execution phases to their default configuration.

Restores the built-in phase definitions, removing any custom phases and reverting modified ones to their original state.

Parameters

ParameterTypeRequiredDescription
dataResetAgentExecutionPhasesRequestNoOptional configuration for the reset operation

Returns

Promise<unknown> — A promise that resolves when the reset is complete

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.agentExecutionPhases.reset();
console.log(result);