@signetai/connector-forge 0.182.7 → 0.182.9

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 +32 -4
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -10455,6 +10455,15 @@ function up113(db) {
10455
10455
  ON session_claims(agent_id, state, expires_at);
10456
10456
  `);
10457
10457
  }
10458
+ function up114(db) {
10459
+ const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
10460
+ if (table == null)
10461
+ return;
10462
+ db.exec(`
10463
+ CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
10464
+ ON entity_attributes(memory_id, agent_id, status, importance);
10465
+ `);
10466
+ }
10458
10467
  var MIGRATIONS = [
10459
10468
  {
10460
10469
  version: 1,
@@ -11367,6 +11376,11 @@ var MIGRATIONS = [
11367
11376
  { table: "session_claims", column: "end_marker" }
11368
11377
  ]
11369
11378
  }
11379
+ },
11380
+ {
11381
+ version: 114,
11382
+ name: "memory-traversal-hydration-index",
11383
+ up: up114
11370
11384
  }
11371
11385
  ];
11372
11386
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -18888,7 +18902,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
18888
18902
  return true;
18889
18903
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
18890
18904
  }
18891
- function up114(db) {
18905
+ function up115(db) {
18892
18906
  db.exec(`
18893
18907
  CREATE TABLE IF NOT EXISTS schema_migrations (
18894
18908
  version INTEGER PRIMARY KEY,
@@ -19311,7 +19325,7 @@ function up1010(db) {
19311
19325
  )
19312
19326
  `);
19313
19327
  }
19314
- function up115(db) {
19328
+ function up116(db) {
19315
19329
  db.exec(`
19316
19330
  CREATE TABLE IF NOT EXISTS session_scores (
19317
19331
  id TEXT PRIMARY KEY,
@@ -22362,11 +22376,20 @@ function up1132(db) {
22362
22376
  ON session_claims(agent_id, state, expires_at);
22363
22377
  `);
22364
22378
  }
22379
+ function up1142(db) {
22380
+ const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
22381
+ if (table == null)
22382
+ return;
22383
+ db.exec(`
22384
+ CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
22385
+ ON entity_attributes(memory_id, agent_id, status, importance);
22386
+ `);
22387
+ }
22365
22388
  var MIGRATIONS2 = [
22366
22389
  {
22367
22390
  version: 1,
22368
22391
  name: "baseline",
22369
- up: up114,
22392
+ up: up115,
22370
22393
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
22371
22394
  },
22372
22395
  {
@@ -22432,7 +22455,7 @@ var MIGRATIONS2 = [
22432
22455
  {
22433
22456
  version: 11,
22434
22457
  name: "session-scores",
22435
- up: up115,
22458
+ up: up116,
22436
22459
  artifacts: { tables: ["session_scores"] }
22437
22460
  },
22438
22461
  {
@@ -23274,6 +23297,11 @@ var MIGRATIONS2 = [
23274
23297
  { table: "session_claims", column: "end_marker" }
23275
23298
  ]
23276
23299
  }
23300
+ },
23301
+ {
23302
+ version: 114,
23303
+ name: "memory-traversal-hydration-index",
23304
+ up: up1142
23277
23305
  }
23278
23306
  ];
23279
23307
  var LATEST_SCHEMA_VERSION2 = MIGRATIONS2[MIGRATIONS2.length - 1]?.version ?? 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/connector-forge",
3
- "version": "0.182.7",
3
+ "version": "0.182.9",
4
4
  "description": "Signet connector for ForgeCode - installs MCP, identity, and skills integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -24,8 +24,8 @@
24
24
  "typecheck": "tsc --noEmit"
25
25
  },
26
26
  "dependencies": {
27
- "@signetai/connector-base": "0.182.7",
28
- "@signetai/core": "0.182.7"
27
+ "@signetai/connector-base": "0.182.9",
28
+ "@signetai/core": "0.182.9"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",