Install
openclaw skills install voice-reminderUse when user wants to make an outbound call or send a voice reminder, including delayed calls like "X分钟后给XX打电话" or "通知XXX做YYY". Also trigger on general notification requests like "通知他们" when the context implies phone notification is appropriate.
openclaw skills install voice-reminder调用 /aisp/addSingleTask 接口发起外呼任务。支持通讯录查找、延时外呼、定时任务调度。
| 姓名 | 别名 | 号码 |
|---|---|---|
| 季天雄 | 天雄 | 15345602935 |
| 何天龙 | 天龙 | 15655170806 |
python "$SKILL_DIR/scripts/main.py" "<CONTACT>" "<CONTENT>" <DELAY_SECONDS>
示例:
python scripts/main.py "天龙" "来开会" 0
支持自然语言指令,自动解析时间和内容:
python "$SKILL_DIR/scripts/schedule_call.py" "<指令>"
支持的指令格式:
通知天龙三分钟后去吃饭让天雄一小时后去睡觉通知天龙明天下午来公司通知天雄今天晚上开会时间表达式:
示例:
python scripts/schedule_call.py "通知天龙三分钟后去吃饭"
脚本会输出 JSON 格式的任务信息。调用者(Agent)必须使用 message 工具将结果发送给用户。
输出格式示例:
{
"version": "3.0",
"messageId": "dispatch_20260425195701",
"timestamp": 1777118221519,
"messages": [
{
"recipient": {
"type": "shrimp",
"phone": "15345602935"
},
"content": {
"type": "text",
"text": "去睡觉"
}
}
]
}
| retCode | 说明 |
|---|---|
000000 | 提交成功 |
200001 | 任务不存在(taskId/consumerId 不匹配) |
300001 | 参数校验失败(phones 为空) |
000001 | 操作失败 |
999999 | 系统异常 |