From flipper-claude-buddy
Sends custom sound, vibration, and two-line text notifications to Flipper Zero via Unix socket bridge daemon using Bash nc. Useful for dev workflow alerts like task completion, errors, and status updates when bridge is running.
How this skill is triggered — by the user, by Claude, or both
Slash command
/flipper-claude-buddy:notifyThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Send a notification to the connected Flipper Zero via the host bridge daemon.
Send a notification to the connected Flipper Zero via the host bridge daemon.
The bridge listens on a Unix socket at /tmp/claude-flipper-bridge.sock.
echo '{"action":"notify","sound":"SOUND","vibro":VIBRO,"text":"TITLE","subtext":"SUBTITLE"}' \
| nc -U /tmp/claude-flipper-bridge.sock
SOUND — one of the sound names belowVIBRO — true to vibrate, false for silentTITLE / SUBTITLE — up to 20 characters each; omit or leave empty if not needed| Sound | Description |
|---|---|
success | Ascending C5-E5-G5 chime + green flash |
error | Low double beep G4-G4 + red flash |
alert | Single E5 blip + cyan flash |
ready | Ascending C5-E5-G5 + cyan flash |
connect | Startup chord C5-E5-G5-C6 + green solid (persistent) |
disconnect | Shutdown chord C6-G5-E5-C5 + red flash |
interrupt | Descending E5-C5 + yellow solid (persistent) |
session_end | Descending C6-G5-E5-C5 + yellow flash |
led_working | Blue solid LED, no sound (persistent) |
led_off | Turn LED off, no sound |
voice_start | High ding A5 + red blink (persistent) |
voice_start_led | Red blink only, no sound (persistent) |
voice_stop | Low dong C5 + red flash then LED off |
voice_stop_quiet | LED reset only, no sound |
Task completed:
echo '{"action":"notify","sound":"success","vibro":true,"text":"Done","subtext":"Tests passed"}' \
| nc -U /tmp/claude-flipper-bridge.sock
Error occurred:
echo '{"action":"notify","sound":"error","vibro":true,"text":"Build failed","subtext":""}' \
| nc -U /tmp/claude-flipper-bridge.sock
Silent status update:
echo '{"action":"notify","sound":"alert","vibro":false,"text":"Thinking...","subtext":""}' \
| nc -U /tmp/claude-flipper-bridge.sock
success for completions, error for failures, alert for informationvibro: true for important notifications that need immediate attentionnc will exit silently with no error shown to the usernpx claudepluginhub jxw1102/flipper-claude-buddy --plugin flipper-claude-buddySends 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.
Installs macOS TTS voice cues and clickable dialogs for Claude Code Stop and Notification events. Run once to wire up the hooks; afterward you'll hear "Task completed" or "Permission needed" and see a dialog with a Go button that refocuses your terminal.
Configures Bark push, WeChat, and system notifications for Claude Code projects. Enables persistent alerts and proactive sending via PowerShell scripts after tasks.