Install
openclaw skills install memory-hygiene-automatonAudit, clean, and optimize Clawdbot's vector memory (LanceDB). Use when memory is bloated with junk, token usage is high from irrelevant auto-recalls, or set...
openclaw skills install memory-hygiene-automatonKeep vector memory lean. Prevent token waste from junk memories.
记忆系统优化咨询:
| 服务 | 价格 | 交付 |
|---|---|---|
| 记忆系统审计 | ¥800/次 | 完整分析报告 + 优化建议 |
| 向量数据库清理 | ¥500/次 | 清理 + 重新索引 |
| 记忆架构设计 | ¥2000/次 | 定制记忆系统架构 |
| 月度维护顾问 | ¥1500/月 | 每周清理 + 性能监控 |
联系: 微信/Telegram 私信,备注"记忆优化"
Audit: Check what's in memory
memory_recall query="*" limit=50
Wipe: Clear all vector memory
rm -rf ~/.clawdbot/memory/lancedb/
Then restart gateway: clawdbot gateway restart
Reseed: After wipe, store key facts from MEMORY.md
memory_store text="<fact>" category="preference|fact|decision" importance=0.9
The main source of junk is autoCapture: true. Disable it:
{
"plugins": {
"entries": {
"memory-lancedb": {
"config": {
"autoCapture": false,
"autoRecall": true
}
}
}
}
}
Use gateway action=config.patch to apply.
✅ Store:
❌ Never store:
Set up a monthly wipe + reseed:
cron action=add job={
"name": "memory-maintenance",
"schedule": "0 4 1 * *",
"text": "Monthly memory maintenance: 1) Wipe ~/.clawdbot/memory/lancedb/ 2) Parse MEMORY.md 3) Store key facts to fresh LanceDB 4) Report completion"
}
When using memory_store: