Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
$ git log --oneline --stat
stars:1,030
forks:59
updated:2026年2月25日 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).