refactor(memory-host): narrow runtime adapters

This commit is contained in:
Peter Steinberger
2026-04-28 06:40:33 +01:00
parent 29a34e0a4d
commit 89079a32ef
20 changed files with 219 additions and 59 deletions

View File

@@ -1,11 +1,11 @@
// Focused runtime contract for memory CLI/UI helpers.
export { formatErrorMessage, withManager } from "./host/openclaw-runtime.js";
export { formatHelpExamples } from "./host/openclaw-runtime.js";
export { resolveCommandSecretRefsViaGateway } from "./host/openclaw-runtime.js";
export { withProgress, withProgressTotals } from "./host/openclaw-runtime.js";
export { defaultRuntime } from "./host/openclaw-runtime.js";
export { formatDocsLink } from "./host/openclaw-runtime.js";
export { colorize, isRich, theme } from "./host/openclaw-runtime.js";
export { isVerbose, setVerbose } from "./host/openclaw-runtime.js";
export { shortenHomeInString, shortenHomePath } from "./host/openclaw-runtime.js";
export { formatErrorMessage, withManager } from "./host/openclaw-runtime-cli.js";
export { formatHelpExamples } from "./host/openclaw-runtime-cli.js";
export { resolveCommandSecretRefsViaGateway } from "./host/openclaw-runtime-cli.js";
export { withProgress, withProgressTotals } from "./host/openclaw-runtime-cli.js";
export { defaultRuntime } from "./host/openclaw-runtime-cli.js";
export { formatDocsLink } from "./host/openclaw-runtime-cli.js";
export { colorize, isRich, theme } from "./host/openclaw-runtime-cli.js";
export { isVerbose, setVerbose } from "./host/openclaw-runtime-cli.js";
export { shortenHomeInString, shortenHomePath } from "./host/openclaw-runtime-cli.js";