send-sms

Send SMS text messages to any phone number using the Twilio API. Use this skill when the user asks to send a text, SMS, text message, or notify someone via phone. Supports custom message content and any recipient number in E.164 format.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "send-sms" with this command: npx skills add dalehurley/phpbot/dalehurley-phpbot-send-sms

Skill: send-sms

When to Use

Use this skill when the user asks to:

  • Send an SMS or text message
  • Text someone a message
  • Notify someone via SMS
  • Send a message to a phone number
  • Use Twilio to message someone

Required Credentials

Retrieve these via the get_keys tool before executing:

Key Store KeyEnvironment VariableDescription
twilio_account_sidTWILIO_ACCOUNT_SIDTwilio Account SID (starts with AC)
twilio_auth_tokenTWILIO_AUTH_TOKENTwilio Auth Token
twilio_phone_numberFROM_PHONE_NUMBERTwilio phone number (sender)

Input Parameters

ParameterRequiredDescriptionExample
to_phoneYesRecipient phone number in E.164 format+1234567890
message_bodyYesThe text message content to sendHello!

Procedure

  1. Retrieve Twilio credentials: use get_keys with keys [twilio_account_sid, twilio_auth_token, twilio_phone_number]
  2. If recipient phone number or message content not provided, ask the user via ask_user
  3. Send SMS using bundled script: bash scripts/run.sh <to_phone> <message_body> Or via curl: curl -X POST "https://api.twilio.com/2010-04-01/Accounts/{{TWILIO_ACCOUNT_SID}}/Messages.json" --data-urlencode "From={{FROM_PHONE_NUMBER}}" --data-urlencode "To={{TO_PHONE_NUMBER}}" --data-urlencode "Body={{MESSAGE_BODY}}" -u "{{TWILIO_ACCOUNT_SID}}:{{TWILIO_AUTH_TOKEN}}"
  4. Verify the JSON response contains a sid field indicating the message was queued
  5. Report delivery status and message SID to the user

Bundled Scripts

ScriptTypeDescription
scripts/run.shSHSend SMS via Twilio API

Script Usage

# Set credentials as environment variables (from get_keys), then:
bash scripts/run.sh <to_phone> <message_body>

Credentials in scripts use environment variables. Set them via get_keys before running.

Example

Example requests that trigger this skill:

send an sms saying "hello world"
text +1234567890 saying "meeting at 3pm"
send a text message to mom

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Yuboto Omni API Assistant

Implement, troubleshoot, and generate integrations for Yuboto Omni API (SMS/Viber/messaging endpoints, callbacks, lists/contacts/blacklist, cost/balance/acco...

Registry SourceRecently Updated
1249
Profile unavailable
Automation

desktop-control

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

summarize-unread-emails

No summary provided by upstream source.

Repository SourceNeeds Review