signetai 0.150.4 → 0.151.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/mcp-stdio.js CHANGED
@@ -38618,6 +38618,24 @@ function up87(db) {
38618
38618
  ON summary_jobs(agent_id, session_key, boundary_reason)
38619
38619
  `);
38620
38620
  }
38621
+ function up88(db) {
38622
+ db.exec(`
38623
+ CREATE TABLE IF NOT EXISTS transcript_recovery_files (
38624
+ agent_id TEXT NOT NULL,
38625
+ source_path TEXT NOT NULL,
38626
+ harness TEXT NOT NULL,
38627
+ size_bytes INTEGER NOT NULL,
38628
+ mtime_ms INTEGER NOT NULL,
38629
+ content_sha256 TEXT NOT NULL,
38630
+ session_id TEXT NOT NULL,
38631
+ last_scanned_at TEXT NOT NULL,
38632
+ PRIMARY KEY (agent_id, source_path)
38633
+ );
38634
+
38635
+ CREATE INDEX IF NOT EXISTS idx_transcript_capture_jobs_agent_session_id
38636
+ ON transcript_capture_jobs(agent_id, session_id, status);
38637
+ `);
38638
+ }
38621
38639
  var MIGRATIONS = [
38622
38640
  {
38623
38641
  version: 1,
@@ -39329,6 +39347,14 @@ var MIGRATIONS = [
39329
39347
  artifacts: {
39330
39348
  columns: [{ table: "summary_jobs", column: "boundary_reason" }]
39331
39349
  }
39350
+ },
39351
+ {
39352
+ version: 88,
39353
+ name: "transcript-recovery-files",
39354
+ up: up88,
39355
+ artifacts: {
39356
+ tables: ["transcript_recovery_files"]
39357
+ }
39332
39358
  }
39333
39359
  ];
39334
39360
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -1,43 +1,43 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "version": "0.150.4",
3
+ "version": "0.151.0",
4
4
  "assets": [
5
5
  {
6
6
  "name": "signet-darwin-arm64",
7
7
  "platform": "darwin-arm64",
8
- "sha256": "254268b7620497e1a33ea7b9030e68c64386d07c0b675be7d57497d730e7c52c",
9
- "size": 118580512
8
+ "sha256": "915f05b6c1aa81af8a0d33568008475e79e5b355963aa109e3ea5a7bc000c203",
9
+ "size": 118613536
10
10
  },
11
11
  {
12
12
  "name": "signet-darwin-x64",
13
13
  "platform": "darwin-x64",
14
- "sha256": "1e19bf337e2090b5268e293802847cd652af611bc62c45b2df1aa68b86e51a09",
15
- "size": 123193920
14
+ "sha256": "7be24e8118ada60965ff413531b1d776ba79e266036bb39e9f4b2447e21b6112",
15
+ "size": 123226688
16
16
  },
17
17
  {
18
18
  "name": "signet-linux-arm64",
19
19
  "platform": "linux-arm64",
20
- "sha256": "1fad0758bb86df6b3c66faaf2fef8ba625cc1a4cc8445c42d3a687f23a5fb470",
21
- "size": 155801094
20
+ "sha256": "9bb60e5bd5aa62dc01930ca44e064a22da89ab6eb83b117072234e258adb6080",
21
+ "size": 155835005
22
22
  },
23
23
  {
24
24
  "name": "signet-linux-x64",
25
25
  "platform": "linux-x64",
26
- "sha256": "811b36b6c5d3124fbb0341a45f6edea8ed48420774cf0bd9fe2abfdb3993ad61",
27
- "size": 156360085
26
+ "sha256": "6236b30d457ca53dcb9555dd859487122e81d265f319ea44298fc36ea976446f",
27
+ "size": 156393996
28
28
  },
29
29
  {
30
30
  "name": "signet-win32-x64.exe",
31
31
  "platform": "win32-x64",
32
- "sha256": "9339128f692cddbaf74e33c3ceec4d9d68b90c3b3fb9edfa1137e80169b62aa3",
33
- "size": 172492800
32
+ "sha256": "37b3e539c4fae44f9a2c4c84b399a56941b1cb0e6755cbaecc13096fc8ae2ae3",
33
+ "size": 172526592
34
34
  }
35
35
  ],
36
36
  "components": {
37
37
  "connectors": {
38
- "url": "signet-connectors-0.150.4.tar.gz",
39
- "sha256": "9a5be74eae15176c5f21743ae38afd4154d60f69e2fa49d317690c67bc4f34b7",
40
- "size": 15564
38
+ "url": "signet-connectors-0.151.0.tar.gz",
39
+ "sha256": "4ed2c38cc2d6cd0d3599e70ecd02f3a05f85927851f3073570b9e4d99debddaf",
40
+ "size": 15995
41
41
  }
42
42
  }
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signetai",
3
- "version": "0.150.4",
3
+ "version": "0.151.0",
4
4
  "description": "Signet native CLI installer wrapper",
5
5
  "type": "module",
6
6
  "bin": {
@@ -65,10 +65,10 @@
65
65
  "access": "public"
66
66
  },
67
67
  "optionalDependencies": {
68
- "signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.150.4/signetai-darwin-arm64-0.150.4.tgz",
69
- "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.150.4/signetai-darwin-x64-0.150.4.tgz",
70
- "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.150.4/signetai-linux-arm64-0.150.4.tgz",
71
- "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.150.4/signetai-linux-x64-0.150.4.tgz",
72
- "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.150.4/signetai-win32-x64-0.150.4.tgz"
68
+ "signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.151.0/signetai-darwin-arm64-0.151.0.tgz",
69
+ "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.151.0/signetai-darwin-x64-0.151.0.tgz",
70
+ "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.151.0/signetai-linux-arm64-0.151.0.tgz",
71
+ "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.151.0/signetai-linux-x64-0.151.0.tgz",
72
+ "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.151.0/signetai-win32-x64-0.151.0.tgz"
73
73
  }
74
74
  }