twilio

Installation
SKILL.md

Twilio

Send SMS messages, make voice calls, and manage phone numbers.

Environment Variables

  • TWILIO_ACCOUNT_SID - Account SID
  • TWILIO_AUTH_TOKEN - Auth token

Send SMS

curl -s -X POST \
  "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages.json" \
  -u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \
  --data-urlencode "To=+15551234567" \
  --data-urlencode "From=+15559876543" \
  --data-urlencode "Body=Hello from ThinkFleetBot!" | jq '{sid, status, to, from}'
Related skills

More from thinkfleetai/thinkfleet-engine

Installs
2
First Seen
Mar 1, 2026