mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 10:31:35 +00:00
* refactor(memory-core): remove orphaned shadow trials * refactor(qqbot): migrate direct voice upload formats Release note: QQBot configs using voiceDirectUploadFormats now migrate through openclaw doctor --fix to audioFormatPolicy.uploadDirectFormats at root and account scope. Existing nested uploadDirectFormats values win conflicts, and runtime reads only the nested policy. * refactor(feishu): migrate tools base alias Release note: Feishu configs using tools.base now migrate through openclaw doctor --fix to tools.bitable at root and account scope. Existing bitable values win conflicts, and runtime accepts only the canonical key. * refactor(extensions): remove dead runtime state * chore(config): refresh bundled channel metadata * refactor(codex): keep realtime fallback type private * test(ci): align QA compatibility scenario count
18 lines
804 B
TypeScript
18 lines
804 B
TypeScript
// Memory Core API module exposes the plugin public contract.
|
|
export type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";
|
|
export type {
|
|
MemoryEmbeddingProbeResult,
|
|
MemoryProviderStatus,
|
|
MemorySyncProgressUpdate,
|
|
} from "openclaw/plugin-sdk/memory-core-host-engine-storage";
|
|
export {
|
|
dedupeDreamDiaryEntries,
|
|
removeBackfillDiaryEntries,
|
|
writeBackfillDiaryEntries,
|
|
} from "./src/dreaming-narrative.js";
|
|
export { previewGroundedRemMarkdown } from "./src/rem-evidence.js";
|
|
export { filterRecallEntriesWithinLookback } from "./src/dreaming-phases.js";
|
|
export { previewRemHarness } from "./src/rem-harness.js";
|
|
export type { PreviewRemHarnessOptions, PreviewRemHarnessResult } from "./src/rem-harness.js";
|
|
export { configureMemoryCoreDreamingState } from "./src/dreaming-state.js";
|