openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
359 lines (358 loc) • 18.3 kB
JavaScript
import { a as normalizeLowercaseStringOrEmpty, f as normalizeStringifiedOptionalString, r as lowercasePreservingWhitespace, s as normalizeOptionalLowercaseString } from "./string-coerce-mnp54Vah.js";
import { n as asNullableRecord } from "./record-coerce-DHZ4bFlT.js";
import "./agent-scope-MrLta7Pq.js";
import { c as resolveDefaultAgentId, o as resolveAgentWorkspaceDir } from "./agent-scope-config-CgCYpZfK.js";
import path from "node:path";
//#region src/memory-host-sdk/dreaming.ts
const DEFAULT_MEMORY_DREAMING_ENABLED = false;
const DEFAULT_MEMORY_DREAMING_TIMEZONE = void 0;
const DEFAULT_MEMORY_DREAMING_VERBOSE_LOGGING = false;
const DEFAULT_MEMORY_DREAMING_STORAGE_MODE = "separate";
const DEFAULT_MEMORY_DREAMING_SEPARATE_REPORTS = false;
const DEFAULT_MEMORY_DREAMING_FREQUENCY = "0 3 * * *";
const DEFAULT_MEMORY_DREAMING_PLUGIN_ID = "memory-core";
const MANAGED_MEMORY_DREAMING_CRON_NAME = "Memory Dreaming Promotion";
const MANAGED_MEMORY_DREAMING_CRON_TAG = "[managed-by=memory-core.short-term-promotion]";
const MEMORY_DREAMING_SYSTEM_EVENT_TEXT = "__openclaw_memory_core_short_term_promotion_dream__";
const LEGACY_MEMORY_LIGHT_DREAMING_CRON_NAME = "Memory Light Dreaming";
const LEGACY_MEMORY_LIGHT_DREAMING_CRON_TAG = "[managed-by=memory-core.dreaming.light]";
const LEGACY_MEMORY_LIGHT_DREAMING_EVENT_TEXT = "__openclaw_memory_core_light_sleep__";
const LEGACY_MEMORY_REM_DREAMING_CRON_NAME = "Memory REM Dreaming";
const LEGACY_MEMORY_REM_DREAMING_CRON_TAG = "[managed-by=memory-core.dreaming.rem]";
const LEGACY_MEMORY_REM_DREAMING_EVENT_TEXT = "__openclaw_memory_core_rem_sleep__";
const DEFAULT_MEMORY_LIGHT_DREAMING_CRON_EXPR = "0 */6 * * *";
const DEFAULT_MEMORY_LIGHT_DREAMING_LOOKBACK_DAYS = 2;
const DEFAULT_MEMORY_LIGHT_DREAMING_LIMIT = 100;
const DEFAULT_MEMORY_LIGHT_DREAMING_DEDUPE_SIMILARITY = .9;
const DEFAULT_MEMORY_DEEP_DREAMING_CRON_EXPR = "0 3 * * *";
const DEFAULT_MEMORY_DEEP_DREAMING_LIMIT = 10;
const DEFAULT_MEMORY_DEEP_DREAMING_MIN_SCORE = .8;
const DEFAULT_MEMORY_DEEP_DREAMING_MIN_RECALL_COUNT = 3;
const DEFAULT_MEMORY_DEEP_DREAMING_MIN_UNIQUE_QUERIES = 3;
const DEFAULT_MEMORY_DEEP_DREAMING_RECENCY_HALF_LIFE_DAYS = 14;
const DEFAULT_MEMORY_DEEP_DREAMING_MAX_AGE_DAYS = 30;
const DEFAULT_MEMORY_DEEP_DREAMING_MAX_PROMOTED_SNIPPET_TOKENS = 160;
const DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_ENABLED = true;
const DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_TRIGGER_BELOW_HEALTH = .35;
const DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_LOOKBACK_DAYS = 30;
const DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_MAX_CANDIDATES = 20;
const DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_MIN_CONFIDENCE = .9;
const DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_AUTO_WRITE_MIN_CONFIDENCE = .97;
const DEFAULT_MEMORY_REM_DREAMING_CRON_EXPR = "0 5 * * 0";
const DEFAULT_MEMORY_REM_DREAMING_LOOKBACK_DAYS = 7;
const DEFAULT_MEMORY_REM_DREAMING_LIMIT = 10;
const DEFAULT_MEMORY_REM_DREAMING_MIN_PATTERN_STRENGTH = .75;
const DEFAULT_MEMORY_DREAMING_SPEED = "balanced";
const DEFAULT_MEMORY_DREAMING_THINKING = "medium";
const DEFAULT_MEMORY_DREAMING_BUDGET = "medium";
const DEFAULT_MEMORY_LIGHT_DREAMING_SOURCES = [
"daily",
"sessions",
"recall"
];
const DEFAULT_MEMORY_DEEP_DREAMING_SOURCES = [
"daily",
"memory",
"sessions",
"logs",
"recall"
];
const DEFAULT_MEMORY_REM_DREAMING_SOURCES = [
"memory",
"daily",
"deep"
];
function normalizeTrimmedString(value) {
if (typeof value !== "string") return;
const trimmed = value.trim();
return trimmed.length > 0 ? trimmed : void 0;
}
function normalizeNonNegativeInt(value, fallback) {
const normalized = normalizeStringifiedOptionalString(value);
if (typeof value === "string" && !normalized) return fallback;
const num = typeof value === "string" ? Number(normalized) : Number(value);
if (!Number.isFinite(num)) return fallback;
const floored = Math.floor(num);
if (floored < 0) return fallback;
return floored;
}
function normalizeOptionalPositiveInt(value) {
if (value === void 0 || value === null) return;
const normalized = normalizeStringifiedOptionalString(value);
if (typeof value === "string" && !normalized) return;
const num = typeof value === "string" ? Number(normalized) : Number(value);
if (!Number.isFinite(num)) return;
const floored = Math.floor(num);
if (floored <= 0) return;
return floored;
}
function normalizeBoolean(value, fallback) {
if (typeof value === "boolean") return value;
if (typeof value === "string") {
const normalized = normalizeLowercaseStringOrEmpty(value);
if (normalized === "true") return true;
if (normalized === "false") return false;
}
return fallback;
}
function normalizeScore(value, fallback) {
const normalized = normalizeStringifiedOptionalString(value);
if (typeof value === "string" && !normalized) return fallback;
const num = typeof value === "string" ? Number(normalized) : Number(value);
if (!Number.isFinite(num) || num < 0 || num > 1) return fallback;
return num;
}
function normalizeSimilarity(value, fallback) {
return normalizeScore(value, fallback);
}
function normalizeStringArray(value, allowed, fallback) {
if (!Array.isArray(value)) return [...fallback];
const allowedSet = new Set(allowed);
const normalized = [];
for (const entry of value) {
const normalizedEntry = normalizeOptionalLowercaseString(entry);
if (!normalizedEntry || !allowedSet.has(normalizedEntry)) continue;
if (!normalized.includes(normalizedEntry)) normalized.push(normalizedEntry);
}
return normalized.length > 0 ? normalized : [...fallback];
}
function normalizeStorageMode(value) {
const normalized = normalizeOptionalLowercaseString(value);
if (normalized === "inline" || normalized === "separate" || normalized === "both") return normalized;
return DEFAULT_MEMORY_DREAMING_STORAGE_MODE;
}
function normalizeSpeed(value) {
const normalized = normalizeOptionalLowercaseString(value);
if (normalized === "fast" || normalized === "balanced" || normalized === "slow") return normalized;
}
function normalizeThinking(value) {
const normalized = normalizeOptionalLowercaseString(value);
if (normalized === "low" || normalized === "medium" || normalized === "high") return normalized;
}
function normalizeBudget(value) {
const normalized = normalizeOptionalLowercaseString(value);
if (normalized === "cheap" || normalized === "medium" || normalized === "expensive") return normalized;
}
function resolveExecutionConfig(value, fallback) {
const record = asNullableRecord(value);
const maxOutputTokens = normalizeOptionalPositiveInt(record?.maxOutputTokens);
const timeoutMs = normalizeOptionalPositiveInt(record?.timeoutMs);
const temperatureRaw = record?.temperature;
const temperature = typeof temperatureRaw === "number" && Number.isFinite(temperatureRaw) && temperatureRaw >= 0 ? Math.min(2, temperatureRaw) : void 0;
const model = normalizeTrimmedString(record?.model) ?? fallback.model;
return {
speed: normalizeSpeed(record?.speed) ?? fallback.speed,
thinking: normalizeThinking(record?.thinking) ?? fallback.thinking,
budget: normalizeBudget(record?.budget) ?? fallback.budget,
...model ? { model } : {},
...typeof maxOutputTokens === "number" ? { maxOutputTokens } : {},
...typeof temperature === "number" ? { temperature } : {},
...typeof timeoutMs === "number" ? { timeoutMs } : {}
};
}
function normalizePathForComparison(input) {
const normalized = path.resolve(input);
return process.platform === "win32" ? lowercasePreservingWhitespace(normalized) : normalized;
}
function formatLocalIsoDay(epochMs) {
const date = new Date(epochMs);
return `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, "0")}-${String(date.getDate()).padStart(2, "0")}`;
}
function resolveMemoryDreamingPluginId(cfg) {
const configuredSlot = normalizeTrimmedString(asNullableRecord(asNullableRecord(asNullableRecord(cfg)?.plugins)?.slots)?.memory);
if (configuredSlot && normalizeLowercaseStringOrEmpty(configuredSlot) !== "none") return configuredSlot;
return DEFAULT_MEMORY_DREAMING_PLUGIN_ID;
}
function resolveMemoryDreamingPluginConfig(cfg) {
const entries = asNullableRecord(asNullableRecord(asNullableRecord(cfg)?.plugins)?.entries);
const pluginId = resolveMemoryDreamingPluginId(cfg);
return asNullableRecord(asNullableRecord(entries?.[pluginId])?.config) ?? void 0;
}
/** @deprecated Use resolveMemoryDreamingPluginConfig. */
const resolveMemoryCorePluginConfig = resolveMemoryDreamingPluginConfig;
function resolveMemoryDreamingConfig(params) {
const dreaming = asNullableRecord(params.pluginConfig?.dreaming);
const frequency = normalizeTrimmedString(dreaming?.frequency) ?? "0 3 * * *";
const timezone = normalizeTrimmedString(dreaming?.timezone) ?? normalizeTrimmedString(params.cfg?.agents?.defaults?.userTimezone) ?? void 0;
const storage = asNullableRecord(dreaming?.storage);
const execution = asNullableRecord(dreaming?.execution);
const phases = asNullableRecord(dreaming?.phases);
const topLevelModel = normalizeTrimmedString(dreaming?.model);
const defaultExecution = resolveExecutionConfig(execution?.defaults, {
speed: DEFAULT_MEMORY_DREAMING_SPEED,
thinking: DEFAULT_MEMORY_DREAMING_THINKING,
budget: DEFAULT_MEMORY_DREAMING_BUDGET,
...topLevelModel ? { model: topLevelModel } : {}
});
const light = asNullableRecord(phases?.light);
const deep = asNullableRecord(phases?.deep);
const rem = asNullableRecord(phases?.rem);
const deepRecovery = asNullableRecord(deep?.recovery);
const maxAgeDays = normalizeOptionalPositiveInt(deep?.maxAgeDays);
const maxPromotedSnippetTokens = normalizeOptionalPositiveInt(deep?.maxPromotedSnippetTokens);
return {
enabled: normalizeBoolean(dreaming?.enabled, false),
frequency,
...timezone ? { timezone } : {},
verboseLogging: normalizeBoolean(dreaming?.verboseLogging, false),
storage: {
mode: normalizeStorageMode(storage?.mode),
separateReports: normalizeBoolean(storage?.separateReports, false)
},
execution: { defaults: defaultExecution },
phases: {
light: {
enabled: normalizeBoolean(light?.enabled, true),
cron: frequency,
lookbackDays: normalizeNonNegativeInt(light?.lookbackDays, 2),
limit: normalizeNonNegativeInt(light?.limit, 100),
dedupeSimilarity: normalizeSimilarity(light?.dedupeSimilarity, DEFAULT_MEMORY_LIGHT_DREAMING_DEDUPE_SIMILARITY),
sources: normalizeStringArray(light?.sources, [
"daily",
"sessions",
"recall"
], DEFAULT_MEMORY_LIGHT_DREAMING_SOURCES),
execution: resolveExecutionConfig(light?.execution, {
...defaultExecution,
speed: "fast",
thinking: "low",
budget: "cheap"
})
},
deep: {
enabled: normalizeBoolean(deep?.enabled, true),
cron: frequency,
limit: normalizeNonNegativeInt(deep?.limit, 10),
minScore: normalizeScore(deep?.minScore, DEFAULT_MEMORY_DEEP_DREAMING_MIN_SCORE),
minRecallCount: normalizeNonNegativeInt(deep?.minRecallCount, 3),
minUniqueQueries: normalizeNonNegativeInt(deep?.minUniqueQueries, 3),
recencyHalfLifeDays: normalizeNonNegativeInt(deep?.recencyHalfLifeDays, 14),
...typeof maxAgeDays === "number" ? { maxAgeDays } : { maxAgeDays: 30 },
maxPromotedSnippetTokens: maxPromotedSnippetTokens ?? 160,
sources: normalizeStringArray(deep?.sources, [
"daily",
"memory",
"sessions",
"logs",
"recall"
], DEFAULT_MEMORY_DEEP_DREAMING_SOURCES),
recovery: {
enabled: normalizeBoolean(deepRecovery?.enabled, true),
triggerBelowHealth: normalizeScore(deepRecovery?.triggerBelowHealth, DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_TRIGGER_BELOW_HEALTH),
lookbackDays: normalizeNonNegativeInt(deepRecovery?.lookbackDays, 30),
maxRecoveredCandidates: normalizeNonNegativeInt(deepRecovery?.maxRecoveredCandidates, 20),
minRecoveryConfidence: normalizeScore(deepRecovery?.minRecoveryConfidence, DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_MIN_CONFIDENCE),
autoWriteMinConfidence: normalizeScore(deepRecovery?.autoWriteMinConfidence, DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_AUTO_WRITE_MIN_CONFIDENCE)
},
execution: resolveExecutionConfig(deep?.execution, {
...defaultExecution,
speed: "balanced",
thinking: "high",
budget: "medium"
})
},
rem: {
enabled: normalizeBoolean(rem?.enabled, true),
cron: frequency,
lookbackDays: normalizeNonNegativeInt(rem?.lookbackDays, 7),
limit: normalizeNonNegativeInt(rem?.limit, 10),
minPatternStrength: normalizeScore(rem?.minPatternStrength, DEFAULT_MEMORY_REM_DREAMING_MIN_PATTERN_STRENGTH),
sources: normalizeStringArray(rem?.sources, [
"memory",
"daily",
"deep"
], DEFAULT_MEMORY_REM_DREAMING_SOURCES),
execution: resolveExecutionConfig(rem?.execution, {
...defaultExecution,
speed: "slow",
thinking: "high",
budget: "expensive"
})
}
}
};
}
function resolveMemoryDeepDreamingConfig(params) {
const resolved = resolveMemoryDreamingConfig(params);
return {
...resolved.phases.deep,
enabled: resolved.enabled && resolved.phases.deep.enabled,
...resolved.timezone ? { timezone: resolved.timezone } : {},
verboseLogging: resolved.verboseLogging,
storage: resolved.storage
};
}
function resolveMemoryLightDreamingConfig(params) {
const resolved = resolveMemoryDreamingConfig(params);
return {
...resolved.phases.light,
enabled: resolved.enabled && resolved.phases.light.enabled,
...resolved.timezone ? { timezone: resolved.timezone } : {},
verboseLogging: resolved.verboseLogging,
storage: resolved.storage
};
}
function resolveMemoryRemDreamingConfig(params) {
const resolved = resolveMemoryDreamingConfig(params);
return {
...resolved.phases.rem,
enabled: resolved.enabled && resolved.phases.rem.enabled,
...resolved.timezone ? { timezone: resolved.timezone } : {},
verboseLogging: resolved.verboseLogging,
storage: resolved.storage
};
}
function formatMemoryDreamingDay(epochMs, timezone) {
if (!timezone) return formatLocalIsoDay(epochMs);
try {
const parts = new Intl.DateTimeFormat("en-CA", {
timeZone: timezone,
year: "numeric",
month: "2-digit",
day: "2-digit"
}).formatToParts(new Date(epochMs));
const values = new Map(parts.map((part) => [part.type, part.value]));
const year = values.get("year");
const month = values.get("month");
const day = values.get("day");
if (year && month && day) return `${year}-${month}-${day}`;
} catch {}
return formatLocalIsoDay(epochMs);
}
function isSameMemoryDreamingDay(firstEpochMs, secondEpochMs, timezone) {
return formatMemoryDreamingDay(firstEpochMs, timezone) === formatMemoryDreamingDay(secondEpochMs, timezone);
}
function resolveMemoryDreamingWorkspaces(cfg, options = {}) {
const configured = Array.isArray(cfg.agents?.list) ? cfg.agents.list : [];
const agentIds = [];
const seenAgents = /* @__PURE__ */ new Set();
for (const entry of configured) {
if (!entry || typeof entry !== "object" || typeof entry.id !== "string") continue;
const id = normalizeOptionalLowercaseString(entry.id);
if (!id || seenAgents.has(id)) continue;
seenAgents.add(id);
agentIds.push(id);
}
if (agentIds.length === 0) agentIds.push(resolveDefaultAgentId(cfg));
const byWorkspace = /* @__PURE__ */ new Map();
const addWorkspace = (workspaceDirRaw, agentIdRaw) => {
const workspaceDir = workspaceDirRaw?.trim();
if (!workspaceDir) return;
const agentId = normalizeOptionalLowercaseString(agentIdRaw) || resolveDefaultAgentId(cfg);
const key = normalizePathForComparison(workspaceDir);
const existing = byWorkspace.get(key);
if (existing) {
if (!existing.agentIds.includes(agentId)) existing.agentIds.push(agentId);
return;
}
byWorkspace.set(key, {
workspaceDir,
agentIds: [agentId]
});
};
for (const agentId of agentIds) addWorkspace(resolveAgentWorkspaceDir(cfg, agentId, options.env), agentId);
addWorkspace(options.primaryWorkspaceDir ?? void 0, options.primaryAgentId ?? resolveDefaultAgentId(cfg));
return [...byWorkspace.values()];
}
//#endregion
export { DEFAULT_MEMORY_REM_DREAMING_LIMIT as A, MANAGED_MEMORY_DREAMING_CRON_TAG as B, DEFAULT_MEMORY_DREAMING_TIMEZONE as C, DEFAULT_MEMORY_LIGHT_DREAMING_LIMIT as D, DEFAULT_MEMORY_LIGHT_DREAMING_DEDUPE_SIMILARITY as E, LEGACY_MEMORY_LIGHT_DREAMING_EVENT_TEXT as F, resolveMemoryDeepDreamingConfig as G, formatMemoryDreamingDay as H, LEGACY_MEMORY_REM_DREAMING_CRON_NAME as I, resolveMemoryDreamingPluginId as J, resolveMemoryDreamingConfig as K, LEGACY_MEMORY_REM_DREAMING_CRON_TAG as L, DEFAULT_MEMORY_REM_DREAMING_MIN_PATTERN_STRENGTH as M, LEGACY_MEMORY_LIGHT_DREAMING_CRON_NAME as N, DEFAULT_MEMORY_LIGHT_DREAMING_LOOKBACK_DAYS as O, LEGACY_MEMORY_LIGHT_DREAMING_CRON_TAG as P, LEGACY_MEMORY_REM_DREAMING_EVENT_TEXT as R, DEFAULT_MEMORY_DREAMING_THINKING as S, DEFAULT_MEMORY_LIGHT_DREAMING_CRON_EXPR as T, isSameMemoryDreamingDay as U, MEMORY_DREAMING_SYSTEM_EVENT_TEXT as V, resolveMemoryCorePluginConfig as W, resolveMemoryLightDreamingConfig as X, resolveMemoryDreamingWorkspaces as Y, resolveMemoryRemDreamingConfig as Z, DEFAULT_MEMORY_DREAMING_FREQUENCY as _, DEFAULT_MEMORY_DEEP_DREAMING_MIN_RECALL_COUNT as a, DEFAULT_MEMORY_DREAMING_SPEED as b, DEFAULT_MEMORY_DEEP_DREAMING_RECENCY_HALF_LIFE_DAYS as c, DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_LOOKBACK_DAYS as d, DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_MAX_CANDIDATES as f, DEFAULT_MEMORY_DREAMING_ENABLED as g, DEFAULT_MEMORY_DREAMING_BUDGET as h, DEFAULT_MEMORY_DEEP_DREAMING_MAX_PROMOTED_SNIPPET_TOKENS as i, DEFAULT_MEMORY_REM_DREAMING_LOOKBACK_DAYS as j, DEFAULT_MEMORY_REM_DREAMING_CRON_EXPR as k, DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_AUTO_WRITE_MIN_CONFIDENCE as l, DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_TRIGGER_BELOW_HEALTH as m, DEFAULT_MEMORY_DEEP_DREAMING_LIMIT as n, DEFAULT_MEMORY_DEEP_DREAMING_MIN_SCORE as o, DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_MIN_CONFIDENCE as p, resolveMemoryDreamingPluginConfig as q, DEFAULT_MEMORY_DEEP_DREAMING_MAX_AGE_DAYS as r, DEFAULT_MEMORY_DEEP_DREAMING_MIN_UNIQUE_QUERIES as s, DEFAULT_MEMORY_DEEP_DREAMING_CRON_EXPR as t, DEFAULT_MEMORY_DEEP_DREAMING_RECOVERY_ENABLED as u, DEFAULT_MEMORY_DREAMING_PLUGIN_ID as v, DEFAULT_MEMORY_DREAMING_VERBOSE_LOGGING as w, DEFAULT_MEMORY_DREAMING_STORAGE_MODE as x, DEFAULT_MEMORY_DREAMING_SEPARATE_REPORTS as y, MANAGED_MEMORY_DREAMING_CRON_NAME as z };