mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-20 01:21:41 -06:00
d23246770a
* fix(memory): report indexed SQLite sessions * refactor(memory): remove unused state path export
25 lines
678 B
TypeScript
25 lines
678 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,
|
|
resolveSessionTranscriptsDirForAgent,
|
|
type OpenClawConfig,
|
|
} from "openclaw/plugin-sdk/memory-core-host-runtime-core";
|
|
export {
|
|
listMemoryFiles,
|
|
normalizeExtraMemoryPaths,
|
|
} from "openclaw/plugin-sdk/memory-core-host-runtime-files";
|
|
export { getMemorySearchManager } from "./memory/index.js";
|