send_immediate_reminder
Send instant health reminder notifications to prompt users to take breaks and move around, with customizable messages, titles, and sound options.
Instructions
立即发送一次健康提醒通知(不影响定时器)
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| message | No | 提醒消息内容 | 该起身活动一下了! | 
| title | No | 通知标题 | 健康提醒 | 
| sound | No | 是否播放提示音 | 
Input Schema (JSON Schema)
{
  "properties": {
    "message": {
      "default": "该起身活动一下了!",
      "description": "提醒消息内容",
      "type": "string"
    },
    "sound": {
      "default": true,
      "description": "是否播放提示音",
      "type": "boolean"
    },
    "title": {
      "default": "健康提醒",
      "description": "通知标题",
      "type": "string"
    }
  },
  "type": "object"
}