Server SDKs
Build AI agents, control calls, send messages, and more
Automatically advance to the next step without evaluating step criteria. Useful for steps that should always flow through sequentially.
Whether to skip to the next step automatically.
Step — Self for method chaining.
Step
1import { ContextBuilder } from '@signalwire/sdk';23const builder = new ContextBuilder();4const ctx = builder.addContext('default');5const preamble = ctx.addStep('preamble');6preamble.setText('Read the disclaimer to the caller.');7preamble.setSkipToNextStep(true);8ctx.addStep('main').setText('Help the caller with their request.');