← ClaudeAtlas

imsglisted

Send and receive iMessages using AppleScript/osascript on macOS.
kody-w/openrappter · ★ 7 · Data & Documents · score 72
Install: claude install-skill kody-w/openrappter
# iMessage Send and manage iMessages via osascript on macOS. ## Send a Message ```bash osascript -e ' tell application "Messages" set targetService to 1st account whose service type = iMessage set targetBuddy to participant "+1234567890" of targetService send "Hello from openrappter!" to targetBuddy end tell ' ``` ## List Recent Chats ```bash osascript -e ' tell application "Messages" get name of every chat end tell ' ``` ## Send to Group Chat ```bash osascript -e ' tell application "Messages" set targetChat to chat "Group Name" send "Hello group!" to targetChat end tell ' ```