@signetai/connector-openclaw 0.192.0 → 0.192.2

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 +64 -4
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -10851,6 +10851,30 @@ function up122(db) {
10851
10851
  }
10852
10852
  db.exec("CREATE INDEX IF NOT EXISTS idx_dreaming_evidence_exclusions_retry ON dreaming_evidence_exclusions (resolved_at, requeue_requested_at, failure_class, retry_count, last_requeued_at)");
10853
10853
  }
10854
+ function up123(db) {
10855
+ db.exec(`
10856
+ CREATE TABLE IF NOT EXISTS embedding_index_failures (
10857
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
10858
+ content_hash TEXT NOT NULL,
10859
+ source_type TEXT NOT NULL,
10860
+ source_id TEXT NOT NULL,
10861
+ agent_id TEXT,
10862
+ target_fingerprint TEXT NOT NULL,
10863
+ provider TEXT NOT NULL,
10864
+ model TEXT NOT NULL,
10865
+ failure_class TEXT NOT NULL CHECK (failure_class IN ('context_limit', 'invalid_input')),
10866
+ attempts INTEGER NOT NULL DEFAULT 1,
10867
+ retry_policy TEXT NOT NULL DEFAULT 'quarantined',
10868
+ first_failed_at TEXT NOT NULL,
10869
+ last_failed_at TEXT NOT NULL,
10870
+ UNIQUE(content_hash, target_fingerprint)
10871
+ );
10872
+ CREATE INDEX IF NOT EXISTS idx_embedding_index_failures_target
10873
+ ON embedding_index_failures(target_fingerprint, failure_class, last_failed_at);
10874
+ CREATE INDEX IF NOT EXISTS idx_embedding_index_failures_source
10875
+ ON embedding_index_failures(source_type, source_id);
10876
+ `);
10877
+ }
10854
10878
  var MIGRATIONS = [
10855
10879
  {
10856
10880
  version: 1,
@@ -11845,6 +11869,12 @@ var MIGRATIONS = [
11845
11869
  { table: "dreaming_evidence_exclusions", column: "last_requeued_at" }
11846
11870
  ]
11847
11871
  }
11872
+ },
11873
+ {
11874
+ version: 123,
11875
+ name: "embedding-index-failures",
11876
+ up: up123,
11877
+ artifacts: { tables: ["embedding_index_failures"] }
11848
11878
  }
11849
11879
  ];
11850
11880
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -21112,7 +21142,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
21112
21142
  return true;
21113
21143
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
21114
21144
  }
21115
- function up123(db) {
21145
+ function up124(db) {
21116
21146
  db.exec(`
21117
21147
  CREATE TABLE IF NOT EXISTS schema_migrations (
21118
21148
  version INTEGER PRIMARY KEY,
@@ -21555,7 +21585,7 @@ function up1110(db) {
21555
21585
  ON session_scores(session_key);
21556
21586
  `);
21557
21587
  }
21558
- function up124(db) {
21588
+ function up125(db) {
21559
21589
  db.exec(`
21560
21590
  CREATE TABLE IF NOT EXISTS scheduled_tasks (
21561
21591
  id TEXT PRIMARY KEY,
@@ -24997,11 +25027,35 @@ function up1222(db) {
24997
25027
  }
24998
25028
  db.exec("CREATE INDEX IF NOT EXISTS idx_dreaming_evidence_exclusions_retry ON dreaming_evidence_exclusions (resolved_at, requeue_requested_at, failure_class, retry_count, last_requeued_at)");
24999
25029
  }
25030
+ function up1232(db) {
25031
+ db.exec(`
25032
+ CREATE TABLE IF NOT EXISTS embedding_index_failures (
25033
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
25034
+ content_hash TEXT NOT NULL,
25035
+ source_type TEXT NOT NULL,
25036
+ source_id TEXT NOT NULL,
25037
+ agent_id TEXT,
25038
+ target_fingerprint TEXT NOT NULL,
25039
+ provider TEXT NOT NULL,
25040
+ model TEXT NOT NULL,
25041
+ failure_class TEXT NOT NULL CHECK (failure_class IN ('context_limit', 'invalid_input')),
25042
+ attempts INTEGER NOT NULL DEFAULT 1,
25043
+ retry_policy TEXT NOT NULL DEFAULT 'quarantined',
25044
+ first_failed_at TEXT NOT NULL,
25045
+ last_failed_at TEXT NOT NULL,
25046
+ UNIQUE(content_hash, target_fingerprint)
25047
+ );
25048
+ CREATE INDEX IF NOT EXISTS idx_embedding_index_failures_target
25049
+ ON embedding_index_failures(target_fingerprint, failure_class, last_failed_at);
25050
+ CREATE INDEX IF NOT EXISTS idx_embedding_index_failures_source
25051
+ ON embedding_index_failures(source_type, source_id);
25052
+ `);
25053
+ }
25000
25054
  var MIGRATIONS2 = [
25001
25055
  {
25002
25056
  version: 1,
25003
25057
  name: "baseline",
25004
- up: up123,
25058
+ up: up124,
25005
25059
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
25006
25060
  },
25007
25061
  {
@@ -25073,7 +25127,7 @@ var MIGRATIONS2 = [
25073
25127
  {
25074
25128
  version: 12,
25075
25129
  name: "scheduled-tasks",
25076
- up: up124,
25130
+ up: up125,
25077
25131
  artifacts: { tables: ["scheduled_tasks", "task_runs"] }
25078
25132
  },
25079
25133
  {
@@ -25991,6 +26045,12 @@ var MIGRATIONS2 = [
25991
26045
  { table: "dreaming_evidence_exclusions", column: "last_requeued_at" }
25992
26046
  ]
25993
26047
  }
26048
+ },
26049
+ {
26050
+ version: 123,
26051
+ name: "embedding-index-failures",
26052
+ up: up1232,
26053
+ artifacts: { tables: ["embedding_index_failures"] }
25994
26054
  }
25995
26055
  ];
25996
26056
  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-openclaw",
3
- "version": "0.192.0",
3
+ "version": "0.192.2",
4
4
  "description": "Signet connector for OpenClaw - configures workspace and memory hooks",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -25,8 +25,8 @@
25
25
  "test": "bun test"
26
26
  },
27
27
  "dependencies": {
28
- "@signetai/connector-base": "0.192.0",
29
- "@signetai/core": "0.192.0"
28
+ "@signetai/connector-base": "0.192.2",
29
+ "@signetai/core": "0.192.2"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^22.0.0",