repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | name: voice-call |
| #3 | description: Start voice calls via the Clawdbot voice-call plugin. |
| #4 | metadata: {"clawdbot":{"emoji":"📞","skillKey":"voice-call","requires":{"config":["plugins.entries.voice-call.enabled"]}}} |
| #5 | --- |
| #6 | |
| #7 | # Voice Call |
| #8 | |
| #9 | Use the voice-call plugin to start or inspect calls (Twilio, Telnyx, Plivo, or mock). |
| #10 | |
| #11 | ## CLI |
| #12 | |
| #13 | ```bash |
| #14 | clawdbot voicecall call --to "+15555550123" --message "Hello from Clawdbot" |
| #15 | clawdbot voicecall status --call-id <id> |
| #16 | ``` |
| #17 | |
| #18 | ## Tool |
| #19 | |
| #20 | Use `voice_call` for agent-initiated calls. |
| #21 | |
| #22 | Actions: |
| #23 | - `initiate_call` (message, to?, mode?) |
| #24 | - `continue_call` (callId, message) |
| #25 | - `speak_to_user` (callId, message) |
| #26 | - `end_call` (callId) |
| #27 | - `get_status` (callId) |
| #28 | |
| #29 | Notes: |
| #30 | - Requires the voice-call plugin to be enabled. |
| #31 | - Plugin config lives under `plugins.entries.voice-call.config`. |
| #32 | - Twilio config: `provider: "twilio"` + `twilio.accountSid/authToken` + `fromNumber`. |
| #33 | - Telnyx config: `provider: "telnyx"` + `telnyx.apiKey/connectionId` + `fromNumber`. |
| #34 | - Plivo config: `provider: "plivo"` + `plivo.authId/authToken` + `fromNumber`. |
| #35 | - Dev fallback: `provider: "mock"` (no network). |
| #36 |