Agent Skills: Notify

Send push notifications to the user via ntfy.sh

UncategorizedID: mgreenly/ikigai/notify

Install this agent skill to your local

pnpm dlx add-skill https://github.com/mgreenly/ikigai/tree/HEAD/.claude/library/notify

Skill Files

Browse the full folder contents for notify.

Download Skill

Loading file tree…

.claude/library/notify/SKILL.md

Skill Metadata

Name
notify
Description
Send push notifications to the user via ntfy.sh

Notify

Send push notifications when user attention is needed.

Usage

echo '{"title": "Title", "message": "Body"}' | .claude/scripts/notify

Input

  • title - optional
  • message - required

Output

{"success": true, "status": 200}
{"success": false, "status": 401, "error": "..."}

Example

$ echo '{"title": "Build Complete", "message": "All tests passed"}' | .claude/scripts/notify
{"success":true,"status":200}

$ echo '{"title": "Test"}' | .claude/scripts/notify
{"success":false,"error":"message is required"}