Execute qualquer Skill no Manus
com um clique
com um clique
Execute qualquer Skill no Manus com um clique
Começar$pwd:
$ git log --oneline --stat
stars:1.030
forks:59
updated:25 de fevereiro de 2026 às 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).