Stats
Links
Categories
Windows toast notifications for Claude Code
npx claudepluginhub tianqizhang/claude-code-toastWindows toast notifications for Claude Code events using BurntToast
Windows toast notifications for Claude Code events using native Windows APIs.
No external modules required - uses native Windows toast notification APIs.
First, add the marketplace:
/plugin marketplace add TianqiZhang/claude-code-toast
Then install the plugin:
/plugin install toast-notifications@claude-code-toast
/plugin install TianqiZhang/claude-code-toast
/plugin marketplace add /path/to/claude-code-toast
/plugin install toast-notifications@claude-code-toast
Once installed, the plugin automatically:
| Event | Description |
|---|---|
Notification | Triggered when Claude Code sends a notification |
Stop | Triggered when Claude Code finishes responding |
claude-code-toast/
├── .claude-plugin/
│ ├── plugin.json # Plugin manifest
│ └── marketplace.json # Marketplace manifest
├── assets/
│ └── icon.png # Notification icon
├── hooks/
│ └── hooks.json # Hook configuration
├── scripts/
│ ├── toast-notification.ps1 # Notification handler
│ └── toast-stop.ps1 # Stop event handler
├── LICENSE
└── README.md
# Test notification toast
'{"message": "Test notification", "notification_type": "info"}' | powershell -File .\scripts\toast-notification.ps1
# Test stop toast
powershell -File .\scripts\toast-stop.ps1
MIT