Claude Code Plugins

Community-maintained marketplace

Feedback

Send push notifications to the user via ntfy.sh

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

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"}