Files
nexus/wiki/sources/yang-xia-ri-ji-2.md
2026-04-14 16:02:50 +08:00

44 lines
2.1 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: "养虾日记2让Agent更懂你OpenClaw + Self-Improving 复盘"
type: source
tags: [AI, Agent, OpenClaw, Self-Improving, 记忆系统]
date: 2026-04-01
source_file: raw/微信公众号/养虾日记2让Agent更懂你OpenClaw + Self-Improving 复盘实战案例分享.md
---
## Summary
- 核心主题解决AI Agent每次对话都是白纸的记忆问题
- 问题域Agent没有长期记忆每次对话需要重新描述上下文
- 方法/机制:三层记忆架构(短期记忆文件 + 长期向量数据库 + self-improving复盘
- 结论/价值错误只犯一次第二次就知道怎么做——self-improving让Agent持续进化
## Key Claims
- 双层记忆架构memory文件管上下文LanceDB管长期知识
- self-improving skill让每个错误只犯一次Recurrence-Count是核心指标
- 每日23:00定时复盘推动Agent持续改进
## Key Quotes
> "三层各司其职每日文件管上下文向量数据库管知识self-improving 管成长。" — 比利哥
> "错误只犯一次,第二次就知道怎么做对。" — 比利哥
## Key Concepts
- [[三层记忆架构]]:短期文件(每日对话)+ 长期向量LanceDB+ self-improving复盘
- [[Self-Improving Skill]]结构化经验记录系统固定格式让Agent能检索学习
- [[Pattern-Key]]:错误分类标签,重复出现是系统性问题的信号
- [[Recurrence-Count]]:重复次数指标,>1说明需要系统性解决
## Key Entities
- [[OpenClaw]]AI Agent操作系统
- [[星辉]]xinghuiOpenClaw Agent之一
- [[LanceDB]]:向量数据库,用于长期记忆存储
- [[比利哥]]:作者
## Connections
- [[yang-xia-ri-ji-1]] → 技术基础 → [[yang-xia-ri-ji-2]](同一作者,从照片管理到记忆系统)
- [[养虾日记4]] ← 问题延续 ← [[yang-xia-ri-ji-2]]Context Limit问题可能与记忆系统相关
- [[养龙虾5天血泪史]] ← 深化 ← [[yang-xia-ri-ji-2]](更全面的记忆调试经验)
## Contradictions
- 与"Agent应该天生记住一切"假设冲突:实际需要主动设计记忆系统