Files
openclaw/extensions/memory-core/src/dreaming-command.test.ts
Vignesh 4c1022c73b feat(memory-core): add dreaming promotion with weighted recall thresholds (#60569)
* memory-core: add dreaming promotion flow with weighted thresholds

* docs(memory): mark dreaming as experimental

* memory-core: address dreaming promotion review feedback

* memory-core: harden short-term promotion concurrency

* acpx: make abort-process test timer-independent

* memory-core: simplify dreaming config with mode presets

* memory-core: add /dreaming command and tighten recall tracking

* ui: add Dreams tab with sleeping lobster animation

Adds a new Dreams tab to the gateway UI under the Agent group.
The tab is gated behind the memory-core dreaming config — it only
appears in the sidebar when dreaming.mode is not 'off'.

Features:
- Sleeping vector lobster with breathing animation
- Floating Z's, twinkling starfield, moon glow
- Rotating dream phrase bubble (17 whimsical phrases)
- Memory stats bar (short-term, long-term, promoted)
- Active/idle visual states
- 14 unit tests

* plugins: fix --json stdout pollution from hook runner log

The hook runner initialization message was using log.info() which
writes to stdout via console.log, breaking JSON.parse() in the
Docker smoke test for 'openclaw plugins list --json'. Downgrade to
log.debug() so it only appears when debugging is enabled.

* ui: keep Dreams tab visible when dreaming is off

* tests: fix contracts and stabilize extension shards

* memory-core: harden dreaming recall persistence and locking

* fix: stabilize dreaming PR gates (#60569) (thanks @vignesh07)

* test: fix rebase drift in telegram and plugin guards
2026-04-03 20:26:53 -07:00

146 lines
4.7 KiB
TypeScript

import type {
OpenClawPluginCommandDefinition,
PluginCommandContext,
} from "openclaw/plugin-sdk/core";
import type { OpenClawConfig, OpenClawPluginApi } from "openclaw/plugin-sdk/memory-core";
import { describe, expect, it, vi } from "vitest";
import { registerDreamingCommand } from "./dreaming-command.js";
function asRecord(value: unknown): Record<string, unknown> | null {
if (!value || typeof value !== "object" || Array.isArray(value)) {
return null;
}
return value as Record<string, unknown>;
}
function resolveStoredDreaming(config: OpenClawConfig): Record<string, unknown> {
const entry = asRecord(config.plugins?.entries?.["memory-core"]);
const pluginConfig = asRecord(entry?.config);
return asRecord(pluginConfig?.dreaming) ?? {};
}
function createHarness(initialConfig: OpenClawConfig = {}) {
let command: OpenClawPluginCommandDefinition | undefined;
let runtimeConfig: OpenClawConfig = initialConfig;
const runtime = {
config: {
loadConfig: vi.fn(() => runtimeConfig),
writeConfigFile: vi.fn(async (nextConfig: OpenClawConfig) => {
runtimeConfig = nextConfig;
}),
},
} as unknown as OpenClawPluginApi["runtime"];
const api = {
runtime,
registerCommand: vi.fn((definition: OpenClawPluginCommandDefinition) => {
command = definition;
}),
} as unknown as OpenClawPluginApi;
registerDreamingCommand(api);
if (!command) {
throw new Error("memory-core did not register /dreaming");
}
return {
command,
runtime,
getRuntimeConfig: () => runtimeConfig,
};
}
function createCommandContext(args?: string): PluginCommandContext {
return {
channel: "webchat",
isAuthorizedSender: true,
commandBody: args ? `/dreaming ${args}` : "/dreaming",
args,
config: {},
requestConversationBinding: async () => ({ status: "error", message: "unsupported" }),
detachConversationBinding: async () => ({ removed: false }),
getCurrentConversationBinding: async () => null,
};
}
describe("memory-core /dreaming command", () => {
it("registers with an options-aware description", () => {
const { command } = createHarness();
expect(command.name).toBe("dreaming");
expect(command.acceptsArgs).toBe(true);
expect(command.description).toContain("off|core|rem|deep");
});
it("shows mode explanations when invoked without args", async () => {
const { command } = createHarness();
const result = await command.handler(createCommandContext());
expect(result.text).toContain("Usage: /dreaming off|core|rem|deep");
expect(result.text).toContain("Dreaming status:");
expect(result.text).toContain("- off: disable automatic short-term to long-term promotion.");
expect(result.text).toContain("- core: cadence=0 3 * * *;");
expect(result.text).toContain("- rem: cadence=0 */6 * * *;");
expect(result.text).toContain("- deep: cadence=0 */12 * * *;");
});
it("persists mode changes under plugins.entries.memory-core.config.dreaming.mode", async () => {
const { command, runtime, getRuntimeConfig } = createHarness({
plugins: {
entries: {
"memory-core": {
config: {
dreaming: {
minScore: 0.9,
},
},
},
},
},
});
const result = await command.handler(createCommandContext("rem"));
expect(runtime.config.writeConfigFile).toHaveBeenCalledTimes(1);
expect(resolveStoredDreaming(getRuntimeConfig())).toMatchObject({
mode: "rem",
minScore: 0.9,
});
expect(result.text).toContain("Dreaming mode set to rem.");
expect(result.text).toContain("minScore=0.9");
});
it("returns status without mutating config", async () => {
const { command, runtime } = createHarness({
plugins: {
entries: {
"memory-core": {
config: {
dreaming: {
mode: "deep",
timezone: "America/Los_Angeles",
},
},
},
},
},
});
const result = await command.handler(createCommandContext("status"));
expect(result.text).toContain("Dreaming status:");
expect(result.text).toContain("- mode: deep");
expect(result.text).toContain("- cadence: 0 */12 * * * (America/Los_Angeles)");
expect(runtime.config.writeConfigFile).not.toHaveBeenCalled();
});
it("shows usage for invalid args and does not mutate config", async () => {
const { command, runtime } = createHarness();
const result = await command.handler(createCommandContext("unknown-mode"));
expect(result.text).toContain("Usage: /dreaming off|core|rem|deep");
expect(runtime.config.writeConfigFile).not.toHaveBeenCalled();
});
});