@signetai/connector-codex 0.182.6 → 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
|
@@ -10441,6 +10441,15 @@ function up113(db) {
|
|
|
10441
10441
|
ON session_claims(agent_id, state, expires_at);
|
|
10442
10442
|
`);
|
|
10443
10443
|
}
|
|
10444
|
+
function up114(db) {
|
|
10445
|
+
const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
|
|
10446
|
+
if (table == null)
|
|
10447
|
+
return;
|
|
10448
|
+
db.exec(`
|
|
10449
|
+
CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
|
|
10450
|
+
ON entity_attributes(memory_id, agent_id, status, importance);
|
|
10451
|
+
`);
|
|
10452
|
+
}
|
|
10444
10453
|
var MIGRATIONS = [
|
|
10445
10454
|
{
|
|
10446
10455
|
version: 1,
|
|
@@ -11353,6 +11362,11 @@ var MIGRATIONS = [
|
|
|
11353
11362
|
{ table: "session_claims", column: "end_marker" }
|
|
11354
11363
|
]
|
|
11355
11364
|
}
|
|
11365
|
+
},
|
|
11366
|
+
{
|
|
11367
|
+
version: 114,
|
|
11368
|
+
name: "memory-traversal-hydration-index",
|
|
11369
|
+
up: up114
|
|
11356
11370
|
}
|
|
11357
11371
|
];
|
|
11358
11372
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -18735,7 +18749,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
18735
18749
|
return true;
|
|
18736
18750
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
18737
18751
|
}
|
|
18738
|
-
function
|
|
18752
|
+
function up115(db) {
|
|
18739
18753
|
db.exec(`
|
|
18740
18754
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
18741
18755
|
version INTEGER PRIMARY KEY,
|
|
@@ -19158,7 +19172,7 @@ function up1010(db) {
|
|
|
19158
19172
|
)
|
|
19159
19173
|
`);
|
|
19160
19174
|
}
|
|
19161
|
-
function
|
|
19175
|
+
function up116(db) {
|
|
19162
19176
|
db.exec(`
|
|
19163
19177
|
CREATE TABLE IF NOT EXISTS session_scores (
|
|
19164
19178
|
id TEXT PRIMARY KEY,
|
|
@@ -22209,11 +22223,20 @@ function up1132(db) {
|
|
|
22209
22223
|
ON session_claims(agent_id, state, expires_at);
|
|
22210
22224
|
`);
|
|
22211
22225
|
}
|
|
22226
|
+
function up1142(db) {
|
|
22227
|
+
const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
|
|
22228
|
+
if (table == null)
|
|
22229
|
+
return;
|
|
22230
|
+
db.exec(`
|
|
22231
|
+
CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
|
|
22232
|
+
ON entity_attributes(memory_id, agent_id, status, importance);
|
|
22233
|
+
`);
|
|
22234
|
+
}
|
|
22212
22235
|
var MIGRATIONS2 = [
|
|
22213
22236
|
{
|
|
22214
22237
|
version: 1,
|
|
22215
22238
|
name: "baseline",
|
|
22216
|
-
up:
|
|
22239
|
+
up: up115,
|
|
22217
22240
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
22218
22241
|
},
|
|
22219
22242
|
{
|
|
@@ -22279,7 +22302,7 @@ var MIGRATIONS2 = [
|
|
|
22279
22302
|
{
|
|
22280
22303
|
version: 11,
|
|
22281
22304
|
name: "session-scores",
|
|
22282
|
-
up:
|
|
22305
|
+
up: up116,
|
|
22283
22306
|
artifacts: { tables: ["session_scores"] }
|
|
22284
22307
|
},
|
|
22285
22308
|
{
|
|
@@ -23121,6 +23144,11 @@ var MIGRATIONS2 = [
|
|
|
23121
23144
|
{ table: "session_claims", column: "end_marker" }
|
|
23122
23145
|
]
|
|
23123
23146
|
}
|
|
23147
|
+
},
|
|
23148
|
+
{
|
|
23149
|
+
version: 114,
|
|
23150
|
+
name: "memory-traversal-hydration-index",
|
|
23151
|
+
up: up1142
|
|
23124
23152
|
}
|
|
23125
23153
|
];
|
|
23126
23154
|
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-codex",
|
|
3
|
-
"version": "0.182.
|
|
3
|
+
"version": "0.182.8",
|
|
4
4
|
"description": "Signet connector for Codex 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.182.
|
|
28
|
-
"@signetai/core": "0.182.
|
|
27
|
+
"@signetai/connector-base": "0.182.8",
|
|
28
|
+
"@signetai/core": "0.182.8"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|