What problem does it solve?
This Skill enables sending real-time push notifications to mobile devices via ntfy.sh directly from the command line, simplifying incident alerts, status updates, and team communications without relying on complex tooling.
Core Features & Use Cases
- Basic notifications: Send a simple alert message to a ntfy.sh topic.
- Priority and Actions: Attach priority headers and clickable actions to direct recipients to dashboards or runbooks.
- Use Case: When a CI job finishes or a server experiences an outage, push a notification to your mobile device with minimal effort.
Quick Start
Use the ntfy.sh endpoint to send a message. For example:
curl -H "Title: Alert" -d "Deployment completed" ntfy.sh/@notifyTopic@
To include priority:
curl -H "Title: High Priority" -H "Priority: high" -d "Immediate attention required" ntfy.sh/@notifyTopic@
To add a click action:
curl -H "Title: Deployment" -H "Click: https://example.com/status" -d "Deployment finished" ntfy.sh/@notifyTopic@