Agent skill
notification
Show system notifications with optional buttons, sounds, and actions. Use for alerts, reminders, or persistent status messages.
Install this agent skill to your Project
npx add-skill https://github.com/mikeyobrien/rho/tree/main/platforms/android/skills/notification
SKILL.md
System Notifications
Basic notification
termux-notification -t "Title" -c "Content message"
With ID (for updating/removing)
termux-notification --id mynotif -t "Title" -c "Message"
termux-notification-remove mynotif
Options
-t/--title— notification title-c/--content— body text--id— unique ID (update existing, or remove later)--sound— play notification sound--vibrate 500,200,500— vibration pattern (ms)--priority high|low|max|min— importance level--ongoing— pin notification (can't swipe away)--led-color RRGGBB— LED color--icon icon-name— Material icon (see material.io/icons)--image-path /path/to/image— show image
With action buttons
termux-notification -t "Alert" -c "Something happened" \
--button1 "Open" --button1-action "termux-open-url https://example.com" \
--button2 "Dismiss" --button2-action "termux-notification-remove mynotif" \
--id mynotif
List active notifications
termux-notification-list
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?