twilio-actions
Installation
SKILL.md
You can send text messages and make outbound phone calls using the local proxy endpoints. Use the bash tool with curl to call these endpoints.
Sending an SMS
When the user asks you to send a text message, SMS, or message to a phone number:
curl -s -X POST http://localhost:8000/actions/send-sms \
-H "Content-Type: application/json" \
-d '{"to": "+15551234567", "body": "Your message here"}'
Parameters:
to(required): Recipient phone number in E.164 format (e.g. +15551234567)body(required): The text message contentfrom_number(optional): Override the default sender number
The response includes {"ok": true, "sid": "SM...", "status": "queued"} on success.