mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-14 19:10:42 +00:00
* refactor: extract filesystem safety primitives * refactor: use fs-safe for file access helpers * refactor: reuse fs-safe for media reads * refactor: use fs-safe for image reads * refactor: reuse fs-safe in qqbot media opener * refactor: reuse fs-safe for local media checks * refactor: consume cleaner fs-safe api * refactor: align fs-safe json option names * fix: preserve fs-safe migration contracts * refactor: use fs-safe primitive subpaths * refactor: use grouped fs-safe subpaths * refactor: align fs-safe api usage * refactor: adapt private state store api * chore: refresh proof gate * refactor: follow fs-safe json api split * refactor: follow reduced fs-safe surface * build: default fs-safe python helper off * fix: preserve fs-safe plugin sdk aliases * refactor: consolidate fs-safe usage * refactor: unify fs-safe store usage * refactor: trim fs-safe temp workspace usage * refactor: hide low-level fs-safe primitives * build: use published fs-safe package * fix: preserve outbound recovery durability after rebase * chore: refresh pr checks
50 lines
1.9 KiB
TypeScript
50 lines
1.9 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 { SessionSendPolicyConfig } from "./host/openclaw-runtime-config.js";
|
|
export type { SecretInput } from "./host/openclaw-runtime-config.js";
|
|
export type {
|
|
MemoryBackend,
|
|
MemoryCitationsMode,
|
|
MemoryQmdConfig,
|
|
MemoryQmdIndexPath,
|
|
MemoryQmdMcporterConfig,
|
|
MemoryQmdSearchMode,
|
|
} from "./host/openclaw-runtime-config.js";
|
|
export type { MemorySearchConfig } from "./host/openclaw-runtime-config.js";
|