Agent skill
contacts
Access phone contacts and call log. Use for looking up contact info or checking recent calls.
Install this agent skill to your Project
npx add-skill https://github.com/mikeyobrien/rho/tree/main/platforms/android/skills/contacts
SKILL.md
Contacts & Calls
List all contacts
termux-contact-list
Output:
[
{
"name": "John Doe",
"number": "+1234567890"
}
]
Call log
termux-call-log # recent calls
termux-call-log -l 20 # last 20 calls
termux-call-log -o 10 # offset (skip first 10)
Output:
[
{
"name": "John Doe",
"phone_number": "+1234567890",
"type": "INCOMING",
"date": "2024-01-15 14:30:00",
"duration": "120"
}
]
Call types: INCOMING, OUTGOING, MISSED, REJECTED
Make a phone call
termux-telephony-call "+1234567890"
Opens the dialer with the number (user must confirm).
Phone info
termux-telephony-deviceinfo # IMEI, carrier, etc.
termux-telephony-cellinfo # cell tower info
Note: Requires contacts/phone permissions.
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?