Route OpenClaw CLI requests to the right command family and profile, then verify the outcome.
Coding
gateway-notify
Set up automatic notifications when OpenClaw gateway restarts. Use when user wants to be notified of gateway startup events via any messaging channel (iMessage, WhatsApp, Telegram, Discord, etc.).
What it does
Set up automatic notifications when OpenClaw gateway restarts. Use when user wants to be notified of gateway startup events via any messaging channel (iMessage, WhatsApp, Telegram, Discord, etc.).
The skill document
Gateway Notify
Send a notification (with user confirmation) when the OpenClaw gateway starts up.
What It Does
Creates a hook that triggers on gateway:startup events and sends a minimal notification (startup timestamp only) to the user's preferred channel.
Privacy notice: This hook auto-runs on every gateway startup and sends a message to your chosen messaging channel. Only the startup timestamp is transmitted — no local configuration, model names, or network details leave your machine.
Quick Start
⚠️ Before running setup, confirm with the user:
- The setup script will execute shell commands and write files under
~/.openclaw/hooks/.- It will restart the gateway — this will briefly disconnect the current session (requires manual reconnect if auto-reconnect is unavailable).
- On every subsequent gateway startup, a notification will be sent automatically to the specified messaging channel. Only the startup timestamp is transmitted — no model names, API keys, or local paths leave your machine. Note: the message passes through the third-party channel's servers, which may log message metadata (send time, sender).
- To uninstall: run
scripts/uninstall_gateway_notify.shor delete~/.openclaw/hooks/gateway-restart-notify/and restart the gateway. Deleting the skill alone does NOT stop the hook.Ask the user to confirm they accept these actions before proceeding.
Run the setup script with the user's messaging channel and address:
scripts/setup_gateway_notify.sh
Examples:
scripts/setup_gateway_notify.sh imessage [email protected]
scripts/setup_gateway_notify.sh whatsapp +1234567890
scripts/setup_gateway_notify.sh telegram @username
The script will (requires user confirmation before execution):
- Create the hook directory at
~/.openclaw/hooks/gateway-restart-notify - Generate the handler with the specified channel configuration (with security hardening)
- Restart the gateway to activate — this will briefly disconnect the current session (OpenClaw 2026.7+ auto-loads hooks, no explicit enable needed)
How It Works
The hook uses OpenClaw's internal hook system:
- Listens for
gateway:startupevents - Collects gateway startup time
- Sends notification via the configured channel CLI
Supported Channels
See CHANNELS.md for channel-specific CLI commands and address formats.
Requirements
- OpenClaw gateway 2026.7+
python3in$PATH(used for safe JSON serialization during setup)- Channel CLI tool installed:
imsg(iMessage),wacli(WhatsApp), oropenclaw message(Telegram/Discord/Slack)
Supported Channels
| Channel | CLI | Address format |
|---|---|---|
imessage | imsg | Email or phone (e.g. [email protected], +8615900000000) |
whatsapp | wacli | Phone with country code (e.g. +1234567890) |
telegram | openclaw message | Chat ID or @username |
discord | openclaw message | Channel ID (e.g. 1234567890) |
slack | openclaw message | Channel name or ID (e.g. #general) |
Script Flags
| Flag | Effect |
|---|---|
--force | Skip the "overwrite existing hook?" prompt only |
--yes | Skip the privacy confirmation prompt (for CI/automation) |
Note: --force does not skip the privacy confirmation. Use --force --yes together for fully non-interactive setup.
Debugging Notifications
If notifications stop arriving, check the gateway log for [gateway-restart-notify] entries:
openclaw gateway logs | grep gateway-restart-notify
Notification failures are caught silently (to avoid blocking gateway startup) — the gateway log is the authoritative source for hook execution errors.
Manual Setup
If you need to customize the hook, see MANUAL.md for step-by-step instructions.
Related skills
Manage Notes, Tasks, Calendar, Files, Contacts, and Deck boards in your Nextcloud instance via CLI commands.
Subscribe AI agents to a community-curated security advisory feed for AI-agent threats.
Interact with the Maestro API to create tasks, list tasks, and send room messages using the configured OpenClaw Maestro connection.
Operate and extend the read-only OpenClaw dashboard backend, frontend tabs, and security model.
Self-hosted dashboard for monitoring OpenCLAW AI sessions and managing tasks.