Done Sound

Play a "tada" celebration sound to signal something finished. Use when the user says "/done-sound", "done sound", "play the tada", "let me know when it merges", "ping me when that merges", "sound when done", or asks to be alerted audibly that a merge, deploy, build, or long task completed.

seanx10m Updated

File contents

done-sound

Play the tada sound (volume set to 0.4, 60% quieter than default):

afplay -v 0.4 ~/.claude/skills/done-sound/assets/tadaa.mp3

Fire-and-forget (don't block on it):

afplay -v 0.4 ~/.claude/skills/done-sound/assets/tadaa.mp3 &

Most common use: merge notification

When the user asks to be told a PR merged, poll then play:

gh pr checks <PR> --watch && gh pr merge <PR> --squash && afplay -v 0.4 ~/.claude/skills/done-sound/assets/tadaa.mp3

Or if the merge is happening elsewhere, wait on it then sound:

until [ "$(gh pr view <PR> --json state -q .state)" = "MERGED" ]; do sleep 30; done
afplay -v 0.4 ~/.claude/skills/done-sound/assets/tadaa.mp3

Always say in text what the sound was for - the sound alone isn't the report.

seanx10m/skills/tree/main/notifications/done-sound commit ccd54fc7c8

Frequently asked questions

npx skillmds@latest add seanx10m/done-sound