Created
January 9, 2026 23:27
-
-
Save david-jarman/27d6eec0ec0114f545d5dff84152a9ed to your computer and use it in GitHub Desktop.
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
| { | |
| "model": "claude-opus-4-5", | |
| "enabledPlugins": { | |
| "csharp-lsp@claude-plugins-official": true, | |
| "commit-commands@claude-plugins-official": true, | |
| "microsoft-docs@microsoft-docs-marketplace": true, | |
| "code-simplifier@claude-plugins-official": true | |
| }, | |
| "hooks": { | |
| "Notification": [ | |
| { | |
| "matcher": "permission_prompt", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "input=$(cat) && powershell.exe -NoProfile -Command \"Import-Module BurntToast; New-BurntToastNotification -Text 'Claude Code Notification', '$(echo \"$input\" | jq -r '.message')'\"" | |
| } | |
| ] | |
| }, | |
| { | |
| "matcher": "idle_prompt", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "input=$(cat) && powershell.exe -NoProfile -Command \"Import-Module BurntToast; New-BurntToastNotification -Text 'Claude Code Notification', '$(echo \"$input\" | jq -r '.message')'\"" | |
| } | |
| ] | |
| } | |
| ], | |
| "Stop": [ | |
| { | |
| "matcher": "", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "powershell.exe -NoProfile -Command \"Import-Module BurntToast; New-BurntToastNotification -Text 'Claude Code', 'Claude: DONE'\"" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment