mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-18 00:23:25 -06:00
28630a9a65
* feat(memory): add provenance and recall metadata to the memory index * feat(memory): provenance-gated promotion and capture hygiene * feat(dreaming): LLM consolidation with deterministic gates, on by default * feat(active-memory): deterministic recall lane with escalation default * feat(memory): user model file and standing intents * docs(memory): document the memory architecture * fix(memory): live-QA fixes — metadata writers, provenance classes, intent scope, claim accumulation
16 lines
618 B
TypeScript
16 lines
618 B
TypeScript
// Narrow SQLite schema, path, and transaction helpers for first-party runtime.
|
|
|
|
export {
|
|
ensureOpenClawAgentDatabaseSchema,
|
|
openOpenClawAgentDatabase,
|
|
resolveOpenClawAgentSqlitePath,
|
|
} from "../state/openclaw-agent-db.js";
|
|
export { ensureOpenClawAgentStandingIntentsSchema } from "../state/openclaw-agent-standing-intents-schema.js";
|
|
export {
|
|
executeSqliteQuerySync,
|
|
executeSqliteQueryTakeFirstSync,
|
|
getNodeSqliteKysely,
|
|
} from "../infra/kysely-sync.js";
|
|
export { openNodeSqliteDatabase } from "../infra/node-sqlite.js";
|
|
export { runSqliteImmediateTransactionSync } from "../infra/sqlite-transaction.js";
|