Files
openclaw/packages/memory-host-sdk/src/engine-qmd.ts
Vincent Koc 8623c28f1d fix(memory): warn when qmd binary is missing (#57467)
* fix(memory): warn when qmd binary is missing

* fix(memory): avoid probing cached qmd managers

* docs(memory): clarify qmd doctor probe behavior

* fix(memory): probe qmd from agent workspace
2026-03-30 13:44:41 +09:00

21 lines
620 B
TypeScript

// Real workspace contract for QMD/session/query helpers used by the memory engine.
export { extractKeywords, isQueryStopWordToken } from "./host/query-expansion.js";
export {
buildSessionEntry,
listSessionFilesForAgent,
sessionPathForFile,
type SessionFileEntry,
} from "./host/session-files.js";
export { parseQmdQueryJson, type QmdQueryResult } from "./host/qmd-query-parser.js";
export {
deriveQmdScopeChannel,
deriveQmdScopeChatType,
isQmdScopeAllowed,
} from "./host/qmd-scope.js";
export {
checkQmdBinaryAvailability,
resolveCliSpawnInvocation,
runCliCommand,
} from "./host/qmd-process.js";