$npx -y skills add SafeAI-Lab-X/ClawKeeper --skill bluebubblesUse when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel="bluebubbles".
| 1 | # BlueBubbles Actions |
| 2 | |
| 3 | ## Overview |
| 4 | |
| 5 | BlueBubbles is OpenClaw’s recommended iMessage integration. Use the `message` tool with `channel: "bluebubbles"` to send messages and manage iMessage conversations: send texts and attachments, react (tapbacks), edit/unsend, reply in threads, and manage group participants/names/icons. |
| 6 | |
| 7 | ## Inputs to collect |
| 8 | |
| 9 | - `target` (prefer `chat_guid:...`; also `+15551234567` in E.164 or `user@example.com`) |
| 10 | - `message` text for send/edit/reply |
| 11 | - `messageId` for react/edit/unsend/reply |
| 12 | - Attachment `path` for local files, or `buffer` + `filename` for base64 |
| 13 | |
| 14 | If the user is vague ("text my mom"), ask for the recipient handle or chat guid and the exact message content. |
| 15 | |
| 16 | ## Actions |
| 17 | |
| 18 | ### Send a message |
| 19 | |
| 20 | ```json |
| 21 | { |
| 22 | "action": "send", |
| 23 | "channel": "bluebubbles", |
| 24 | "target": "+15551234567", |
| 25 | "message": "hello from OpenClaw" |
| 26 | } |
| 27 | ``` |
| 28 | |
| 29 | ### React (tapback) |
| 30 | |
| 31 | ```json |
| 32 | { |
| 33 | "action": "react", |
| 34 | "channel": "bluebubbles", |
| 35 | "target": "+15551234567", |
| 36 | "messageId": "<message-guid>", |
| 37 | "emoji": "❤️" |
| 38 | } |
| 39 | ``` |
| 40 | |
| 41 | ### Remove a reaction |
| 42 | |
| 43 | ```json |
| 44 | { |
| 45 | "action": "react", |
| 46 | "channel": "bluebubbles", |
| 47 | "target": "+15551234567", |
| 48 | "messageId": "<message-guid>", |
| 49 | "emoji": "❤️", |
| 50 | "remove": true |
| 51 | } |
| 52 | ``` |
| 53 | |
| 54 | ### Edit a previously sent message |
| 55 | |
| 56 | ```json |
| 57 | { |
| 58 | "action": "edit", |
| 59 | "channel": "bluebubbles", |
| 60 | "target": "+15551234567", |
| 61 | "messageId": "<message-guid>", |
| 62 | "message": "updated text" |
| 63 | } |
| 64 | ``` |
| 65 | |
| 66 | ### Unsend a message |
| 67 | |
| 68 | ```json |
| 69 | { |
| 70 | "action": "unsend", |
| 71 | "channel": "bluebubbles", |
| 72 | "target": "+15551234567", |
| 73 | "messageId": "<message-guid>" |
| 74 | } |
| 75 | ``` |
| 76 | |
| 77 | ### Reply to a specific message |
| 78 | |
| 79 | ```json |
| 80 | { |
| 81 | "action": "reply", |
| 82 | "channel": "bluebubbles", |
| 83 | "target": "+15551234567", |
| 84 | "replyTo": "<message-guid>", |
| 85 | "message": "replying to that" |
| 86 | } |
| 87 | ``` |
| 88 | |
| 89 | ### Send an attachment |
| 90 | |
| 91 | ```json |
| 92 | { |
| 93 | "action": "sendAttachment", |
| 94 | "channel": "bluebubbles", |
| 95 | "target": "+15551234567", |
| 96 | "path": "/tmp/photo.jpg", |
| 97 | "caption": "here you go" |
| 98 | } |
| 99 | ``` |
| 100 | |
| 101 | ### Send with an iMessage effect |
| 102 | |
| 103 | ```json |
| 104 | { |
| 105 | "action": "sendWithEffect", |
| 106 | "channel": "bluebubbles", |
| 107 | "target": "+15551234567", |
| 108 | "message": "big news", |
| 109 | "effect": "balloons" |
| 110 | } |
| 111 | ``` |
| 112 | |
| 113 | ## Notes |
| 114 | |
| 115 | - Requires gateway config `channels.bluebubbles` (serverUrl/password/webhookPath). |
| 116 | - Prefer `chat_guid` targets when you have them (especially for group chats). |
| 117 | - BlueBubbles supports rich actions, but some are macOS-version dependent (for example, edit may be broken on macOS 26 Tahoe). |
| 118 | - The gateway may expose both short and full message ids; full ids are more durable across restarts. |
| 119 | - Developer reference for the underlying plugin lives in `extensions/bluebubbles/README.md`. |
| 120 | |
| 121 | ## Ideas to try |
| 122 | |
| 123 | - React with a tapback to acknowledge a request. |
| 124 | - Reply in-thread when a user references a specific message. |
| 125 | - Send a file attachment with a short caption. |