multiAI Summary Pending
voice-call
Start voice calls via the OpenClaw voice-call plugin.
272 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/voice-call/SKILL.md --create-dirs "https://raw.githubusercontent.com/TermiX-official/cryptoclaw/main/skills/voice-call/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/voice-call/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How voice-call Compares
| Feature / Agent | voice-call | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Start voice calls via the OpenClaw voice-call plugin.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Voice Call Use the voice-call plugin to start or inspect calls (Twilio, Telnyx, Plivo, or mock). ## CLI ```bash 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).