AgentSkillsCN

notification

通过 Pushover 向用户的手机发送推送通知。当用户希望接收通知、警报或提醒时,可使用此技能。

SKILL.md
--- frontmatter
name: notification
description: Send push notifications to user's phone via Pushover. Use when the user asks to be notified, alerted, or reminded about something.

Notification Skill Guide

bash
scripts/notify.sh "<title>" "<message>"
scripts/notify.sh "<title>" "<message>" --priority 1
scripts/notify.sh "<title>" "<message>" --url "https://example.com"

Priority Levels

LevelDescription
-2Lowest (no notification)
-1Low (quiet)
0Normal (default)
1High (bypass quiet hours)
2Emergency (requires --retry and --expire)

Emergency Priority Example

bash
scripts/notify.sh "Critical" "Server down!" --priority 2 --retry 60 --expire 1800

Note: Requires Pushover credentials in macOS Keychain. Run setup-service.sh to configure.