Agent Skills
› spinabot/brigade
› voice-call
voice-call
GitHub通过 Brigade voice-call 插件发起或检查语音通话,支持 Twilio、Telnyx、Plivo 及 Mock 提供商。提供 CLI 和 Agent 工具接口,用于初始化、继续、说话、结束通话及查询状态。
触发场景
用户需要发起语音通话
Agent 需要执行语音交互操作
安装
npx skills add spinabot/brigade --skill voice-call -g -y
SKILL.md
Frontmatter
{
"name": "voice-call",
"metadata": {
"brigade": {
"emoji": "📞",
"requires": {
"config": [
"plugins.entries.voice-call.enabled"
]
},
"skillKey": "voice-call"
}
},
"description": "Start voice calls via the Brigade voice-call plugin."
}
Voice Call
Use the voice-call plugin to start or inspect calls (Twilio, Telnyx, Plivo, or mock).
CLI
brigade voicecall call --to "+15555550123" --message "Hello from Brigade"
brigade 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).
版本历史
- db99206 当前 2026-07-05 11:00


