mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-23 19:01:15 +00:00
* refactor(plugin-sdk): narrow wildcard barrels to explicit used exports * refactor(tools): delete dead tool-planning module exposed by barrel narrowing * fix(plugin-sdk): restore deprecation tag on OpenClawSchemaType alias * test(agents): drop test for deleted runtime proxy module * refactor(tools): trim descriptor types to cache consumers * refactor(deadcode): harvest exports orphaned by barrel narrowing * refactor(deadcode): harvest exports orphaned by barrel narrowing (rest) * fix(agents): restore sdk imports and test markers via public predicate * fix(plugin-sdk): named type re-exports in plugin-entry; trim types barrel precisely * chore(plugin-sdk): account unmasked deprecated provider types in budgets * fix(plugins): name star-only type rows for dts bundling * fix(plugins): restore host-hook surface; unexport internal api compositions * fix(plugins): named type imports for api composition; restore needed source exports * fix(plugins): knip-visible type imports for registry surfaces * test: adapt tests to privatized media and command internals * fix(qa-lab): re-export snapshot conversation type * style: format sessions sdk imports * fix(plugins): restore smoke entry export; pin budgets to exact actuals * fix(plugins): canonical smoke-entry import; drop orphaned root shims * fix(plugins): allowlist manifest probe, repoint qa web import, drop dead browser barrels * fix(plugin-sdk): pin codex auth marker and scaffold provider type * fix(qa-lab): keep web-facing model-selection shim within boundary rules * fix(plugin-sdk): preserve merged contracts through narrowed barrels * chore(plugin-sdk): pin post-rebase surface budgets
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
/**
|
|
* Public SDK subpath for memory host status and dreaming state helpers.
|
|
*/
|
|
export {
|
|
resolveMemoryCacheSummary,
|
|
resolveMemoryFtsState,
|
|
resolveMemoryVectorState,
|
|
} from "../../packages/memory-host-sdk/src/status.js";
|
|
export type { Tone } from "../../packages/memory-host-sdk/src/status.js";
|
|
export {
|
|
formatMemoryDreamingDay,
|
|
isSameMemoryDreamingDay,
|
|
resolveMemoryDeepDreamingConfig,
|
|
resolveMemoryDreamingConfig,
|
|
resolveMemoryDreamingWorkspaces,
|
|
resolveMemoryLightDreamingConfig,
|
|
resolveMemoryRemDreamingConfig,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_LIMIT,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_MAX_PROMOTED_SNIPPET_TOKENS,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_MIN_RECALL_COUNT,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_MIN_SCORE,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_MIN_UNIQUE_QUERIES,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_RECENCY_HALF_LIFE_DAYS,
|
|
DEFAULT_MEMORY_DREAMING_FREQUENCY,
|
|
LEGACY_MEMORY_LIGHT_DREAMING_CRON_NAME,
|
|
LEGACY_MEMORY_LIGHT_DREAMING_CRON_TAG,
|
|
LEGACY_MEMORY_LIGHT_DREAMING_EVENT_TEXT,
|
|
LEGACY_MEMORY_REM_DREAMING_CRON_NAME,
|
|
LEGACY_MEMORY_REM_DREAMING_CRON_TAG,
|
|
LEGACY_MEMORY_REM_DREAMING_EVENT_TEXT,
|
|
MANAGED_MEMORY_DREAMING_CRON_NAME,
|
|
MANAGED_MEMORY_DREAMING_CRON_TAG,
|
|
MEMORY_DREAMING_SYSTEM_EVENT_TEXT,
|
|
resolveMemoryCorePluginConfig,
|
|
} from "../memory-host-sdk/dreaming.js";
|
|
export type {
|
|
MemoryDreamingPhaseName,
|
|
MemoryDreamingStorageConfig,
|
|
} from "../memory-host-sdk/dreaming.js";
|