Loading...
Loading...
Send instant push notifications to mobile/desktop via Pushover API. Use for urgent alerts, job completion notifications, or time-sensitive messages that need immediate attention.
npx skill4agent add winsorllc/upgraded-carnival pushoverAGENT_LLM_AGENT_LLM_PUSHOVER_TOKENAGENT_LLM_PUSHOVER_USER_KEYnpx thepopebot set-agent-llm-secret PUSHOVER_TOKEN "your-token"
npx thepopebot set-agent-llm-secret PUSHOVER_USER_KEY "your-user-key"await context.tools.send_pushover({
to: "user-key-or-device", // Optional, defaults to PUSHOVER_USER_KEY
message: "Job complete: Analysis finished",
title: "PopeBot Alert", // Optional
priority: 0, // -2 to 2 (see below)
url: "https://...", // Optional link
urlTitle: "View Details" // Optional URL label
});| Priority | Behavior |
|---|---|
| No notification, always silent |
| Quiet notification (no sound/vibration) |
| Normal priority (default) |
| High priority (bypasses quiet hours) |
| Emergency (repeats every 60s until acknowledged) |
tomessagetitlepriorityurlurlTitlesounddeviceawait context.tools.send_pushover({
message: "Daily backup completed successfully"
});await context.tools.send_pushover({
title: "⚠️ Error Alert",
message: "Pipeline failed at step: build",
priority: 2,
url: "https://github.com/.../actions/runs/123",
urlTitle: "View Logs"
});await context.tools.send_pushover({
title: "Research Complete",
message: "Analysis of 50 documents finished. 3 key findings.",
priority: 1,
url: "https://.../pr/42",
urlTitle: "Review PR"
});2-1