Files
clawdbot/docs/plugins/voice-call.md
2026-01-12 01:16:46 +00:00

2.0 KiB
Raw Blame History

summary, read_when
summary read_when
Voice Call plugin: Twilio-backed outbound calls (plugin install + config + CLI)
You want to place an outbound voice call from Clawdbot
You are configuring or developing the voice-call plugin

Voice Call (plugin)

Outbound voice calls for Clawdbot via a plugin.

Current providers:

  • twilio (real calls)
  • log (dev fallback; no network)

If you havent read the general plugin docs yet, start with Plugins.

Install

clawdbot plugins install @clawdbot/voice-call

This downloads the package, extracts it into ~/.clawdbot/extensions/, and enables it in clawdbot.json.

Restart the Gateway afterwards.

Option B: install from a local folder (dev)

mkdir -p ~/.clawdbot/extensions
cp -R extensions/voice-call ~/.clawdbot/extensions/voice-call
cd ~/.clawdbot/extensions/voice-call && pnpm install

Restart the Gateway afterwards.

Config

Set config under plugins.entries.voice-call.config:

{
  plugins: {
    entries: {
      "voice-call": {
        enabled: true,
        config: {
          provider: "twilio",
          twilio: {
            accountSid: "ACxxxxxxxx",
            authToken: "…",
            from: "+15551234567",
            statusCallbackUrl: "https://example.com/twilio-status", // optional
            twimlUrl: "https://example.com/twiml" // optional
          }
        }
      }
    }
  }
}

Dev fallback:

{ provider: "log" }

Notes:

  • twilio.authToken is treated as sensitive in the Control UI schema hints.

CLI

clawdbot voicecall start --to "+15555550123" --message "Hello from Clawdbot"
clawdbot voicecall status --sid CAxxxxxxxx

Agent tool

Tool name: voice_call

  • mode: "call" | "status" (default: call)
  • to: required for call
  • sid: required for status
  • message: optional

This repo ships a matching skill doc at skills/voice-call/SKILL.md.

Gateway RPC

  • voicecall.start (to, optional message)
  • voicecall.status (sid)