From flipper-claude-buddy
Send a custom sound, vibration, and text notification to the Flipper Zero via the flipper-claude-buddy bridge daemon (requires the bridge to be running).
npx claudepluginhub jxw1102/flipper-claude-buddy --plugin flipper-claude-buddyThis skill is limited to using the following tools:
Send a notification to the connected Flipper Zero via the host bridge daemon.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
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 user