49 lines
3.0 KiB
Markdown
49 lines
3.0 KiB
Markdown
---
|
||
title: "Event Guest Confirmation"
|
||
type: source
|
||
tags: []
|
||
date: 2026-04-22
|
||
---
|
||
|
||
## Source File
|
||
- [[Agent/usecases/event-guest-confirmation]]
|
||
|
||
## Summary(用中文描述)
|
||
- 核心主题:AI Agent 通过电话自动确认活动嘉宾出席情况
|
||
- 问题域:活动组织者手动逐一电话确认出席的低效痛点
|
||
- 方法/机制:OpenClaw + SuperCall 插件实现 AI 语音电话批量外呼,确认出席并收集备注
|
||
- 结论/价值:真人电话比短信回复率高,AI persona 保证通话安全隔离和话题专注
|
||
|
||
## Key Claims(用中文描述)
|
||
- OpenClaw + SuperCall 通过 AI 语音电话自动确认活动嘉宾出席状态(主体 + 机制 + 结果)
|
||
- SuperCall 的沙盒 persona 设计使 AI 只拥有预设上下文,无法访问用户 Agent 或文件(主体 + 机制 + 结果)
|
||
- 沙盒 persona 每通电话独立重置,避免对话间信息混淆(主体 + 机制 + 结果)
|
||
- 通话后汇总生成出席确认、未出席、未接听三分类摘要(主体 + 机制 + 结果)
|
||
|
||
## Key Quotes
|
||
> "The key difference: SuperCall is a fully standalone voice agent. The AI persona on the call only has access to the context you provide (the persona name, the goal, and the opening line)." — 解释 SuperCall 与内置 voice_call 插件的核心差异
|
||
> "The person on the other end of the call can't manipulate or access your agent through the conversation. There's no risk of prompt injection or data leakage." — 强调安全隔离机制
|
||
> "Real phone calls cost money: Each call uses Twilio minutes." — 提醒实际部署成本考量
|
||
|
||
## Key Concepts
|
||
- [[SuperCall]]:OpenClaw 的独立语音 Agent 插件,基于 GPT-4o Realtime API,每通电话独立沙盒运行
|
||
- [[Sandboxed Persona]]:SuperCall 的核心设计原则——AI persona 只拥有预设的 persona name、goal、opening line,无法访问外部系统
|
||
- [[AI 电话外呼]]:通过 Twilio 电话网络实现的 AI 批量自动外呼确认流程
|
||
|
||
## Key Entities
|
||
- [[OpenClaw]]:多 Agent 框架,提供 memory、workflow 编排和 SuperCall 插件集成能力
|
||
- [[SuperCall]]:由 @xonder 开发的 OpenClaw 语音插件(clawhub.ai/xonder/supercall)
|
||
- [[Twilio]]:电话外呼基础设施提供商,提供拨打电话的分钟数计费服务
|
||
- [[ngrok]]:Webhook 隧道工具,用于将本地服务暴露给 Twilio 的回调请求
|
||
|
||
## Connections
|
||
- [[phone-based-personal-assistant]] ← similar_use_case ← [[event-guest-confirmation]]
|
||
- [[OpenClaw]] ← powers ← [[event-guest-confirmation]]
|
||
- [[SuperCall]] ← enables ← [[event-guest-confirmation]]
|
||
|
||
## Contradictions
|
||
- 与 [[phone-based-personal-assistant]] 对比:
|
||
- 冲突点:两者都使用电话外呼,但 [[event-guest-confirmation]] 强调 SuperCall 的独立沙盒特性;[[phone-based-personal-assistant]] 更侧重个人助手的日常任务场景
|
||
- 当前观点:[[event-guest-confirmation]] 认为 SuperCall 的独立沙盒设计对确认类任务更安全专注
|
||
- 对方观点:[[phone-based-personal-assistant]] 可能更适合需要访问更多上下文的复杂对话场景
|