@signetai/core 0.146.4 → 0.147.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 CHANGED
@@ -10004,6 +10004,259 @@ function up82(db) {
10004
10004
  db.exec("CREATE INDEX IF NOT EXISTS idx_skill_inv_harness ON skill_invocations(harness, created_at)");
10005
10005
  }
10006
10006
 
10007
+ // src/migrations/083-memory-lifecycle-repair.ts
10008
+ var DEPENDENCY_TYPES = new Set([
10009
+ "uses",
10010
+ "requires",
10011
+ "owned_by",
10012
+ "owns",
10013
+ "blocks",
10014
+ "informs",
10015
+ "maintains",
10016
+ "implements",
10017
+ "built",
10018
+ "depends_on",
10019
+ "related_to",
10020
+ "learned_from",
10021
+ "teaches",
10022
+ "knows",
10023
+ "assumes",
10024
+ "supports_claim",
10025
+ "authored_by",
10026
+ "links_to",
10027
+ "contains",
10028
+ "contains_note",
10029
+ "contradicts",
10030
+ "supersedes",
10031
+ "part_of",
10032
+ "produced_artifact",
10033
+ "precedes",
10034
+ "follows",
10035
+ "triggers",
10036
+ "may_execute",
10037
+ "requires_approval_from",
10038
+ "impacts",
10039
+ "produces",
10040
+ "consumes"
10041
+ ]);
10042
+ function sqlStringList(values) {
10043
+ return [...values].map((value) => `'${value}'`).join(", ");
10044
+ }
10045
+ function hasTable3(db, table) {
10046
+ return Boolean(db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = ?").get(table));
10047
+ }
10048
+ function hasColumn12(db, table, column) {
10049
+ const rows = db.prepare(`PRAGMA table_info(${table})`).all();
10050
+ return rows.some((row) => row.name === column);
10051
+ }
10052
+ function addColumnIfMissing20(db, table, column, definition) {
10053
+ if (!hasColumn12(db, table, column))
10054
+ db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
10055
+ }
10056
+ function documentScopeColumnsPreservingExisting(db) {
10057
+ const preserveAgentId = hasColumn12(db, "documents", "agent_id");
10058
+ const preserveProject = hasColumn12(db, "documents", "project");
10059
+ if (preserveAgentId) {
10060
+ db.exec(`
10061
+ CREATE TEMP TABLE __signet_doc_agent_guard AS
10062
+ SELECT id, agent_id FROM documents
10063
+ WHERE NULLIF(TRIM(agent_id), '') IS NOT NULL
10064
+ AND NULLIF(TRIM(agent_id), '') <> 'default'
10065
+ `);
10066
+ }
10067
+ if (preserveProject) {
10068
+ db.exec(`
10069
+ CREATE TEMP TABLE __signet_doc_project_guard AS
10070
+ SELECT id, project FROM documents
10071
+ WHERE NULLIF(TRIM(project), '') IS NOT NULL
10072
+ `);
10073
+ }
10074
+ try {
10075
+ up80(db);
10076
+ if (preserveAgentId) {
10077
+ db.exec(`
10078
+ UPDATE documents
10079
+ SET agent_id = (SELECT agent_id FROM __signet_doc_agent_guard WHERE __signet_doc_agent_guard.id = documents.id)
10080
+ WHERE EXISTS (SELECT 1 FROM __signet_doc_agent_guard WHERE __signet_doc_agent_guard.id = documents.id)
10081
+ `);
10082
+ }
10083
+ if (preserveProject) {
10084
+ db.exec(`
10085
+ UPDATE documents
10086
+ SET project = (SELECT project FROM __signet_doc_project_guard WHERE __signet_doc_project_guard.id = documents.id)
10087
+ WHERE EXISTS (SELECT 1 FROM __signet_doc_project_guard WHERE __signet_doc_project_guard.id = documents.id)
10088
+ `);
10089
+ }
10090
+ } finally {
10091
+ db.exec("DROP TABLE IF EXISTS temp.__signet_doc_agent_guard");
10092
+ db.exec("DROP TABLE IF EXISTS temp.__signet_doc_project_guard");
10093
+ }
10094
+ }
10095
+ function up83(db) {
10096
+ up79(db);
10097
+ if (hasTable3(db, "documents")) {
10098
+ documentScopeColumnsPreservingExisting(db);
10099
+ }
10100
+ up81(db);
10101
+ addColumnIfMissing20(db, "memories", "superseded_by", "TEXT");
10102
+ addColumnIfMissing20(db, "memories", "superseded_at", "TEXT");
10103
+ addColumnIfMissing20(db, "memories", "superseded_reason", "TEXT");
10104
+ db.exec("CREATE INDEX IF NOT EXISTS idx_memories_superseded_by ON memories(superseded_by)");
10105
+ db.exec("CREATE INDEX IF NOT EXISTS idx_memories_active_supersession ON memories(is_deleted, superseded_by)");
10106
+ if (!hasTable3(db, "relations") || !hasTable3(db, "entity_dependencies"))
10107
+ return;
10108
+ addColumnIfMissing20(db, "entity_dependencies", "confidence", "REAL");
10109
+ addColumnIfMissing20(db, "entity_dependencies", "reason", "TEXT");
10110
+ addColumnIfMissing20(db, "entity_dependencies", "source_id", "TEXT");
10111
+ addColumnIfMissing20(db, "entity_dependencies", "source_kind", "TEXT");
10112
+ addColumnIfMissing20(db, "entity_dependencies", "proposal_evidence", "TEXT NOT NULL DEFAULT '[]'");
10113
+ addColumnIfMissing20(db, "entity_dependencies", "status", "TEXT NOT NULL DEFAULT 'active'");
10114
+ const relationConfidence = hasColumn12(db, "relations", "confidence") ? "r.confidence" : "NULL";
10115
+ const relationUpdatedAt = hasColumn12(db, "relations", "updated_at") ? "r.updated_at" : "r.created_at";
10116
+ const sourceAgentId = hasColumn12(db, "entities", "agent_id") ? "COALESCE(NULLIF(TRIM(src.agent_id), ''), 'default')" : "'default'";
10117
+ const targetAgentId = hasColumn12(db, "entities", "agent_id") ? "COALESCE(NULLIF(TRIM(dst.agent_id), ''), 'default')" : "'default'";
10118
+ db.exec(`
10119
+ INSERT OR IGNORE INTO entity_dependencies (
10120
+ id,
10121
+ source_entity_id,
10122
+ target_entity_id,
10123
+ agent_id,
10124
+ dependency_type,
10125
+ strength,
10126
+ confidence,
10127
+ reason,
10128
+ created_at,
10129
+ updated_at,
10130
+ source_id,
10131
+ source_kind,
10132
+ proposal_evidence,
10133
+ status
10134
+ )
10135
+ SELECT
10136
+ 'relation:' || r.id,
10137
+ r.source_entity_id,
10138
+ r.target_entity_id,
10139
+ COALESCE(${sourceAgentId}, ${targetAgentId}, 'default'),
10140
+ CASE WHEN r.relation_type IN (${sqlStringList(DEPENDENCY_TYPES)}) THEN r.relation_type ELSE 'related_to' END,
10141
+ MAX(0.1, MIN(1.0, COALESCE(r.strength, 0.5))),
10142
+ MAX(0.1, MIN(1.0, COALESCE(${relationConfidence}, 0.7))),
10143
+ 'legacy relation backfill: ' || r.relation_type,
10144
+ COALESCE(r.created_at, datetime('now')),
10145
+ COALESCE(${relationUpdatedAt}, r.created_at, datetime('now')),
10146
+ r.id,
10147
+ 'relation',
10148
+ '[]',
10149
+ 'active'
10150
+ FROM relations r
10151
+ JOIN entities src ON src.id = r.source_entity_id
10152
+ JOIN entities dst ON dst.id = r.target_entity_id
10153
+ WHERE r.source_entity_id <> r.target_entity_id
10154
+ AND ${sourceAgentId} = ${targetAgentId}
10155
+ `);
10156
+ }
10157
+
10158
+ // src/migrations/084-legacy-markdown-import-state.ts
10159
+ function up84(db) {
10160
+ db.exec(`
10161
+ CREATE TABLE IF NOT EXISTS legacy_markdown_imports (
10162
+ path TEXT PRIMARY KEY,
10163
+ mtime_ms INTEGER NOT NULL,
10164
+ ctime_ms INTEGER NOT NULL,
10165
+ size INTEGER NOT NULL,
10166
+ content_hash TEXT NOT NULL,
10167
+ importer_version INTEGER NOT NULL,
10168
+ chunk_count INTEGER NOT NULL DEFAULT 0,
10169
+ last_imported_at TEXT NOT NULL,
10170
+ last_seen_at TEXT NOT NULL,
10171
+ status TEXT NOT NULL DEFAULT 'imported',
10172
+ error TEXT
10173
+ );
10174
+
10175
+ CREATE TABLE IF NOT EXISTS legacy_markdown_chunks (
10176
+ file_path TEXT NOT NULL,
10177
+ chunk_hash TEXT NOT NULL,
10178
+ chunk_index INTEGER NOT NULL,
10179
+ memory_id TEXT,
10180
+ source_id TEXT,
10181
+ created_at TEXT NOT NULL,
10182
+ PRIMARY KEY (file_path, chunk_hash)
10183
+ );
10184
+
10185
+ CREATE INDEX IF NOT EXISTS idx_legacy_markdown_chunks_memory_id
10186
+ ON legacy_markdown_chunks(memory_id);
10187
+ `);
10188
+ }
10189
+
10190
+ // src/migrations/085-backfill-relations-to-dependencies.ts
10191
+ function up85(db) {
10192
+ const tables = db.prepare("SELECT name FROM sqlite_master WHERE type='table' AND name IN ('relations', 'entity_dependencies')").all();
10193
+ const tableNames = new Set(tables.map((r) => String(r.name)));
10194
+ if (!tableNames.has("relations") || !tableNames.has("entity_dependencies"))
10195
+ return;
10196
+ const relCols = db.prepare("PRAGMA table_info(relations)").all();
10197
+ const depCols = db.prepare("PRAGMA table_info(entity_dependencies)").all();
10198
+ const rel = new Set(relCols.map((c) => String(c.name)));
10199
+ const dep = new Set(depCols.map((c) => String(c.name)));
10200
+ if (!rel.has("source_entity_id") || !rel.has("relation_type"))
10201
+ return;
10202
+ if (!dep.has("source_entity_id") || !dep.has("dependency_type") || !dep.has("agent_id"))
10203
+ return;
10204
+ const hasRelConfidence = rel.has("confidence");
10205
+ const hasRelUpdated = rel.has("updated_at");
10206
+ const hasDepConfidence = dep.has("confidence");
10207
+ const hasDepReason = dep.has("reason");
10208
+ const hasDepStatus = dep.has("status");
10209
+ const selectParts = ["id", "source_entity_id", "target_entity_id"];
10210
+ const colParts = ["id", "source_entity_id", "target_entity_id"];
10211
+ selectParts.push("relation_type");
10212
+ colParts.push("dependency_type");
10213
+ selectParts.push("strength", "created_at");
10214
+ colParts.push("strength", "created_at");
10215
+ selectParts.push("'default'");
10216
+ colParts.push("agent_id");
10217
+ selectParts.push("NULL");
10218
+ colParts.push("aspect_id");
10219
+ if (hasRelConfidence && hasDepConfidence) {
10220
+ selectParts.push("confidence");
10221
+ colParts.push("confidence");
10222
+ }
10223
+ if (hasDepReason) {
10224
+ selectParts.push("'extracted'");
10225
+ colParts.push("reason");
10226
+ }
10227
+ if (hasDepStatus) {
10228
+ selectParts.push("'active'");
10229
+ colParts.push("status");
10230
+ }
10231
+ if (hasRelUpdated && dep.has("updated_at")) {
10232
+ selectParts.push("updated_at");
10233
+ colParts.push("updated_at");
10234
+ }
10235
+ const selectClause = selectParts.join(", ");
10236
+ const colsClause = colParts.join(", ");
10237
+ db.exec(`INSERT OR IGNORE INTO entity_dependencies (${colsClause})
10238
+ SELECT ${selectClause}
10239
+ FROM relations
10240
+ WHERE source_entity_id IS NOT NULL
10241
+ AND target_entity_id IS NOT NULL
10242
+ AND relation_type IS NOT NULL`);
10243
+ }
10244
+
10245
+ // src/migrations/086-summary-jobs-content-hash.ts
10246
+ function addColumnIfMissing21(db, table, column, definition) {
10247
+ const cols = db.prepare(`PRAGMA table_info(${table})`).all();
10248
+ if (cols.some((col) => col.name === column))
10249
+ return;
10250
+ db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
10251
+ }
10252
+ function up86(db) {
10253
+ addColumnIfMissing21(db, "summary_jobs", "content_hash", "TEXT");
10254
+ db.exec(`
10255
+ CREATE INDEX IF NOT EXISTS idx_summary_jobs_agent_session_content_hash
10256
+ ON summary_jobs(agent_id, session_key, content_hash)
10257
+ `);
10258
+ }
10259
+
10007
10260
  // src/migrations/index.ts
10008
10261
  var MIGRATIONS = [
10009
10262
  {
@@ -10669,6 +10922,45 @@ var MIGRATIONS = [
10669
10922
  { table: "skill_invocations", column: "tool_use_id" }
10670
10923
  ]
10671
10924
  }
10925
+ },
10926
+ {
10927
+ version: 83,
10928
+ name: "memory-lifecycle-repair",
10929
+ up: up83,
10930
+ artifacts: {
10931
+ tables: ["transcript_capture_jobs", "aggregate_evidence_sources", "entity_dependencies"],
10932
+ columns: [
10933
+ { table: "documents", column: "agent_id" },
10934
+ { table: "documents", column: "project" },
10935
+ { table: "memories", column: "superseded_by" },
10936
+ { table: "memories", column: "superseded_at" },
10937
+ { table: "memories", column: "superseded_reason" }
10938
+ ]
10939
+ }
10940
+ },
10941
+ {
10942
+ version: 84,
10943
+ name: "legacy-markdown-import-state",
10944
+ up: up84,
10945
+ artifacts: {
10946
+ tables: ["legacy_markdown_imports", "legacy_markdown_chunks"]
10947
+ }
10948
+ },
10949
+ {
10950
+ version: 85,
10951
+ name: "backfill-relations-to-dependencies",
10952
+ up: up85,
10953
+ artifacts: {
10954
+ tables: ["entity_dependencies"]
10955
+ }
10956
+ },
10957
+ {
10958
+ version: 86,
10959
+ name: "summary-jobs-content-hash",
10960
+ up: up86,
10961
+ artifacts: {
10962
+ columns: [{ table: "summary_jobs", column: "content_hash" }]
10963
+ }
10672
10964
  }
10673
10965
  ];
10674
10966
  function checksum(m) {
@@ -11572,7 +11864,7 @@ var ENTITY_TYPES = [
11572
11864
  ];
11573
11865
  var ATTRIBUTE_KINDS = ["attribute", "constraint"];
11574
11866
  var ATTRIBUTE_STATUSES = ["active", "superseded", "deleted"];
11575
- var DEPENDENCY_TYPES = [
11867
+ var DEPENDENCY_TYPES2 = [
11576
11868
  "uses",
11577
11869
  "requires",
11578
11870
  "owned_by",
@@ -20494,7 +20786,7 @@ export {
20494
20786
  Database,
20495
20787
  DOCUMENT_STATUSES,
20496
20788
  DOCUMENT_SOURCE_TYPES,
20497
- DEPENDENCY_TYPES,
20789
+ DEPENDENCY_TYPES2 as DEPENDENCY_TYPES,
20498
20790
  DEPENDENCY_DESCRIPTIONS,
20499
20791
  DEFAULT_REPLAY_WINDOW_MS,
20500
20792
  DEFAULT_PROVIDER_RATE_LIMIT,
@@ -0,0 +1,3 @@
1
+ import type { MigrationDb } from "./index";
2
+ export declare function up(db: MigrationDb): void;
3
+ //# sourceMappingURL=083-memory-lifecycle-repair.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"083-memory-lifecycle-repair.d.ts","sourceRoot":"","sources":["../../src/migrations/083-memory-lifecycle-repair.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AA8F3C,wBAAgB,EAAE,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CAwExC"}
@@ -0,0 +1,3 @@
1
+ import type { MigrationDb } from "./index";
2
+ export declare function up(db: MigrationDb): void;
3
+ //# sourceMappingURL=084-legacy-markdown-import-state.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"084-legacy-markdown-import-state.d.ts","sourceRoot":"","sources":["../../src/migrations/084-legacy-markdown-import-state.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3C,wBAAgB,EAAE,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CA6BxC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Migration 085: Backfill relations into entity_dependencies.
3
+ *
4
+ * The extraction pipeline writes extracted entity triples into the `relations`
5
+ * table (legacy), while graph diagnostics and traversal read from
6
+ * `entity_dependencies` (current). No code was bridging them, so extracted
7
+ * relations were invisible to graph traversal: edgeCount was always 0.
8
+ *
9
+ * This migration copies every existing `relations` row into
10
+ * `entity_dependencies`, mapping columns across the schema difference.
11
+ * Idempotent — INSERT OR IGNORE skips rows that already exist (matched on
12
+ * source_entity_id, target_entity_id, dependency_type, agent_id via the
13
+ * idx_entity_deps_unique index).
14
+ */
15
+ import type { MigrationDb } from "./index";
16
+ export declare function up(db: MigrationDb): void;
17
+ //# sourceMappingURL=085-backfill-relations-to-dependencies.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"085-backfill-relations-to-dependencies.d.ts","sourceRoot":"","sources":["../../src/migrations/085-backfill-relations-to-dependencies.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3C,wBAAgB,EAAE,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CA8ExC"}
@@ -0,0 +1,3 @@
1
+ import type { MigrationDb } from "./index";
2
+ export declare function up(db: MigrationDb): void;
3
+ //# sourceMappingURL=086-summary-jobs-content-hash.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"086-summary-jobs-content-hash.d.ts","sourceRoot":"","sources":["../../src/migrations/086-summary-jobs-content-hash.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAQ3C,wBAAgB,EAAE,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CAOxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/migrations/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAuFH,MAAM,WAAW,WAAW;IAC3B,IAAI,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG;QACrB,GAAG,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;QAC9B,GAAG,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAC;QAC7D,GAAG,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;KACnD,CAAC;CACF;AAED,MAAM,WAAW,kBAAkB;IAClC,QAAQ,CAAC,MAAM,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IACpC,QAAQ,CAAC,OAAO,CAAC,EAAE,SAAS;QAC3B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;QACvB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;QACxB,6FAA6F;QAC7F,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;KAC5B,EAAE,CAAC;CACJ;AAED,MAAM,WAAW,SAAS;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,WAAW,KAAK,IAAI,CAAC;IACvC,QAAQ,CAAC,SAAS,CAAC,EAAE,kBAAkB,CAAC;CACxC;AAED,oEAAoE;AACpE,eAAO,MAAM,UAAU,EAAE,SAAS,SAAS,EA4pB1C,CAAC;AAqOF;;;;;;;GAOG;AACH,wBAAgB,oBAAoB,CAAC,EAAE,EAAE,WAAW,GAAG,OAAO,CAiB7D;AAED,6CAA6C;AAC7C,eAAO,MAAM,qBAAqB,QAAkD,CAAC;AAsBrF;;;;;;;;GAQG;AACH,wBAAgB,aAAa,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CAiDnD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/migrations/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AA2FH,MAAM,WAAW,WAAW;IAC3B,IAAI,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG;QACrB,GAAG,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;QAC9B,GAAG,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAC;QAC7D,GAAG,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;KACnD,CAAC;CACF;AAED,MAAM,WAAW,kBAAkB;IAClC,QAAQ,CAAC,MAAM,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IACpC,QAAQ,CAAC,OAAO,CAAC,EAAE,SAAS;QAC3B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;QACvB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;QACxB,6FAA6F;QAC7F,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;KAC5B,EAAE,CAAC;CACJ;AAED,MAAM,WAAW,SAAS;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,WAAW,KAAK,IAAI,CAAC;IACvC,QAAQ,CAAC,SAAS,CAAC,EAAE,kBAAkB,CAAC;CACxC;AAED,oEAAoE;AACpE,eAAO,MAAM,UAAU,EAAE,SAAS,SAAS,EAmsB1C,CAAC;AAqOF;;;;;;;GAOG;AACH,wBAAgB,oBAAoB,CAAC,EAAE,EAAE,WAAW,GAAG,OAAO,CAiB7D;AAED,6CAA6C;AAC7C,eAAO,MAAM,qBAAqB,QAAkD,CAAC;AAsBrF;;;;;;;;GAQG;AACH,wBAAgB,aAAa,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CAiDnD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/core",
3
- "version": "0.146.4",
3
+ "version": "0.147.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Core library for Signet - portable AI agent identity",
6
6
  "type": "module",