Agent Skills
› wukongrobot/wukongbot
› voice-call
voice-call
GitHub通过 Moltbot voice-call 插件发起或检查语音通话,支持 Twilio、Telnyx、Plivo 及 Mock 模式。提供 CLI 和 Agent 工具接口,用于执行拨号、继续通话、播报消息及查询状态等操作。
Trigger Scenarios
需要发起语音通话时
需要查询通话状态时
Install
npx skills add wukongrobot/wukongbot --skill voice-call -g -y
SKILL.md
Frontmatter
{
"name": "voice-call",
"metadata": {
"moltbot": {
"emoji": "📞",
"requires": {
"config": [
"plugins.entries.voice-call.enabled"
]
},
"skillKey": "voice-call"
}
},
"description": "Start voice calls via the Moltbot voice-call plugin."
}
Voice Call
Use the voice-call plugin to start or inspect calls (Twilio, Telnyx, Plivo, or mock).
CLI
moltbot voicecall call --to "+15555550123" --message "Hello from Moltbot"
moltbot voicecall status --call-id <id>
Tool
Use voice_call for agent-initiated calls.
Actions:
initiate_call(message, to?, mode?)continue_call(callId, message)speak_to_user(callId, message)end_call(callId)get_status(callId)
Notes:
- Requires the voice-call plugin to be enabled.
- Plugin config lives under
plugins.entries.voice-call.config. - Twilio config:
provider: "twilio"+twilio.accountSid/authToken+fromNumber. - Telnyx config:
provider: "telnyx"+telnyx.apiKey/connectionId+fromNumber. - Plivo config:
provider: "plivo"+plivo.authId/authToken+fromNumber. - Dev fallback:
provider: "mock"(no network).
Version History
- 2a72816 Current 2026-08-20 10:15


