Auto-sync: 2026-04-27 12:02

This commit is contained in:
2026-04-27 12:03:03 +08:00
parent fbd6107be4
commit 83c6e24e7c
45 changed files with 1898 additions and 886 deletions

View File

@@ -0,0 +1,32 @@
---
title: "AutomatedReminders"
type: concept
tags: [automation, reminders, scheduling]
sources: [multi-channel-assistant]
last_updated: 2026-04-27
---
## Definition
Automated Reminders自动化提醒是一种由定时任务Cron驱动、由 AI Agent 在预设时间主动向用户发送通知的机制。区别于被动查询——提醒在用户没有主动发起请求的情况下,根据时间或事件自动触发。
## Core Pattern
1. **触发条件**:时间驱动(每周一 18:00或事件驱动任务截止前 24h
2. **提醒生成**AI Agent 根据上下文(个人 CRM、 calendario、项目状态生成个性化提醒内容
3. **发送通道**Telegram / Slack / SMS / Email 等
4. **记忆上下文**:提醒内容往往依赖 [[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]](习惯追踪的主动提醒)