mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 04:15:48 -06:00
8b0735e89f
* refactor(memory): remove qmd backend Make builtin the sole memory-core engine, rename the retained session helper barrel, retire QMD config with doctor migrations, and remove QMD runtime/UI/policy surfaces. * docs(memory): remove qmd backend guidance Delete the QMD concept page, rewrite memory documentation for builtin retrieval, and remove QMD from navigation and taxonomy source. * refactor(memory): remove qmd-only leftovers * refactor(memory): finish qmd integration cleanup * build(deps): align root string-width types * build(deps): model root string-width tooling * refactor(memory): align qmd removal ui and docs * fix(memory): preserve qmd external paths in doctor * test(memory): remove obsolete backend probe case * test(plugin-sdk): refresh private type baseline
42 lines
1.8 KiB
TypeScript
42 lines
1.8 KiB
TypeScript
// Real workspace contract for memory engine foundation concerns.
|
|
|
|
export {
|
|
resolveAgentContextLimits,
|
|
resolveAgentDir,
|
|
resolveAgentWorkspaceDir,
|
|
resolveDefaultAgentId,
|
|
resolveSessionAgentId,
|
|
} from "./host/openclaw-runtime-agent.js";
|
|
export {
|
|
resolveMemorySearchConfig,
|
|
resolveMemorySearchSyncConfig,
|
|
type ResolvedMemorySearchConfig,
|
|
type ResolvedMemorySearchSyncConfig,
|
|
} from "./host/openclaw-runtime-agent.js";
|
|
export { parseDurationMs } from "./host/openclaw-runtime-config.js";
|
|
export { loadConfig } from "./host/openclaw-runtime-config.js";
|
|
export { resolveStateDir } from "./host/openclaw-runtime-config.js";
|
|
export { resolveSessionTranscriptsDirForAgent } from "./host/openclaw-runtime-config.js";
|
|
export {
|
|
hasConfiguredSecretInput,
|
|
normalizeResolvedSecretInputString,
|
|
} from "./host/openclaw-runtime-config.js";
|
|
export { root } from "./host/openclaw-runtime-io.js";
|
|
export { isPathInside } from "./host/fs-utils.js";
|
|
export { createSubsystemLogger } from "./host/openclaw-runtime-io.js";
|
|
export { detectMime } from "./host/openclaw-runtime-io.js";
|
|
export { resolveGlobalSingleton } from "./host/openclaw-runtime-io.js";
|
|
export { onSessionTranscriptUpdate } from "./host/openclaw-runtime-session.js";
|
|
export { splitShellArgs } from "./host/openclaw-runtime-io.js";
|
|
export { runTasksWithConcurrency } from "./host/openclaw-runtime-io.js";
|
|
export {
|
|
shortenHomeInString,
|
|
shortenHomePath,
|
|
resolveUserPath,
|
|
truncateUtf16Safe,
|
|
} from "./host/openclaw-runtime-io.js";
|
|
export type { OpenClawConfig } from "./host/openclaw-runtime-config.js";
|
|
export type { SecretInput } from "./host/openclaw-runtime-config.js";
|
|
export type { MemoryCitationsMode } from "./host/openclaw-runtime-config.js";
|
|
export type { MemorySearchConfig } from "./host/openclaw-runtime-config.js";
|