israeli-sms-gateway
Installation
SKILL.md
Israeli SMS Gateway
Instructions
Step 1: Validate Israeli Phone Number
Before sending, validate the phone number format:
import re
def validate_israeli_phone(phone: str) -> tuple[bool, str]:
"""Validate and normalize Israeli phone number."""
# Remove spaces, dashes, parentheses
clean = re.sub(r'[\s\-\(\)]', '', phone)