Agent skill
sms
Read and send SMS messages. Use for checking texts, 2FA codes, or sending SMS alerts.
Install this agent skill to your Project
npx add-skill https://github.com/mikeyobrien/rho/tree/main/platforms/android/skills/sms
SKILL.md
SMS Operations
Read recent messages
termux-sms-list # last 10 messages
termux-sms-list -l 5 # last 5 messages
termux-sms-list -t inbox # inbox only
termux-sms-list -t sent # sent only
Filter by sender
termux-sms-list -f "+1234567890" -l 5 # from specific number
Get conversations list
termux-sms-list --conversation-list
Send SMS
termux-sms-send -n "+1234567890" "Message text"
Output format (list)
[
{
"threadid": 1,
"type": "inbox",
"read": true,
"number": "+1234567890",
"received": "2024-01-15 10:30:00",
"body": "Message content here"
}
]
Message types
all(default),inbox,sent,draft,outbox,failed,queued
Note: Requires SMS permissions in Termux:API app settings.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
tts
Text-to-speech on macOS -- make the device speak text aloud. Use for voice announcements, reading content aloud, or accessibility.
clipboard
Read or write the macOS clipboard. Use when copying/pasting text, transferring data between apps, or accessing clipboard contents.
notification
Show macOS system notifications with title, body, and optional sound. Use for alerts, reminders, or status updates.
open-url
Open URLs, files, and applications on macOS. Use for launching browsers, opening documents, or starting apps.
tts
Text-to-speech — make the device speak text aloud. Use for voice announcements, reading content aloud, or accessibility.
clipboard
Read or write the system clipboard. Use when copying/pasting text, transferring data between apps, or accessing clipboard contents.
Didn't find tool you were looking for?