Server SDKs
Build AI agents, control calls, send messages, and more
Returns whether this skill instance has been marked as initialized via markInitialized(). Used internally to track skill lifecycle state.
markInitialized()
Takes no parameters.
boolean — true if the skill has been initialized, false otherwise.
boolean
true
false
1import { SkillBase } from '@signalwire/sdk';23// Check initialization state before performing an action4if (!mySkill.isInitialized()) {5 await mySkill.setup();6 mySkill.markInitialized();7}