Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:1,030
forks:59
updated:February 25, 2026 at 17:11
SKILL.md
| name | notify-complete |
| description | Notify user with repeated ping sound after task completion |
| license | MIT |
| compatibility | opencode |
| metadata | {"type":"completion-notification","platform":"macos"} |
I play notification sounds in two phases:
All notification commands should be launched asynchronously in background, so the main task flow does not block waiting for sound playback to finish.
(for i in $(seq 1 5); do afplay /System/Library/Sounds/Ping.aiff; sleep 0.5; done) >/dev/null 2>&1 &
(for i in $(seq 1 10); do afplay /System/Library/Sounds/Ping.aiff; sleep 0.5; done) >/dev/null 2>&1 &
Run this skill at two mandatory points by default:
This is mandatory by default unless the user explicitly asks to skip audio notification.
afplay + system sound path).