platforms/android/skills/contacts/SKILL.md
Access phone contacts and call log. Use for looking up contact info or checking recent calls.
npx skillsauth add mikeyobrien/rho contactsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
termux-contact-list
Output:
[
{
"name": "John Doe",
"number": "+1234567890"
}
]
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
termux-telephony-call "+1234567890"
Opens the dialer with the number (user must confirm).
termux-telephony-deviceinfo # IMEI, carrier, etc.
termux-telephony-cellinfo # cell tower info
Note: Requires contacts/phone permissions.
data-ai
Install and configure Rho from scratch (Doom-style init.toml + sync). Only prereq: a coding agent that can run shell commands.
documentation
Detect and resolve orphaned notes in the vault. Use during heartbeat maintenance or when vault status shows orphans. Finds notes with no inbound wikilinks and either connects them to the graph or flags them for cleanup.
testing
Update the pi-coding-agent npm package to the latest version. Use when the user wants to update pi, upgrade pi, or get the latest version of the coding agent.
development
Run a curiosity-driven explore-and-build loop to ship one useful improvement.