start_reminder
Set up periodic system notifications to remind users to take breaks and move around, with customizable intervals, messages, and notification settings.
Instructions
启动健康提醒定时器,每隔指定时间弹出系统通知
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| interval | No | 提醒间隔时间(分钟),默认 30 分钟 | |
| message | No | 提醒消息内容 | 该起身活动一下了!久坐对健康不利,建议站起来走动走动。 | 
| title | No | 通知标题 | 健康提醒 | 
| sound | No | 是否播放提示音 | 
Input Schema (JSON Schema)
{
  "properties": {
    "interval": {
      "default": 30,
      "description": "提醒间隔时间(分钟),默认 30 分钟",
      "type": "number"
    },
    "message": {
      "default": "该起身活动一下了!久坐对健康不利,建议站起来走动走动。",
      "description": "提醒消息内容",
      "type": "string"
    },
    "sound": {
      "default": true,
      "description": "是否播放提示音",
      "type": "boolean"
    },
    "title": {
      "default": "健康提醒",
      "description": "通知标题",
      "type": "string"
    }
  },
  "type": "object"
}