Created
July 12, 2025 14:14
-
-
Save andreagrandi/7e578684af2a55fa0aa64ab48a43f5bc to your computer and use it in GitHub Desktop.
Claude Code notifications hooks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| "hooks": { | |
| "Notification": [ | |
| { | |
| "matcher": "", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "terminal-notifier -title \"🔔 Claude Code\" -message \"Claude needs your input\"" | |
| } | |
| ] | |
| } | |
| ], | |
| "Stop": [ | |
| { | |
| "matcher": "", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "terminal-notifier -title \"✅ Claude Code\" -message \"The task has been completed\"" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment