Server SDKs
Build AI agents, control calls, send messages, and more
Check whether a skill with the given name is currently loaded.
Skill name to check.
boolean — true if the skill is loaded, false otherwise.
boolean
true
false
1import { AgentBase, DateTimeSkill } from '@signalwire/sdk';23const agent = new AgentBase({ name: 'assistant', route: '/assistant' });4await agent.addSkill(new DateTimeSkill());5console.log(agent.hasSkill('datetime')); // true6console.log(agent.hasSkill('web_search')); // false