Install
openclaw skills install windows-notifierSend native Windows desktop notifications for local reminders, alerts, and background-attention events. Use when the user wants a Windows popup, a local toast notification, or when reminder/alert messages should prefer local desktop notification instead of only chat delivery.
openclaw skills install windows-notifierSend a local Windows desktop notification on this machine.
This skill is a Windows-focused alias/wrapper around the shared desktop notification flow so agents can trigger a popup consistently when the user asks for a Windows reminder or when a reminder/alert should not rely only on chat visibility.
Run this from PowerShell with exec:
node "$env:USERPROFILE\.openclaw\workspace\skills\windows-notifier\scripts\send-notification.js" --title "<TITLE>" --message "<MESSAGE>" --timeout 10
Modern card / persistent dialog mode also goes through the same JS entry:
node "$env:USERPROFILE\.openclaw\workspace\skills\windows-notifier\scripts\send-notification.js" --title "<TITLE>" --message "<MESSAGE>" --mode modern --appName "OpenClaw"
Behavior summary:
send-notification.jsnode-notifiernode-notifier pathOptional flags:
--wait true|false--timeout <seconds|false|permanent>--sound true|false (default: true)--mode modern|card|dialog--appName <name>--mode modern|card|dialog prefers the built-in WPF modern card path when available, and otherwise falls back to node-notifier automatically.--timeout false|permanent|sticky|0 is treated as a persistent request intent, but final behavior depends on the active backend (built-in WPF on capable Windows, otherwise node-notifier).node-notifier remains the default non-Windows path and the cross-platform fallback mechanism.