1.4 KiB
1.4 KiB
title, type, tags, sources, last_updated
| title | type | tags | sources | last_updated | ||||
|---|---|---|---|---|---|---|---|---|
| AutomatedReminders | concept |
|
|
2026-04-27 |
Definition
Automated Reminders(自动化提醒)是一种由定时任务(Cron)驱动、由 AI Agent 在预设时间主动向用户发送通知的机制。区别于被动查询——提醒在用户没有主动发起请求的情况下,根据时间或事件自动触发。
Core Pattern
- 触发条件:时间驱动(每周一 18:00)或事件驱动(任务截止前 24h)
- 提醒生成:AI Agent 根据上下文(个人 CRM、 calendario、项目状态)生成个性化提醒内容
- 发送通道:Telegram / Slack / SMS / Email 等
- 记忆上下文:提醒内容往往依赖 Agent-Memory 中的个人数据(联系人偏好、日程安排)
Example from multi-channel-assistant
Monday 6 PM: "🗑️ Trash day tomorrow"
Friday 3 PM: "✍️ Time to write the weekly company update"
Related Concepts
- Scheduled-Task-Flywheel — 定时任务的飞轮效应
- Cron定时任务 — 定时任务的技术实现
- Proactive-Agent-Recommendation — 主动式 Agent 的推荐能力
- TopicRouting — 提醒通常通过 config/updates 话题发送
Connections
- multi-channel-assistant ← implements ← AutomatedReminders
- HabitTrackerAccountabilityCoach ← uses ← AutomatedReminders(习惯追踪的主动提醒)