OpenClaw Push Notifications

Send Signalgrid push notifications from OpenClaw
to instantly alert your iOS and Android devices about tasks, automation, and system events.

The Signalgrid OpenClaw skill allows OpenClaw agents to send push notifications directly to your phone through the Signalgrid API.

This integration is useful for:

  • automation alerts
  • deployment notifications
  • task completion messages
  • AI workflow notifications
  • system alerts

Installation

Install the Signalgrid OpenClaw skill:

clawdhub --workdir ~/.openclaw install signalgrid-push

Ensure your OpenClaw Tool Profile is set to full.

OpenClaw Settings:

Config → Tools → Tool Profile


Environment Configuration

Configure the required environment variables in OpenClaw:

Config → Environment → Environment Variables Overrides → Add Entry

SIGNALGRID_CLIENT_KEY=your_client_key_here
SIGNALGRID_CHANNEL=your_channel_name_here

Send a Notification

Send a simple push notification:

node {baseDir}/skills/signalgrid-push/signalgrid-push.js --title "OpenClaw" --body "Hello from OpenClaw" --type INFO

Deployment Notification

node {baseDir}/skills/signalgrid-push/signalgrid-push.js --title "Deployment" --body "Build finished successfully" --type INFO

Critical Notification

node {baseDir}/skills/signalgrid-push/signalgrid-push.js --title "Attention" --body "This is a critical one" --type INFO --critical true

Options

Option
Description
--title
Notification title (required)
--body
Main message (required)
--type
Notification type: crit, warn, success, info
--critical
Emergency bypass flag

When to Use

This skill is triggered when the user asks to:

  • send a notification
  • notify me
  • send a push
  • push a message
  • alert me
  • send a Signalgrid notification
  • notify my phone

Notes

  • Requires a Signalgrid account: https://web.signalgrid.co
  • Signalgrid notifications do not require a phone number or message target

Related Documentation