@signetai/signet-memory-openclaw 0.200.28 → 0.202.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +28 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -11558,6 +11558,12 @@ function up131(db) {
11558
11558
  ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
11559
11559
  `);
11560
11560
  }
11561
+ function up132(db) {
11562
+ db.exec(`
11563
+ CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
11564
+ ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
11565
+ `);
11566
+ }
11561
11567
  var MIGRATIONS = [
11562
11568
  {
11563
11569
  version: 1,
@@ -12606,6 +12612,12 @@ var MIGRATIONS = [
12606
12612
  name: "dreaming-evidence-consumption",
12607
12613
  up: up131,
12608
12614
  artifacts: { tables: ["dreaming_evidence_consumption"] }
12615
+ },
12616
+ {
12617
+ version: 132,
12618
+ name: "observer-scoped-epistemic-assertions",
12619
+ up: up132,
12620
+ artifacts: { tables: ["epistemic_assertions"] }
12609
12621
  }
12610
12622
  ];
12611
12623
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -20118,7 +20130,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
20118
20130
  return true;
20119
20131
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
20120
20132
  }
20121
- function up132(db) {
20133
+ function up133(db) {
20122
20134
  db.exec(`
20123
20135
  CREATE TABLE IF NOT EXISTS schema_migrations (
20124
20136
  version INTEGER PRIMARY KEY,
@@ -20602,7 +20614,7 @@ function addColumnIfMissing52(db, table, column, definition) {
20602
20614
  db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
20603
20615
  }
20604
20616
  }
20605
- function up133(db) {
20617
+ function up134(db) {
20606
20618
  db.exec(`
20607
20619
  CREATE TABLE IF NOT EXISTS ingestion_jobs (
20608
20620
  id TEXT PRIMARY KEY,
@@ -24351,11 +24363,17 @@ function up1312(db) {
24351
24363
  ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
24352
24364
  `);
24353
24365
  }
24366
+ function up1322(db) {
24367
+ db.exec(`
24368
+ CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
24369
+ ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
24370
+ `);
24371
+ }
24354
24372
  var MIGRATIONS2 = [
24355
24373
  {
24356
24374
  version: 1,
24357
24375
  name: "baseline",
24358
- up: up132,
24376
+ up: up133,
24359
24377
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
24360
24378
  },
24361
24379
  {
@@ -24433,7 +24451,7 @@ var MIGRATIONS2 = [
24433
24451
  {
24434
24452
  version: 13,
24435
24453
  name: "ingestion-tracking",
24436
- up: up133,
24454
+ up: up134,
24437
24455
  artifacts: {
24438
24456
  columns: [
24439
24457
  { table: "memories", column: "source_path" },
@@ -25399,6 +25417,12 @@ var MIGRATIONS2 = [
25399
25417
  name: "dreaming-evidence-consumption",
25400
25418
  up: up1312,
25401
25419
  artifacts: { tables: ["dreaming_evidence_consumption"] }
25420
+ },
25421
+ {
25422
+ version: 132,
25423
+ name: "observer-scoped-epistemic-assertions",
25424
+ up: up1322,
25425
+ artifacts: { tables: ["epistemic_assertions"] }
25402
25426
  }
25403
25427
  ];
25404
25428
  var LATEST_SCHEMA_VERSION2 = MIGRATIONS2[MIGRATIONS2.length - 1]?.version ?? 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/signet-memory-openclaw",
3
- "version": "0.200.28",
3
+ "version": "0.202.3",
4
4
  "description": "Signet adapter for OpenClaw — runtime plugin for AI agent memory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",