@signetai/connector-claude-code 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
@@ -15906,6 +15906,12 @@ function up157(db) {
15906
15906
  );
15907
15907
  `);
15908
15908
  }
15909
+ function up158(db) {
15910
+ db.exec(`
15911
+ CREATE INDEX IF NOT EXISTS idx_memories_agent_kind
15912
+ ON memories(agent_id, memory_kind);
15913
+ `);
15914
+ }
15909
15915
  var MIGRATIONS = [
15910
15916
  {
15911
15917
  version: 1,
@@ -17186,6 +17192,12 @@ var MIGRATIONS = [
17186
17192
  tables: ["embedding_repair_progress"],
17187
17193
  columns: [{ table: "embedding_repair_checkpoints", column: "profile_fingerprint" }]
17188
17194
  }
17195
+ },
17196
+ {
17197
+ version: 158,
17198
+ name: "dreaming-candidate-scan-index",
17199
+ up: up158,
17200
+ artifacts: { indexes: ["idx_memories_agent_kind"] }
17189
17201
  }
17190
17202
  ];
17191
17203
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -27966,7 +27978,7 @@ var DAEMON_DERIVED_MEMORY_SOURCE_TYPES2 = [
27966
27978
  "checkpoint",
27967
27979
  "dreaming"
27968
27980
  ];
27969
- function up158(db) {
27981
+ function up159(db) {
27970
27982
  const hasColumn26 = (table, column) => {
27971
27983
  const statement = db.prepare(`SELECT 1 FROM pragma_table_info('${table}') WHERE name = ?`);
27972
27984
  try {
@@ -28616,7 +28628,7 @@ function up1410(db) {
28616
28628
  )
28617
28629
  `);
28618
28630
  }
28619
- function up159(db) {
28631
+ function up1510(db) {
28620
28632
  db.exec(`
28621
28633
  CREATE TABLE IF NOT EXISTS session_scores (
28622
28634
  id TEXT PRIMARY KEY,
@@ -33274,6 +33286,12 @@ function up1572(db) {
33274
33286
  );
33275
33287
  `);
33276
33288
  }
33289
+ function up1582(db) {
33290
+ db.exec(`
33291
+ CREATE INDEX IF NOT EXISTS idx_memories_agent_kind
33292
+ ON memories(agent_id, memory_kind);
33293
+ `);
33294
+ }
33277
33295
  var MIGRATIONS2 = [
33278
33296
  {
33279
33297
  version: 1,
@@ -33344,7 +33362,7 @@ var MIGRATIONS2 = [
33344
33362
  {
33345
33363
  version: 11,
33346
33364
  name: "session-scores",
33347
- up: up159,
33365
+ up: up1510,
33348
33366
  artifacts: { tables: ["session_scores"] }
33349
33367
  },
33350
33368
  {
@@ -34481,7 +34499,7 @@ var MIGRATIONS2 = [
34481
34499
  {
34482
34500
  version: 151,
34483
34501
  name: "transcript-import-bytes",
34484
- up: up158,
34502
+ up: up159,
34485
34503
  artifacts: {
34486
34504
  tables: [
34487
34505
  "source_import_chunks",
@@ -34554,6 +34572,12 @@ var MIGRATIONS2 = [
34554
34572
  tables: ["embedding_repair_progress"],
34555
34573
  columns: [{ table: "embedding_repair_checkpoints", column: "profile_fingerprint" }]
34556
34574
  }
34575
+ },
34576
+ {
34577
+ version: 158,
34578
+ name: "dreaming-candidate-scan-index",
34579
+ up: up1582,
34580
+ artifacts: { indexes: ["idx_memories_agent_kind"] }
34557
34581
  }
34558
34582
  ];
34559
34583
  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-claude-code",
3
- "version": "0.226.19",
3
+ "version": "0.226.20",
4
4
  "description": "Signet connector for Claude Code (Anthropic CLI)",
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",