@signetai/connector-claude-code 0.201.1 → 0.202.0
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 +28 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -11299,6 +11299,12 @@ function up131(db) {
|
|
|
11299
11299
|
ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
|
|
11300
11300
|
`);
|
|
11301
11301
|
}
|
|
11302
|
+
function up132(db) {
|
|
11303
|
+
db.exec(`
|
|
11304
|
+
CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
|
|
11305
|
+
ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
|
|
11306
|
+
`);
|
|
11307
|
+
}
|
|
11302
11308
|
var MIGRATIONS = [
|
|
11303
11309
|
{
|
|
11304
11310
|
version: 1,
|
|
@@ -12347,6 +12353,12 @@ var MIGRATIONS = [
|
|
|
12347
12353
|
name: "dreaming-evidence-consumption",
|
|
12348
12354
|
up: up131,
|
|
12349
12355
|
artifacts: { tables: ["dreaming_evidence_consumption"] }
|
|
12356
|
+
},
|
|
12357
|
+
{
|
|
12358
|
+
version: 132,
|
|
12359
|
+
name: "observer-scoped-epistemic-assertions",
|
|
12360
|
+
up: up132,
|
|
12361
|
+
artifacts: { tables: ["epistemic_assertions"] }
|
|
12350
12362
|
}
|
|
12351
12363
|
];
|
|
12352
12364
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -19744,7 +19756,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
19744
19756
|
return true;
|
|
19745
19757
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
19746
19758
|
}
|
|
19747
|
-
function
|
|
19759
|
+
function up133(db) {
|
|
19748
19760
|
db.exec(`
|
|
19749
19761
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
19750
19762
|
version INTEGER PRIMARY KEY,
|
|
@@ -20228,7 +20240,7 @@ function addColumnIfMissing52(db, table, column, definition) {
|
|
|
20228
20240
|
db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
|
|
20229
20241
|
}
|
|
20230
20242
|
}
|
|
20231
|
-
function
|
|
20243
|
+
function up134(db) {
|
|
20232
20244
|
db.exec(`
|
|
20233
20245
|
CREATE TABLE IF NOT EXISTS ingestion_jobs (
|
|
20234
20246
|
id TEXT PRIMARY KEY,
|
|
@@ -23977,11 +23989,17 @@ function up1312(db) {
|
|
|
23977
23989
|
ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
|
|
23978
23990
|
`);
|
|
23979
23991
|
}
|
|
23992
|
+
function up1322(db) {
|
|
23993
|
+
db.exec(`
|
|
23994
|
+
CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
|
|
23995
|
+
ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
|
|
23996
|
+
`);
|
|
23997
|
+
}
|
|
23980
23998
|
var MIGRATIONS2 = [
|
|
23981
23999
|
{
|
|
23982
24000
|
version: 1,
|
|
23983
24001
|
name: "baseline",
|
|
23984
|
-
up:
|
|
24002
|
+
up: up133,
|
|
23985
24003
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
23986
24004
|
},
|
|
23987
24005
|
{
|
|
@@ -24059,7 +24077,7 @@ var MIGRATIONS2 = [
|
|
|
24059
24077
|
{
|
|
24060
24078
|
version: 13,
|
|
24061
24079
|
name: "ingestion-tracking",
|
|
24062
|
-
up:
|
|
24080
|
+
up: up134,
|
|
24063
24081
|
artifacts: {
|
|
24064
24082
|
columns: [
|
|
24065
24083
|
{ table: "memories", column: "source_path" },
|
|
@@ -25025,6 +25043,12 @@ var MIGRATIONS2 = [
|
|
|
25025
25043
|
name: "dreaming-evidence-consumption",
|
|
25026
25044
|
up: up1312,
|
|
25027
25045
|
artifacts: { tables: ["dreaming_evidence_consumption"] }
|
|
25046
|
+
},
|
|
25047
|
+
{
|
|
25048
|
+
version: 132,
|
|
25049
|
+
name: "observer-scoped-epistemic-assertions",
|
|
25050
|
+
up: up1322,
|
|
25051
|
+
artifacts: { tables: ["epistemic_assertions"] }
|
|
25028
25052
|
}
|
|
25029
25053
|
];
|
|
25030
25054
|
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.
|
|
3
|
+
"version": "0.202.0",
|
|
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.
|
|
28
|
-
"@signetai/core": "0.
|
|
27
|
+
"@signetai/connector-base": "0.202.0",
|
|
28
|
+
"@signetai/core": "0.202.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|