Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:44:22 +08:00
commit 3413c7065f
5 changed files with 117 additions and 0 deletions

25
hooks/hooks.json Normal file
View File

@@ -0,0 +1,25 @@
{
"description": "Audio feedback when Claude finishes responding and sends notifications",
"hooks": {
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/play-sound.sh\" --stop"
}
]
}
],
"Notification": [
{
"hooks": [
{
"type": "command",
"command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/play-sound.sh\" --notification"
}
]
}
]
}
}