📄 SKILL.md

← Vault

name: imessage

description: Send and receive iMessages/SMS via the imsg CLI on macOS.

version: 1.0.0

author: Hermes Agent

license: MIT

platforms: [macos]

metadata:

hermes:

tags: [iMessage, SMS, messaging, macOS, Apple]

prerequisites:

commands: [imsg]


iMessage

Use imsg to read and send iMessage/SMS via macOS Messages.app.

Prerequisites

Rules

1. Always confirm recipient and message content before sending

2. Never send to unknown numbers without explicit user approval

3. Verify file paths exist before attaching

4. Don't spam — rate-limit yourself

Example Workflow

User: "Text mom that I'll be late"

`bash

1. Find mom's chat

imsg chats --limit 20 --json | jq '.[] | select(.displayName | contains("Mom"))'

2. Confirm with user: "Found Mom at +1555123456. Send 'I'll be late' via iMessage?"

3. Send after confirmation

imsg send --to "+1555123456" --text "I'll be late"

`