Files
ai-chat-app/HEARTBEAT.md
hubian 213f898a7c feat: 项目管理机制 + 邮件发送技能 + 心跳任务
新增:
- PROJECTS.md: 项目开发记录文件(简介、启动命令、检查方式)
- email-sender技能: SMTP邮件发送工具
- 心跳任务: 每日对话总结

更新:
- MEMORY.md: 添加自动推送规范
- HEARTBEAT.md: 添加每日总结任务配置
2026-04-09 12:11:59 +08:00

24 lines
697 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# HEARTBEAT.md
# Keep this file empty (or with only comments) to skip heartbeat API calls.
# Add tasks below when you want the agent to check something periodically.
## 心跳任务
在每次心跳时检查并执行以下任务:
### 1. 每日对话总结
检查 `memory/heartbeat-state.json` 中的 `lastSummaryDate`
- 如果日期不是今天,且当前时间在 00:00-08:00 之间
- 总结昨天的对话内容,保存到 `memory/YYYY-MM-DD.md`(昨天日期)
- 更新 `lastSummaryDate` 为今天
```json
{
"lastSummaryDate": "2026-04-09",
"lastChecks": {}
}
```
**执行时机**: 每天第一次心跳落在凌晨时段时执行(不精确,但保证每天最多一次)