Bug: dreaming CLI - plugins.allow false-positive warning
问题:openclaw dreaming [status|on|off] CLI 命令需要在 plugins.allow 里加 "dreaming",但加了之后反而报 "plugin not found" 被当作无效配置忽略。
配置:
"plugins": {
"allow": ["dreaming"],
"entries": {
"memory-core": {
"config": {
"dreaming": {
"enabled": true
}
}
}
}
}
错误信息:
plugins.allow: plugin not found: dreaming (stale config entry ignored; remove it from plugins config)
根因:dreaming 不是独立插件,是 memory-core 的内部功能,但 CLI 命令的注册机制却要求它必须在 plugins.allow 里。
现状:memory-core 的 dreaming 功能在 cron 调度下正常运行,但 /dreaming on/off/status 这些 CLI 命令完全无法使用。
建议修复:文档明确说明不应该把 dreaming 加到 plugins.allow,或者把 dreaming 注册为真正的插件 ID。
Bug: dreaming CLI - plugins.allow false-positive warning
问题:
openclaw dreaming [status|on|off]CLI 命令需要在 plugins.allow 里加 "dreaming",但加了之后反而报 "plugin not found" 被当作无效配置忽略。配置:
错误信息:
根因:dreaming 不是独立插件,是 memory-core 的内部功能,但 CLI 命令的注册机制却要求它必须在 plugins.allow 里。
现状:memory-core 的 dreaming 功能在 cron 调度下正常运行,但 /dreaming on/off/status 这些 CLI 命令完全无法使用。
建议修复:文档明确说明不应该把 dreaming 加到 plugins.allow,或者把 dreaming 注册为真正的插件 ID。