@signetai/connector-claude-code 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
|
@@ -10440,6 +10440,15 @@ function up113(db) {
|
|
|
10440
10440
|
ON session_claims(agent_id, state, expires_at);
|
|
10441
10441
|
`);
|
|
10442
10442
|
}
|
|
10443
|
+
function up114(db) {
|
|
10444
|
+
const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
|
|
10445
|
+
if (table == null)
|
|
10446
|
+
return;
|
|
10447
|
+
db.exec(`
|
|
10448
|
+
CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
|
|
10449
|
+
ON entity_attributes(memory_id, agent_id, status, importance);
|
|
10450
|
+
`);
|
|
10451
|
+
}
|
|
10443
10452
|
var MIGRATIONS = [
|
|
10444
10453
|
{
|
|
10445
10454
|
version: 1,
|
|
@@ -11352,6 +11361,11 @@ var MIGRATIONS = [
|
|
|
11352
11361
|
{ table: "session_claims", column: "end_marker" }
|
|
11353
11362
|
]
|
|
11354
11363
|
}
|
|
11364
|
+
},
|
|
11365
|
+
{
|
|
11366
|
+
version: 114,
|
|
11367
|
+
name: "memory-traversal-hydration-index",
|
|
11368
|
+
up: up114
|
|
11355
11369
|
}
|
|
11356
11370
|
];
|
|
11357
11371
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -18644,7 +18658,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
18644
18658
|
return true;
|
|
18645
18659
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
18646
18660
|
}
|
|
18647
|
-
function
|
|
18661
|
+
function up115(db) {
|
|
18648
18662
|
db.exec(`
|
|
18649
18663
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
18650
18664
|
version INTEGER PRIMARY KEY,
|
|
@@ -19067,7 +19081,7 @@ function up1010(db) {
|
|
|
19067
19081
|
)
|
|
19068
19082
|
`);
|
|
19069
19083
|
}
|
|
19070
|
-
function
|
|
19084
|
+
function up116(db) {
|
|
19071
19085
|
db.exec(`
|
|
19072
19086
|
CREATE TABLE IF NOT EXISTS session_scores (
|
|
19073
19087
|
id TEXT PRIMARY KEY,
|
|
@@ -22118,11 +22132,20 @@ function up1132(db) {
|
|
|
22118
22132
|
ON session_claims(agent_id, state, expires_at);
|
|
22119
22133
|
`);
|
|
22120
22134
|
}
|
|
22135
|
+
function up1142(db) {
|
|
22136
|
+
const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
|
|
22137
|
+
if (table == null)
|
|
22138
|
+
return;
|
|
22139
|
+
db.exec(`
|
|
22140
|
+
CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
|
|
22141
|
+
ON entity_attributes(memory_id, agent_id, status, importance);
|
|
22142
|
+
`);
|
|
22143
|
+
}
|
|
22121
22144
|
var MIGRATIONS2 = [
|
|
22122
22145
|
{
|
|
22123
22146
|
version: 1,
|
|
22124
22147
|
name: "baseline",
|
|
22125
|
-
up:
|
|
22148
|
+
up: up115,
|
|
22126
22149
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
22127
22150
|
},
|
|
22128
22151
|
{
|
|
@@ -22188,7 +22211,7 @@ var MIGRATIONS2 = [
|
|
|
22188
22211
|
{
|
|
22189
22212
|
version: 11,
|
|
22190
22213
|
name: "session-scores",
|
|
22191
|
-
up:
|
|
22214
|
+
up: up116,
|
|
22192
22215
|
artifacts: { tables: ["session_scores"] }
|
|
22193
22216
|
},
|
|
22194
22217
|
{
|
|
@@ -23030,6 +23053,11 @@ var MIGRATIONS2 = [
|
|
|
23030
23053
|
{ table: "session_claims", column: "end_marker" }
|
|
23031
23054
|
]
|
|
23032
23055
|
}
|
|
23056
|
+
},
|
|
23057
|
+
{
|
|
23058
|
+
version: 114,
|
|
23059
|
+
name: "memory-traversal-hydration-index",
|
|
23060
|
+
up: up1142
|
|
23033
23061
|
}
|
|
23034
23062
|
];
|
|
23035
23063
|
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.182.
|
|
3
|
+
"version": "0.182.8",
|
|
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.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",
|