Notify lets your agent send push notifications when something needs your attention. Use it for completed work, unblock requests, reminders, and important updates.

What You’ll Get

NotificationExample
Work complete”Your expense report is ready — $342 this week”
Agent blocked”I need your API key to continue”
Reminder”Time for your daily standup”
Important update”A new reply is waiting in Cue”

Benefits

BenefitDescription
Stay informedKnow when the agent finishes work or finds something important
Unblock quicklySee when the agent needs input so work can continue
Reduce checkingLet the agent reach out instead of reopening the app to poll for updates

Using Notifications in the App

Receiving Notifications

Notifications appear on your phone or watch when your agent has something to share. Tap to open Cue and respond. Common cases today:
  • a message arrives in a conversation
  • an automation completes
  • the agent needs input or hits a system issue

Managing Notifications

  1. Go to Settings > Notifications
  2. Toggle categories on/off
  3. Set quiet hours when you don’t want to be disturbed

For Developers

Build agents that send push notifications using the Cue CLI.

Requirements

  • cue CLI installed and authenticated (cue then /auth)
  • User must have the iOS app installed with notifications enabled

Send a notification

cue notify "Title" "Message body" [category]

With custom data

cue notify --title "Action Needed" --body "Call dentist" --category "system" --data '{"task_id":"abc-123"}'

Parameters

ParameterRequiredDescription
--titleYesNotification title (max 200 chars)
--bodyYesNotification body (max 1000 chars)
--categoryNoNotification category for routing and preferences (defaults to system)
--dataNoCustom JSON payload

Common Categories

CategoryUse for
messagesChat messages
automationsScheduled task results
systemAlerts, unblock requests, general updates
Use system unless you have a clear reason to route the notification as a message or automation result.

Examples

Message notification:
cue notify --title "New Message" --body "A new reply is waiting in Cue" --category "messages"
Reminder:
cue notify --title "Reminder" --body "Time for your daily standup" --category "system"
Automation result:
cue notify --title "Expense Report" --body "Weekly report: $342.50" --category "automations"
Blocked workflow:
cue notify --title "Action Needed" --body "I need your API key to continue" --category "system"

Troubleshooting

ErrorFix
Not authenticatedRun cue then /auth
no_device_tokensUser hasn’t installed the mobile app
User preferences blockUser muted this category