OpenClaw 4.5 新增“梦境”功能,通过定时任务自动修剪、整理并将代理记忆巩固为长期存储。
代码维护📅 2026/04/06
#CI/CD#开发者#全自动#GitHub#低风险#可复用#定时运行#代码维护#报告#日志
openclaw 4.5 added dreaming.
agent memory only grows. nothing gets pruned. your brain does it in your sleep. your agent doesn't.
now:
# openclaw.json
{
"plugins": {
"entries": {
"memory-core": {
"config": {
"dreaming": {
"enabled": true,
"frequency": "0 */6 * * *"
}
}
}
}
}
}
# check what it decided:
openclaw memory promote-explain "deployment workflow"
runs on a schedule you set. three phases.
light tidies and dedupes short-term material.
REM extracts themes, writes reflection blocks to DREAMS.md.
deep decides what earns long-term memory, writes it to MEMORY.md.
memory has always been the weakest part of agents. they store everything but never organize.
now, let your agent get some sleep.