Install
openclaw skills install cross-platform-notifierTriggers native system notifications across Windows, macOS, and Linux (including WSL) to alert the user when tasks are complete.
openclaw skills install cross-platform-notifierThis skill provides a unified way to send visual alerts to the user's desktop regardless of their operating system. It is designed to bridge the gap between different OS notification systems and specifically handles the complexity of WSL (Windows Subsystem for Linux).
The skill uses a wrapper script notify.sh that detects the host operating system and chooses the appropriate native tool.
Note: As of v1.0.0, this skill has been verified on Windows (including WSL) and follows standard AppleScript/Linux conventions for other platforms.
To send a notification, execute the following shell command:
./skills/cross-platform-notifier/scripts/notify.sh "Your message here" "Your title here"
(Note: Ensure the script has execution permissions: chmod +x scripts/notify.sh)
System.Windows.Forms.MessageBox for a reliable pop-up.osascript (AppleScript) to trigger a native alert box.notify-send for standard desktop banners.powershell.exe to bridge the notification back to the Windows host desktop.Scenario: Finished a heavy data process
./skills/cross-platform-notifier/scripts/notify.sh "I've finished analyzing those files! 🦞" "Analysis Complete"
Scenario: Error in background build
./skills/cross-platform-notifier/scripts/notify.sh "The build failed. Please check the logs. ⚠️" "Error Alert"