@signetai/connector-openclaw 0.199.0 → 0.199.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.
- package/dist/index.js +62 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -11269,6 +11269,29 @@ function up130(db) {
|
|
|
11269
11269
|
END;
|
|
11270
11270
|
`);
|
|
11271
11271
|
}
|
|
11272
|
+
function up131(db) {
|
|
11273
|
+
db.exec(`
|
|
11274
|
+
CREATE TABLE IF NOT EXISTS dreaming_evidence_consumption (
|
|
11275
|
+
agent_id TEXT NOT NULL,
|
|
11276
|
+
source_kind TEXT NOT NULL CHECK (source_kind IN ('memory', 'artifact', 'transcript', 'summary')),
|
|
11277
|
+
source_id TEXT NOT NULL,
|
|
11278
|
+
source_captured_at TEXT NOT NULL,
|
|
11279
|
+
source_entry_id TEXT NOT NULL DEFAULT '',
|
|
11280
|
+
source_revision TEXT NOT NULL,
|
|
11281
|
+
delivered_offset INTEGER NOT NULL CHECK (delivered_offset >= 0),
|
|
11282
|
+
source_length INTEGER NOT NULL CHECK (source_length >= 0),
|
|
11283
|
+
pass_id TEXT NOT NULL,
|
|
11284
|
+
updated_at TEXT NOT NULL,
|
|
11285
|
+
PRIMARY KEY (agent_id, source_kind, source_id, source_captured_at, source_entry_id, source_revision)
|
|
11286
|
+
);
|
|
11287
|
+
CREATE INDEX IF NOT EXISTS idx_dreaming_evidence_consumption_source
|
|
11288
|
+
ON dreaming_evidence_consumption(agent_id, source_entry_id, source_kind, source_revision);
|
|
11289
|
+
CREATE INDEX IF NOT EXISTS idx_dreaming_evidence_consumption_pending
|
|
11290
|
+
ON dreaming_evidence_consumption(agent_id, source_kind, source_id, source_captured_at, source_revision, delivered_offset, source_length);
|
|
11291
|
+
CREATE INDEX IF NOT EXISTS idx_dreaming_evidence_consumption_continuation
|
|
11292
|
+
ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
|
|
11293
|
+
`);
|
|
11294
|
+
}
|
|
11272
11295
|
var MIGRATIONS = [
|
|
11273
11296
|
{
|
|
11274
11297
|
version: 1,
|
|
@@ -12311,6 +12334,12 @@ var MIGRATIONS = [
|
|
|
12311
12334
|
name: "embedding-repair-state",
|
|
12312
12335
|
up: up130,
|
|
12313
12336
|
artifacts: { tables: ["embedding_repair_budget", "embedding_repair_backoff"] }
|
|
12337
|
+
},
|
|
12338
|
+
{
|
|
12339
|
+
version: 131,
|
|
12340
|
+
name: "dreaming-evidence-consumption",
|
|
12341
|
+
up: up131,
|
|
12342
|
+
artifacts: { tables: ["dreaming_evidence_consumption"] }
|
|
12314
12343
|
}
|
|
12315
12344
|
];
|
|
12316
12345
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -21673,7 +21702,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
21673
21702
|
return true;
|
|
21674
21703
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
21675
21704
|
}
|
|
21676
|
-
function
|
|
21705
|
+
function up132(db) {
|
|
21677
21706
|
db.exec(`
|
|
21678
21707
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
21679
21708
|
version INTEGER PRIMARY KEY,
|
|
@@ -22157,7 +22186,7 @@ function addColumnIfMissing52(db, table, column, definition) {
|
|
|
22157
22186
|
db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
|
|
22158
22187
|
}
|
|
22159
22188
|
}
|
|
22160
|
-
function
|
|
22189
|
+
function up133(db) {
|
|
22161
22190
|
db.exec(`
|
|
22162
22191
|
CREATE TABLE IF NOT EXISTS ingestion_jobs (
|
|
22163
22192
|
id TEXT PRIMARY KEY,
|
|
@@ -25883,11 +25912,34 @@ function up1302(db) {
|
|
|
25883
25912
|
END;
|
|
25884
25913
|
`);
|
|
25885
25914
|
}
|
|
25915
|
+
function up1312(db) {
|
|
25916
|
+
db.exec(`
|
|
25917
|
+
CREATE TABLE IF NOT EXISTS dreaming_evidence_consumption (
|
|
25918
|
+
agent_id TEXT NOT NULL,
|
|
25919
|
+
source_kind TEXT NOT NULL CHECK (source_kind IN ('memory', 'artifact', 'transcript', 'summary')),
|
|
25920
|
+
source_id TEXT NOT NULL,
|
|
25921
|
+
source_captured_at TEXT NOT NULL,
|
|
25922
|
+
source_entry_id TEXT NOT NULL DEFAULT '',
|
|
25923
|
+
source_revision TEXT NOT NULL,
|
|
25924
|
+
delivered_offset INTEGER NOT NULL CHECK (delivered_offset >= 0),
|
|
25925
|
+
source_length INTEGER NOT NULL CHECK (source_length >= 0),
|
|
25926
|
+
pass_id TEXT NOT NULL,
|
|
25927
|
+
updated_at TEXT NOT NULL,
|
|
25928
|
+
PRIMARY KEY (agent_id, source_kind, source_id, source_captured_at, source_entry_id, source_revision)
|
|
25929
|
+
);
|
|
25930
|
+
CREATE INDEX IF NOT EXISTS idx_dreaming_evidence_consumption_source
|
|
25931
|
+
ON dreaming_evidence_consumption(agent_id, source_entry_id, source_kind, source_revision);
|
|
25932
|
+
CREATE INDEX IF NOT EXISTS idx_dreaming_evidence_consumption_pending
|
|
25933
|
+
ON dreaming_evidence_consumption(agent_id, source_kind, source_id, source_captured_at, source_revision, delivered_offset, source_length);
|
|
25934
|
+
CREATE INDEX IF NOT EXISTS idx_dreaming_evidence_consumption_continuation
|
|
25935
|
+
ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
|
|
25936
|
+
`);
|
|
25937
|
+
}
|
|
25886
25938
|
var MIGRATIONS2 = [
|
|
25887
25939
|
{
|
|
25888
25940
|
version: 1,
|
|
25889
25941
|
name: "baseline",
|
|
25890
|
-
up:
|
|
25942
|
+
up: up132,
|
|
25891
25943
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
25892
25944
|
},
|
|
25893
25945
|
{
|
|
@@ -25965,7 +26017,7 @@ var MIGRATIONS2 = [
|
|
|
25965
26017
|
{
|
|
25966
26018
|
version: 13,
|
|
25967
26019
|
name: "ingestion-tracking",
|
|
25968
|
-
up:
|
|
26020
|
+
up: up133,
|
|
25969
26021
|
artifacts: {
|
|
25970
26022
|
columns: [
|
|
25971
26023
|
{ table: "memories", column: "source_path" },
|
|
@@ -26925,6 +26977,12 @@ var MIGRATIONS2 = [
|
|
|
26925
26977
|
name: "embedding-repair-state",
|
|
26926
26978
|
up: up1302,
|
|
26927
26979
|
artifacts: { tables: ["embedding_repair_budget", "embedding_repair_backoff"] }
|
|
26980
|
+
},
|
|
26981
|
+
{
|
|
26982
|
+
version: 131,
|
|
26983
|
+
name: "dreaming-evidence-consumption",
|
|
26984
|
+
up: up1312,
|
|
26985
|
+
artifacts: { tables: ["dreaming_evidence_consumption"] }
|
|
26928
26986
|
}
|
|
26929
26987
|
];
|
|
26930
26988
|
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.199.
|
|
3
|
+
"version": "0.199.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.199.
|
|
29
|
-
"@signetai/core": "0.199.
|
|
28
|
+
"@signetai/connector-base": "0.199.2",
|
|
29
|
+
"@signetai/core": "0.199.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.0.0",
|