mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-21 18:08:05 -06:00
6a637469a0
* fix(memory): detect offline source drift in status * fix(status): preserve memory source inspection * test(status): cover memory source inspection
20 lines
520 B
TypeScript
20 lines
520 B
TypeScript
// Memory Core plugin module implements cli.host behavior.
|
|
export {
|
|
defaultRuntime,
|
|
formatErrorMessage,
|
|
resolveCommandSecretRefsViaGateway,
|
|
setVerbose,
|
|
shortenHomeInString,
|
|
shortenHomePath,
|
|
theme,
|
|
withManager,
|
|
withProgress,
|
|
withProgressTotals,
|
|
} from "openclaw/plugin-sdk/memory-core-host-runtime-cli";
|
|
export {
|
|
getRuntimeConfig,
|
|
resolveDefaultAgentId,
|
|
type OpenClawConfig,
|
|
} from "openclaw/plugin-sdk/memory-core-host-runtime-core";
|
|
export { getMemorySearchManager } from "./memory/index.js";
|