Files
nexus/wiki/concepts/每日复盘机制.md
2026-04-27 20:02:52 +08:00

41 lines
1.3 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: []
sources: []
last_updated: 2026-04-17
---
## 定义
每天 23:00北京时间自动执行的复盘流程——通过 OpenClaw cron 任务实现,每个 Agent 独立运行自己的复盘流程。
## 复盘流程5步
1. 读取当天的 memory 文件(`memory/YYYY-MM-DD.md`
2. 调用 `self_improvement_log` 记录今日学习
3. 检查是否有 Pattern-Key 与之前重复(重复踩坑的信号)
4. 把有价值的经验同步到 memory-lancedb-pro长期记忆
5. 通过 Telegram 发送复盘摘要
## 核心价值
**发现静默漏洞**:没有人会主动去想"3月27日有没有生成 memory 文件"这种问题,但复盘机制会发现它。
## Pattern-Key 监控
- `cron.daily-self-review`:活跃持续优化领域(已出现 9 次)
- `cron.telegram-delivery`:第二次出现即解决
- `cron.naming-convention`:一次性错误
## 相关 Concept
- [[Self-Improving-Skill]]:复盘内容的具体载体
- [[双层记忆架构]]:复盘机制是三层中的最高层
- [[Pattern-Key]]:复盘时检查重复踩坑的关键字段
- [[Recurrence-Count]]:判断问题严重程度的指标
## 相关 Entity
- [[OpenClaw]]:提供 cron 定时任务能力
## Aliases
- 每日复盘
- 23:00 复盘
- self-review
- daily review