From pushover
Sends push notifications to user's phone via Pushover using bash scripts. Supports priority levels (-2 to 2), URLs, retries, and expires for emergencies. Requires macOS Keychain setup. Use for user-requested notifications, alerts, or reminders.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pushover:notificationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
scripts/notify.sh "<title>" "<message>"
scripts/notify.sh "<title>" "<message>" --priority 1
scripts/notify.sh "<title>" "<message>" --url "https://example.com"
| Level | Description |
|---|---|
| -2 | Lowest (no notification) |
| -1 | Low (quiet) |
| 0 | Normal (default) |
| 1 | High (bypass quiet hours) |
| 2 | Emergency (requires --retry and --expire) |
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.
npx claudepluginhub caidish/cai-tools --plugin pushoverSends push notifications via Pushover API with optional image attachments, rich formatting, and priority levels. Includes preflight validation, proxy bypass, and audit logging.
Sends push notifications to a Gotify server when long-running tasks complete or important events occur. Supports custom titles, priority levels (0-10), and markdown formatting.
Configures Bark push, WeChat, and system notifications for Claude Code projects. Enables persistent alerts and proactive sending via PowerShell scripts after tasks.