From Hyper Marketing
Sends SMS and WhatsApp messages, makes voice calls, manages phone numbers, and builds OTP verification flows via Twilio.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hyper-marketing:twilioThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill for all Twilio tasks including SMS, WhatsApp, voice calls, and verification.
Use this skill for all Twilio tasks including SMS, WhatsApp, voice calls, and verification.
Before sending WhatsApp messages in sandbox/testing mode, users must join the sandbox:
twilio_whatsapp_send with from_number set to "+14155238886"If WhatsApp message fails with "not a valid WhatsApp-enabled number" or similar:
twilio_sms_send - Send SMS/MMS messagestwilio_whatsapp_send - Send WhatsApp messages (sandbox: use +14155238886 as from_number)twilio_messages_list - List message historytwilio_messages_delivery_status_check - Check if message was deliveredtwilio_calls_create - Initiate outbound call (requires TwiML URL or inline TwiML)twilio_calls_list - List call historytwilio_recordings_list - List call recordingstwilio_phone_numbers_list - List numbers in account (use to find valid from_number)twilio_phone_numbers_lookup - Validate phone number and get carrier infotwilio_verification_services_create - Create verification service firsttwilio_verifications_send - Send OTP codetwilio_verifications_check - Verify user's codeBefore sending SMS/WhatsApp: Call twilio_phone_numbers_list first to find a valid sender number.
WhatsApp sandbox flow:
twilio_whatsapp_send with:{
"to": "+1XXXXXXXXXX",
"body": "Hello from the assistant",
"from_number": "+14155238886"
}
Phone verification flow:
Step 1 -- Call twilio_verification_services_create with:
{
"friendly_name": "My App"
}
Step 2 -- Call twilio_verifications_send with:
{
"service_sid": "<service_sid_from_step_1>",
"to": "+1XXXXXXXXXX",
"channel": "sms"
}
Step 3 -- Call twilio_verifications_check with:
{
"service_sid": "<service_sid>",
"to": "+1XXXXXXXXXX",
"code": "<user_provided_code>"
}
twilio_phone_numbers_list.npx claudepluginhub hyperfx-ai/marketing-skills --plugin hyper-marketingBuilds Twilio communication features: SMS, voice calls, WhatsApp Business API, and 2FA verification. Covers notifications, IVR systems, and multi-channel auth with compliance and error handling guidance.
Build communication features with Twilio: SMS, voice calls, WhatsApp Business API, and 2FA verification. Covers simple notifications to complex IVR systems with code patterns for sending and managing messages.
Creates and configures a Twilio account from scratch: signup, credentials, phone number purchase, SDK install, first API call, subaccount management, and product activation (AI Assistants, Conversations, Verify, WhatsApp).