-
-
Notifications
You must be signed in to change notification settings - Fork 79.1k
[Bug]: documented openclaw memory CLI is listed but dispatch rejects it as unknown command #83745
Copy link
Copy link
Closed
Labels
P2Normal backlog priority with limited blast radius.Normal backlog priority with limited blast radius.clawsweeper:needs-live-reproClawSweeper needs live local, crabbox, or manual validation to confirm this issue.ClawSweeper needs live local, crabbox, or manual validation to confirm this issue.clawsweeper:needs-maintainer-reviewClawSweeper marked this issue as needing maintainer review before automation.ClawSweeper marked this issue as needing maintainer review before automation.clawsweeper:needs-product-decisionClawSweeper marked this issue as needing a product or behavior decision.ClawSweeper marked this issue as needing a product or behavior decision.clawsweeper:no-new-fix-prClawSweeper does not recommend queueing a new automated fix PR for this issue.ClawSweeper does not recommend queueing a new automated fix PR for this issue.issue-rating: 🐚 platinum hermitGood issue quality with a plausible reproduction path needing some confirmation.Good issue quality with a plausible reproduction path needing some confirmation.
Metadata
Metadata
Assignees
Labels
P2Normal backlog priority with limited blast radius.Normal backlog priority with limited blast radius.clawsweeper:needs-live-reproClawSweeper needs live local, crabbox, or manual validation to confirm this issue.ClawSweeper needs live local, crabbox, or manual validation to confirm this issue.clawsweeper:needs-maintainer-reviewClawSweeper marked this issue as needing maintainer review before automation.ClawSweeper marked this issue as needing maintainer review before automation.clawsweeper:needs-product-decisionClawSweeper marked this issue as needing a product or behavior decision.ClawSweeper marked this issue as needing a product or behavior decision.clawsweeper:no-new-fix-prClawSweeper does not recommend queueing a new automated fix PR for this issue.ClawSweeper does not recommend queueing a new automated fix PR for this issue.issue-rating: 🐚 platinum hermitGood issue quality with a plausible reproduction path needing some confirmation.Good issue quality with a plausible reproduction path needing some confirmation.
Type
Fields
Give feedbackNo fields configured for issues without a type.
Bug type
CLI regression / documented command missing at runtime
Summary
On OpenClaw
2026.5.18 (50a2481), the top-level CLI help and current docs advertise the built-inopenclaw memorycommand, but executingopenclaw memory ...fails withOpenClaw does not know the command "memory".This breaks documented memory inspection/search workflows and also causes agent/diagnostic flows that shell out to
openclaw memoryto fail, even while runtime memory tools and third-party memory plugins can still work.Environment
2026.5.18 (50a2481)openclaw-honchomemory_searchreturns results), so this is CLI command registration/dispatch, not necessarily memory backend outage.Evidence
openclaw --helplists the command:Docs search also points to the CLI page:
But actual commands fail:
Expected behavior
If
openclaw --helpand docs listmemory, thenopenclaw memory status,openclaw memory search, and related subcommands should be registered and executable.If the memory CLI was intentionally removed or renamed, the top-level help and docs should not advertise it, and agent/diagnostic flows should not call it.
Actual behavior
The CLI advertises
memory, but dispatch rejects it as an unknown command.Notes
This is distinct from #81077. That issue covers unknown commands with
--helpshowing generic top-level help. Here,memoryis explicitly listed by top-level help and linked in current docs, yet normal execution fails as unknown.Also distinct from Honcho plugin CLI:
openclaw honcho statusworks in this deployment after plugin cold start. The failing command is the built-in/documentedopenclaw memoryentrypoint.