Install
openclaw skills install send-imessageSend iMessages via macOS Messages app using AppleScript. Use when user wants to send a text message/SMS to a phone number. Supports Chinese and English messa...
openclaw skills install send-imessageSend iMessages using macOS Messages app via AppleScript.
When user asks to send a message to a phone number:
osascript << 'EOF'
tell application "Messages"
activate
send "MESSAGE_TEXT" to buddy "+1PHONE_NUMBER"
end tell
EOF
Send English message:
send "hello" to buddy "+18888888888"Send Chinese message:
send "你好" to buddy "+18888888888"