Agent skill
location
Get device location via GPS or network. Use for location-aware actions, finding nearby places, or logging position.
Install this agent skill to your Project
npx add-skill https://github.com/mikeyobrien/rho/tree/main/platforms/android/skills/location
SKILL.md
Location
Get current location
termux-location # default (GPS if available)
termux-location -p gps # GPS only (more accurate, slower)
termux-location -p network # Network only (faster, less accurate)
termux-location -p passive # Last known location (instant)
Request single update (default)
termux-location -r once
Continuous updates
termux-location -r updates # keep updating until killed
Output format
{
"latitude": 37.7749,
"longitude": -122.4194,
"altitude": 10.0,
"accuracy": 20.0,
"bearing": 0.0,
"speed": 0.0,
"provider": "gps"
}
Note: Requires location permission. GPS may take 10-30s for first fix.
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?