AgentsContextBuilderContextremoveStepCopy page|View as Markdown|Open in Claude|More actionsRemove a step from this context entirely. Parameters namestringRequiredName of the step to remove. Returns Context — Self for method chaining. Example 1import { ContextBuilder } from '@signalwire/sdk';23const builder = new ContextBuilder();4const ctx = builder.addContext('default');5ctx.addStep('greet').setText('Greet the caller.');6ctx.addStep('obsolete_step').setText('This step is no longer needed.');7ctx.addStep('farewell').setText('Thank the caller and say goodbye.');89ctx.removeStep('obsolete_step');