@signetai/connector-hermes-agent 0.201.2 → 0.202.1

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.
Files changed (2) hide show
  1. package/dist/index.js +28 -4
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -11301,6 +11301,12 @@ function up131(db) {
11301
11301
  ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
11302
11302
  `);
11303
11303
  }
11304
+ function up132(db) {
11305
+ db.exec(`
11306
+ CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
11307
+ ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
11308
+ `);
11309
+ }
11304
11310
  var MIGRATIONS = [
11305
11311
  {
11306
11312
  version: 1,
@@ -12349,6 +12355,12 @@ var MIGRATIONS = [
12349
12355
  name: "dreaming-evidence-consumption",
12350
12356
  up: up131,
12351
12357
  artifacts: { tables: ["dreaming_evidence_consumption"] }
12358
+ },
12359
+ {
12360
+ version: 132,
12361
+ name: "observer-scoped-epistemic-assertions",
12362
+ up: up132,
12363
+ artifacts: { tables: ["epistemic_assertions"] }
12352
12364
  }
12353
12365
  ];
12354
12366
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -19718,7 +19730,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
19718
19730
  return true;
19719
19731
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
19720
19732
  }
19721
- function up132(db) {
19733
+ function up133(db) {
19722
19734
  db.exec(`
19723
19735
  CREATE TABLE IF NOT EXISTS schema_migrations (
19724
19736
  version INTEGER PRIMARY KEY,
@@ -20202,7 +20214,7 @@ function addColumnIfMissing52(db, table, column, definition) {
20202
20214
  db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
20203
20215
  }
20204
20216
  }
20205
- function up133(db) {
20217
+ function up134(db) {
20206
20218
  db.exec(`
20207
20219
  CREATE TABLE IF NOT EXISTS ingestion_jobs (
20208
20220
  id TEXT PRIMARY KEY,
@@ -23951,11 +23963,17 @@ function up1312(db) {
23951
23963
  ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
23952
23964
  `);
23953
23965
  }
23966
+ function up1322(db) {
23967
+ db.exec(`
23968
+ CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
23969
+ ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
23970
+ `);
23971
+ }
23954
23972
  var MIGRATIONS2 = [
23955
23973
  {
23956
23974
  version: 1,
23957
23975
  name: "baseline",
23958
- up: up132,
23976
+ up: up133,
23959
23977
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
23960
23978
  },
23961
23979
  {
@@ -24033,7 +24051,7 @@ var MIGRATIONS2 = [
24033
24051
  {
24034
24052
  version: 13,
24035
24053
  name: "ingestion-tracking",
24036
- up: up133,
24054
+ up: up134,
24037
24055
  artifacts: {
24038
24056
  columns: [
24039
24057
  { table: "memories", column: "source_path" },
@@ -24999,6 +25017,12 @@ var MIGRATIONS2 = [
24999
25017
  name: "dreaming-evidence-consumption",
25000
25018
  up: up1312,
25001
25019
  artifacts: { tables: ["dreaming_evidence_consumption"] }
25020
+ },
25021
+ {
25022
+ version: 132,
25023
+ name: "observer-scoped-epistemic-assertions",
25024
+ up: up1322,
25025
+ artifacts: { tables: ["epistemic_assertions"] }
25002
25026
  }
25003
25027
  ];
25004
25028
  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-hermes-agent",
3
- "version": "0.201.2",
3
+ "version": "0.202.1",
4
4
  "description": "Signet connector for Hermes Agent — installs Signet as a pluggable memory provider",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -25,8 +25,8 @@
25
25
  "typecheck": "tsc --noEmit"
26
26
  },
27
27
  "dependencies": {
28
- "@signetai/connector-base": "0.201.2",
29
- "@signetai/core": "0.201.2"
28
+ "@signetai/connector-base": "0.202.1",
29
+ "@signetai/core": "0.202.1"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^22.0.0",