@signetai/connector-openclaw 0.182.7 → 0.182.8
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 +32 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -10439,6 +10439,15 @@ function up113(db) {
|
|
|
10439
10439
|
ON session_claims(agent_id, state, expires_at);
|
|
10440
10440
|
`);
|
|
10441
10441
|
}
|
|
10442
|
+
function up114(db) {
|
|
10443
|
+
const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
|
|
10444
|
+
if (table == null)
|
|
10445
|
+
return;
|
|
10446
|
+
db.exec(`
|
|
10447
|
+
CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
|
|
10448
|
+
ON entity_attributes(memory_id, agent_id, status, importance);
|
|
10449
|
+
`);
|
|
10450
|
+
}
|
|
10442
10451
|
var MIGRATIONS = [
|
|
10443
10452
|
{
|
|
10444
10453
|
version: 1,
|
|
@@ -11351,6 +11360,11 @@ var MIGRATIONS = [
|
|
|
11351
11360
|
{ table: "session_claims", column: "end_marker" }
|
|
11352
11361
|
]
|
|
11353
11362
|
}
|
|
11363
|
+
},
|
|
11364
|
+
{
|
|
11365
|
+
version: 114,
|
|
11366
|
+
name: "memory-traversal-hydration-index",
|
|
11367
|
+
up: up114
|
|
11354
11368
|
}
|
|
11355
11369
|
];
|
|
11356
11370
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -20617,7 +20631,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
20617
20631
|
return true;
|
|
20618
20632
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
20619
20633
|
}
|
|
20620
|
-
function
|
|
20634
|
+
function up115(db) {
|
|
20621
20635
|
db.exec(`
|
|
20622
20636
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
20623
20637
|
version INTEGER PRIMARY KEY,
|
|
@@ -21040,7 +21054,7 @@ function up1010(db) {
|
|
|
21040
21054
|
)
|
|
21041
21055
|
`);
|
|
21042
21056
|
}
|
|
21043
|
-
function
|
|
21057
|
+
function up116(db) {
|
|
21044
21058
|
db.exec(`
|
|
21045
21059
|
CREATE TABLE IF NOT EXISTS session_scores (
|
|
21046
21060
|
id TEXT PRIMARY KEY,
|
|
@@ -24091,11 +24105,20 @@ function up1132(db) {
|
|
|
24091
24105
|
ON session_claims(agent_id, state, expires_at);
|
|
24092
24106
|
`);
|
|
24093
24107
|
}
|
|
24108
|
+
function up1142(db) {
|
|
24109
|
+
const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
|
|
24110
|
+
if (table == null)
|
|
24111
|
+
return;
|
|
24112
|
+
db.exec(`
|
|
24113
|
+
CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
|
|
24114
|
+
ON entity_attributes(memory_id, agent_id, status, importance);
|
|
24115
|
+
`);
|
|
24116
|
+
}
|
|
24094
24117
|
var MIGRATIONS2 = [
|
|
24095
24118
|
{
|
|
24096
24119
|
version: 1,
|
|
24097
24120
|
name: "baseline",
|
|
24098
|
-
up:
|
|
24121
|
+
up: up115,
|
|
24099
24122
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
24100
24123
|
},
|
|
24101
24124
|
{
|
|
@@ -24161,7 +24184,7 @@ var MIGRATIONS2 = [
|
|
|
24161
24184
|
{
|
|
24162
24185
|
version: 11,
|
|
24163
24186
|
name: "session-scores",
|
|
24164
|
-
up:
|
|
24187
|
+
up: up116,
|
|
24165
24188
|
artifacts: { tables: ["session_scores"] }
|
|
24166
24189
|
},
|
|
24167
24190
|
{
|
|
@@ -25003,6 +25026,11 @@ var MIGRATIONS2 = [
|
|
|
25003
25026
|
{ table: "session_claims", column: "end_marker" }
|
|
25004
25027
|
]
|
|
25005
25028
|
}
|
|
25029
|
+
},
|
|
25030
|
+
{
|
|
25031
|
+
version: 114,
|
|
25032
|
+
name: "memory-traversal-hydration-index",
|
|
25033
|
+
up: up1142
|
|
25006
25034
|
}
|
|
25007
25035
|
];
|
|
25008
25036
|
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.182.
|
|
3
|
+
"version": "0.182.8",
|
|
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.182.
|
|
29
|
-
"@signetai/core": "0.182.
|
|
28
|
+
"@signetai/connector-base": "0.182.8",
|
|
29
|
+
"@signetai/core": "0.182.8"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.0.0",
|