Agent Skills
› the-open-agent/openagent
› voice-call
voice-call
GitHub通过OpenClaw插件发起和管理语音通话,支持Twilio、Telnyx等提供商及Mock模式。提供CLI命令和Agent工具接口,用于拨号、持续对话、播报信息及查询状态,适用于需要语音交互功能的场景。
Trigger Scenarios
需要发起或接听语音电话
通过语音向用户播报信息
检查当前通话的状态
Install
npx skills add the-open-agent/openagent --skill voice-call -g -y
SKILL.md
Frontmatter
{
"name": "voice-call",
"metadata": {
"openclaw": {
"emoji": "📞",
"requires": {
"config": [
"plugins.entries.voice-call.enabled"
]
},
"skillKey": "voice-call"
}
},
"description": "Start voice calls via the OpenClaw voice-call plugin."
}
Voice Call
Use the voice-call plugin to start or inspect calls (Twilio, Telnyx, Plivo, or mock).
CLI
openclaw voicecall call --to "+15555550123" --message "Hello from OpenClaw"
openclaw 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
- 618631e Current 2026-08-20 18:18


