62 lines
4.1 KiB
Markdown
62 lines
4.1 KiB
Markdown
---
|
||
title: "Phone Call Notifications"
|
||
type: source
|
||
tags: []
|
||
date: 2026-04-22
|
||
---
|
||
|
||
## Source File
|
||
- [[Agent/usecases/phone-call-notifications.md]]
|
||
|
||
## Summary(用中文描述)
|
||
- 核心主题:AI Agent 通过真实电话呼叫(而非推送通知)向用户发送紧急提醒,实现 Agent → 用户双向语音通话
|
||
- 问题域:推送通知容易被忽视,聊天消息容易被埋没,紧急信息无法可靠触达用户
|
||
- 方法/机制:通过 clawr.ing 托管电话服务(无需 Twilio/API Key 配置),Agent 评估事件优先级,决定是否值得打电话,主动拨叫用户真实号码;通话中用户可实时提问,Agent 实时响应,实现真正的双向对话
|
||
- 结论/价值:电话是唯一可靠绕过注意力屏障的触达方式;Agent 主动判断"是否值得打电话"而非被动响应;clawr.ing 消除电话集成的技术门槛
|
||
|
||
## Key Claims(用中文描述)
|
||
- Agent 主动拨叫用户,而非用户呼叫 Agent——这是注意力触达效率的关键差异
|
||
- clawr.ing 消除了电话 API 配置门槛,一段 setup prompt 即完成集成,覆盖 100+ 国家真实 PSTN 电话
|
||
- 电话通知需与 Heartbeat/Cron Job 配合作为触发器,clawr.ing 本身仅是投递通道
|
||
- 通话场景下应使用快速模型(Haiku 级别)以降低延迟
|
||
- clawr.ing 不存储录音或文字记录,音频传输加密后即时销毁
|
||
|
||
## Key Quotes
|
||
> "Phone call means 'this actually matters.' If your agent calls you 10 times a day, you'll start ignoring it."
|
||
> — 核心设计原则:控制电话通知频率,保持其作为最高优先级触达通道的价值
|
||
|
||
> "Unlike a push notification, you can ask follow-up questions on the call."
|
||
> — 双向对话是电话通知区别于所有其他通知渠道的本质差异
|
||
|
||
## Key Concepts
|
||
- [[Voice Notification Channel]]:Agent 通过主动拨打电话作为高优先级通知投递通道,与推送通知/聊天消息并列
|
||
- [[Two-Way Voice Conversation]]:Agent 主动拨叫用户,用户可实时提问,Agent 实时响应,而非单向广播
|
||
- [[Call-Worthy Threshold]]:仅当事件足够重要时才触发电话,避免通知疲劳
|
||
- [[PSTN Calling]]:真实公共交换电话网电话(非 VoIP 叠加层),确保全球覆盖和可靠接通
|
||
|
||
## Key Entities
|
||
- [[clawr.ing]]:托管电话服务提供商,消除了 Twilio 等传统电话 API 的配置复杂度,为 Agent 提供一键电话呼叫能力
|
||
- [[OpenClaw]]:Agent 框架,通过 clawr.ing skill 实现主动电话通知功能
|
||
- [[clawhub.ai]]:OpenClaw Skill 市场,托管 clawr.ing skill 安装包
|
||
|
||
## Connections
|
||
- [[Phone-Based-Personal-Assistant]] ← extends ← [[phone-call-notifications]]
|
||
- Phone-Based Personal Assistant 侧重 Agent 接收用户来电并进行语音交互(用户 → Agent)
|
||
- Phone Call Notifications 侧重 Agent 主动向外拨叫通知用户(Agent → 用户)
|
||
- 两者互为补充,构成完整的语音双向通信能力
|
||
- [[multi-channel-assistant]] ← shares_channel ← [[phone-call-notifications]]
|
||
- 同属 OpenClaw 多渠道个人助理体系,但 Phone Call Notifications 补充了最高优先级的语音触达通道
|
||
- [[Custom Morning Brief]] ← delivery_channel ← [[phone-call-notifications]]
|
||
- 晨间简报可通过电话通道投递,实现"每天 7:30 准时来电"场景
|
||
- [[Self-Healing-Home-Server]] ← delivery_channel ← [[phone-call-notifications]]
|
||
- 家庭服务器关键告警可通过电话第一时间触达用户
|
||
- [[earnings-tracker]] ← delivery_channel ← [[phone-call-notifications]]
|
||
- 股价暴跌等紧急事件可通过电话立即通知
|
||
|
||
## Contradictions
|
||
- 与 [[phone-based-personal-assistant]] 存在方向差异:
|
||
- 冲突点:谁来发起通话
|
||
- 当前观点(phone-call-notifications):Agent 主动拨叫用户,拨叫门槛高(仅紧急事件)
|
||
- 对方观点(phone-based-personal-assistant):用户主动呼叫 Agent,Agent 接听并提供助理服务
|
||
- 协调说明:两者不冲突——前者用于紧急通知(Agent → 用户),后者用于主动查询(用户 → Agent),共同构成双向语音通信体系
|