OpenClaw Update Notifications - Monitor OpenClaw Application Updates
Update-Watcher’s OpenClaw checker monitors the OpenClaw application for available updates. It supports configurable update channels, allowing you to track stable releases, beta builds, or other release channels depending on your needs.
Prerequisites
- OpenClaw installed on the system.
- Network access to check the configured update channel.
Adding via CLI
Add an OpenClaw watcher:
update-watcher watch openclawSpecify an update channel:
update-watcher watch openclaw --channel stableConfiguration Reference
| Option | Type | Default | Description |
|---|---|---|---|
channel | string | "" | The update channel to check for new releases. Leave empty for the default channel. Set to a specific channel name (e.g., stable, beta) to track that release stream. |
YAML Configuration Example
Basic OpenClaw configuration (default channel):
watchers:
- type: openclawTrack a specific update channel:
watchers:
- type: openclaw
channel: stableTrack the beta channel:
watchers:
- type: openclaw
channel: betaCombined with other checkers:
watchers:
- type: apt
security_only: true
- type: docker
- type: openclaw
channel: stableHow It Works
The OpenClaw checker queries the configured update channel for new releases. It compares the currently installed version against the latest available version in the specified channel and reports when a newer version is available.
Tips
Update Channels: Update channels allow you to control which release stream you track. Common channel configurations include:
- Default (empty string) – Uses the default release channel configured by the OpenClaw installation.
- stable – Track stable production releases only.
- beta – Track beta releases for early testing.
Pairing with System Checkers: If OpenClaw is running on a server alongside other services, combine it with the appropriate system package manager checker for comprehensive update monitoring.
Combined with system package manager:
watchers:
- type: apt
hide_phased: true
- type: openclaw
channel: stableRelated
Send OpenClaw update notifications to Slack, Discord, Email, Telegram, or any of the other 16 supported notification channels.