Files
nexus/wiki/concepts/每日复盘机制.md
2026-04-17 23:18:07 +08:00

32 lines
1.0 KiB
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.
---
title: "每日复盘机制"
type: concept
tags: [openclaw, memory, agent]
last_updated: 2026-04-17
---
## Definition
每日复盘机制是 OpenClaw Agent 通过每天23:00北京时间定时执行的自改进复盘流程通过 OpenClaw 的 cron 任务实现。
## Trigger
- 时间:每天 23:00 北京时间
- 实现OpenClaw cron 任务
- 频率:每个 agent 独立运行自己的复盘流程
## Process
1. 读取当天的 memory 文件
2. 调用 self_improvement_log 记录今日学习
3. 检查是否有 Pattern-Key 与之前重复(重复踩坑的信号)
4. 把有价值的经验同步到 memory-lancedb-pro长期记忆
5. 通过 Telegram 发送复盘摘要
## Value
- 发现流程漏洞即使没有人主动去查self-improving 也会定期检查并发现问题
- 避免重复踩坑:通过 Pattern-Key 追踪,同一类错误第二次就被解决
- 推动进化:从单次操作改进到系统性机制建立
## Related
- [[Self-Improving Skill]]
- [[双层记忆架构]]
- [[Pattern-Key]]
- [[OpenClaw]]