@signetai/connector-forge 0.226.19 → 0.226.20

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 +3 -3
package/dist/index.js CHANGED
@@ -15927,6 +15927,12 @@ function up157(db) {
15927
15927
  );
15928
15928
  `);
15929
15929
  }
15930
+ function up158(db) {
15931
+ db.exec(`
15932
+ CREATE INDEX IF NOT EXISTS idx_memories_agent_kind
15933
+ ON memories(agent_id, memory_kind);
15934
+ `);
15935
+ }
15930
15936
  var MIGRATIONS = [
15931
15937
  {
15932
15938
  version: 1,
@@ -17207,6 +17213,12 @@ var MIGRATIONS = [
17207
17213
  tables: ["embedding_repair_progress"],
17208
17214
  columns: [{ table: "embedding_repair_checkpoints", column: "profile_fingerprint" }]
17209
17215
  }
17216
+ },
17217
+ {
17218
+ version: 158,
17219
+ name: "dreaming-candidate-scan-index",
17220
+ up: up158,
17221
+ artifacts: { indexes: ["idx_memories_agent_kind"] }
17210
17222
  }
17211
17223
  ];
17212
17224
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -28415,7 +28427,7 @@ var DAEMON_DERIVED_MEMORY_SOURCE_TYPES2 = [
28415
28427
  "checkpoint",
28416
28428
  "dreaming"
28417
28429
  ];
28418
- function up158(db) {
28430
+ function up159(db) {
28419
28431
  const hasColumn26 = (table, column) => {
28420
28432
  const statement = db.prepare(`SELECT 1 FROM pragma_table_info('${table}') WHERE name = ?`);
28421
28433
  try {
@@ -29065,7 +29077,7 @@ function up1410(db) {
29065
29077
  )
29066
29078
  `);
29067
29079
  }
29068
- function up159(db) {
29080
+ function up1510(db) {
29069
29081
  db.exec(`
29070
29082
  CREATE TABLE IF NOT EXISTS session_scores (
29071
29083
  id TEXT PRIMARY KEY,
@@ -33723,6 +33735,12 @@ function up1572(db) {
33723
33735
  );
33724
33736
  `);
33725
33737
  }
33738
+ function up1582(db) {
33739
+ db.exec(`
33740
+ CREATE INDEX IF NOT EXISTS idx_memories_agent_kind
33741
+ ON memories(agent_id, memory_kind);
33742
+ `);
33743
+ }
33726
33744
  var MIGRATIONS2 = [
33727
33745
  {
33728
33746
  version: 1,
@@ -33793,7 +33811,7 @@ var MIGRATIONS2 = [
33793
33811
  {
33794
33812
  version: 11,
33795
33813
  name: "session-scores",
33796
- up: up159,
33814
+ up: up1510,
33797
33815
  artifacts: { tables: ["session_scores"] }
33798
33816
  },
33799
33817
  {
@@ -34930,7 +34948,7 @@ var MIGRATIONS2 = [
34930
34948
  {
34931
34949
  version: 151,
34932
34950
  name: "transcript-import-bytes",
34933
- up: up158,
34951
+ up: up159,
34934
34952
  artifacts: {
34935
34953
  tables: [
34936
34954
  "source_import_chunks",
@@ -35003,6 +35021,12 @@ var MIGRATIONS2 = [
35003
35021
  tables: ["embedding_repair_progress"],
35004
35022
  columns: [{ table: "embedding_repair_checkpoints", column: "profile_fingerprint" }]
35005
35023
  }
35024
+ },
35025
+ {
35026
+ version: 158,
35027
+ name: "dreaming-candidate-scan-index",
35028
+ up: up1582,
35029
+ artifacts: { indexes: ["idx_memories_agent_kind"] }
35006
35030
  }
35007
35031
  ];
35008
35032
  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.226.19",
3
+ "version": "0.226.20",
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.226.19",
28
- "@signetai/core": "0.226.19"
27
+ "@signetai/connector-base": "0.226.20",
28
+ "@signetai/core": "0.226.20"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",