Files
openclaw/src/plugin-sdk/sqlite-runtime.ts
T
Peter Steinberger 28630a9a65 feat(memory): provenance-gated memory with dreaming on by default (#114819)
* 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
2026-07-28 06:04:25 -04:00

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";