6.7k★by mrgoodb
twilio – OpenClaw Skill
twilio is an OpenClaw Skills integration for communication workflows. Send SMS, make voice calls, and manage WhatsApp messages via Twilio API. Use for notifications, 2FA, customer communications, and voice automation.
Skill Snapshot
| name | twilio |
| description | Send SMS, make voice calls, and manage WhatsApp messages via Twilio API. Use for notifications, 2FA, customer communications, and voice automation. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/twilio |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/twilio |
| last updated | Feb 7, 2026 |
Maintainer

name: twilio description: Send SMS, make voice calls, and manage WhatsApp messages via Twilio API. Use for notifications, 2FA, customer communications, and voice automation. metadata: {"clawdbot":{"emoji":"📱","requires":{"env":["TWILIO_ACCOUNT_SID","TWILIO_AUTH_TOKEN"]}}}
Twilio
Send SMS, voice calls, and WhatsApp messages.
Environment Variables
export TWILIO_ACCOUNT_SID="ACxxxxxxxxxx"
export TWILIO_AUTH_TOKEN="your_auth_token"
export TWILIO_PHONE_NUMBER="+1234567890"
Send SMS
curl -X POST "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages.json" \
-u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \
-d "From=$TWILIO_PHONE_NUMBER" \
-d "To=+1recipient" \
-d "Body=Hello from Twilio!"
Send WhatsApp
curl -X POST "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages.json" \
-u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \
-d "From=whatsapp:+14155238886" \
-d "To=whatsapp:+1recipient" \
-d "Body=Your message"
Make Voice Call
curl -X POST "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Calls.json" \
-u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \
-d "From=$TWILIO_PHONE_NUMBER" \
-d "To=+1recipient" \
-d "Url=http://demo.twilio.com/docs/voice.xml"
List Messages
curl "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages.json?PageSize=20" \
-u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN"
Check Balance
curl "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Balance.json" \
-u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN"
Links
- Console: https://console.twilio.com
- Docs: https://www.twilio.com/docs
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install twilio?
Run openclaw add @mrgoodb/twilio in your terminal. This installs twilio into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/twilio. Review commits and README documentation before installing.
