signetai 0.150.5 → 0.152.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,79 @@ 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
+ }
38639
+ function up89(db) {
38640
+ db.exec(`
38641
+ CREATE TABLE IF NOT EXISTS job_cancellations (
38642
+ id TEXT PRIMARY KEY,
38643
+ source_table TEXT NOT NULL,
38644
+ source_id TEXT NOT NULL,
38645
+ status_before TEXT NOT NULL,
38646
+ payload_json TEXT NOT NULL,
38647
+ reason TEXT,
38648
+ actor TEXT NOT NULL,
38649
+ actor_type TEXT NOT NULL,
38650
+ request_id TEXT,
38651
+ created_at TEXT NOT NULL
38652
+ )
38653
+ `);
38654
+ if (!indexExists(db, "job_cancellations", "idx_job_cancellations_source")) {
38655
+ db.exec(`CREATE INDEX IF NOT EXISTS idx_job_cancellations_source
38656
+ ON job_cancellations(source_table, source_id)`);
38657
+ }
38658
+ if (!indexExists(db, "job_cancellations", "idx_job_cancellations_created_at")) {
38659
+ db.exec(`CREATE INDEX IF NOT EXISTS idx_job_cancellations_created_at
38660
+ ON job_cancellations(created_at)`);
38661
+ }
38662
+ }
38663
+ function indexExists(db, table, indexName) {
38664
+ const rows = db.prepare(`PRAGMA index_list(${table})`).all();
38665
+ return rows.some((row) => row.name === indexName);
38666
+ }
38667
+ function up90(db) {
38668
+ db.exec(`
38669
+ CREATE TABLE IF NOT EXISTS job_archive (
38670
+ id TEXT PRIMARY KEY,
38671
+ source_table TEXT NOT NULL,
38672
+ source_id TEXT NOT NULL,
38673
+ status TEXT NOT NULL,
38674
+ payload_json TEXT NOT NULL,
38675
+ archived_at TEXT NOT NULL,
38676
+ archived_by TEXT NOT NULL,
38677
+ reason TEXT,
38678
+ created_at TEXT NOT NULL
38679
+ )
38680
+ `);
38681
+ if (!indexExists2(db, "job_archive", "idx_job_archive_source")) {
38682
+ db.exec(`CREATE INDEX IF NOT EXISTS idx_job_archive_source
38683
+ ON job_archive(source_table, source_id)`);
38684
+ }
38685
+ if (!indexExists2(db, "job_archive", "idx_job_archive_archived_at")) {
38686
+ db.exec(`CREATE INDEX IF NOT EXISTS idx_job_archive_archived_at
38687
+ ON job_archive(archived_at)`);
38688
+ }
38689
+ }
38690
+ function indexExists2(db, table, indexName) {
38691
+ const rows = db.prepare(`PRAGMA index_list(${table})`).all();
38692
+ return rows.some((row) => row.name === indexName);
38693
+ }
38621
38694
  var MIGRATIONS = [
38622
38695
  {
38623
38696
  version: 1,
@@ -39329,6 +39402,30 @@ var MIGRATIONS = [
39329
39402
  artifacts: {
39330
39403
  columns: [{ table: "summary_jobs", column: "boundary_reason" }]
39331
39404
  }
39405
+ },
39406
+ {
39407
+ version: 88,
39408
+ name: "transcript-recovery-files",
39409
+ up: up88,
39410
+ artifacts: {
39411
+ tables: ["transcript_recovery_files"]
39412
+ }
39413
+ },
39414
+ {
39415
+ version: 89,
39416
+ name: "job-cancellations",
39417
+ up: up89,
39418
+ artifacts: {
39419
+ tables: ["job_cancellations"]
39420
+ }
39421
+ },
39422
+ {
39423
+ version: 90,
39424
+ name: "job-archive",
39425
+ up: up90,
39426
+ artifacts: {
39427
+ tables: ["job_archive"]
39428
+ }
39332
39429
  }
39333
39430
  ];
39334
39431
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -1,43 +1,43 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "version": "0.150.5",
3
+ "version": "0.152.0",
4
4
  "assets": [
5
5
  {
6
6
  "name": "signet-darwin-arm64",
7
7
  "platform": "darwin-arm64",
8
- "sha256": "7069b0edb11f8aea1a9c7bdd9c46a642070f0b70920ac85fb49795ecc6ef9d56",
9
- "size": 118580512
8
+ "sha256": "6a7fe2faf62fb531bcb1cbcd684368cff6c24ca015346833eb773b94b1013cc4",
9
+ "size": 118679584
10
10
  },
11
11
  {
12
12
  "name": "signet-darwin-x64",
13
13
  "platform": "darwin-x64",
14
- "sha256": "5fc9aacc0103d665e0eb6416de50216e480f3691a5f2fcc83705e309ae6ca1ca",
15
- "size": 123193920
14
+ "sha256": "143435efba328427e716af1580f7232b358fc7328b9b86f91397fd4a9051a8d8",
15
+ "size": 123292224
16
16
  },
17
17
  {
18
18
  "name": "signet-linux-arm64",
19
19
  "platform": "linux-arm64",
20
- "sha256": "a8f62e7b421677ed85aab6330962fb9591149d978ddcce0f498e618883803a06",
21
- "size": 155805844
20
+ "sha256": "f42b1ae0b68c3db78f69ae29256e8acbe9cdc5b263a262778c08636d6a4db6a5",
21
+ "size": 155908419
22
22
  },
23
23
  {
24
24
  "name": "signet-linux-x64",
25
25
  "platform": "linux-x64",
26
- "sha256": "6fdea68dbfdec1160a4e5682dc7fea68ff0eb99bac059d6cc278ec0c13024855",
27
- "size": 156364835
26
+ "sha256": "5211aa63d50b6d7d72b2619f75269cba2c1a69ac9dc37bdd745fa7c3eba43089",
27
+ "size": 156467418
28
28
  },
29
29
  {
30
30
  "name": "signet-win32-x64.exe",
31
31
  "platform": "win32-x64",
32
- "sha256": "a6aaff7909d9475f89cfa706572c671b9e2b58d25e868ec7a20d50c74d27eaba",
33
- "size": 172497408
32
+ "sha256": "c74ce5981c999e0e29b54e7196921a0bfbd1a1e076e8535f878716502300aa10",
33
+ "size": 172599808
34
34
  }
35
35
  ],
36
36
  "components": {
37
37
  "connectors": {
38
- "url": "signet-connectors-0.150.5.tar.gz",
39
- "sha256": "372c983fc1b6f36f98b8686d4bfca2ff81ecc95df9050c3e57e990d3c6feb71d",
40
- "size": 15992
38
+ "url": "signet-connectors-0.152.0.tar.gz",
39
+ "sha256": "1cacf3f6b12beeac8c3b93e8f575c02d2254589de67af3f5dae9b1869db3d5d4",
40
+ "size": 15568
41
41
  }
42
42
  }
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signetai",
3
- "version": "0.150.5",
3
+ "version": "0.152.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.5/signetai-darwin-arm64-0.150.5.tgz",
69
- "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.150.5/signetai-darwin-x64-0.150.5.tgz",
70
- "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.150.5/signetai-linux-arm64-0.150.5.tgz",
71
- "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.150.5/signetai-linux-x64-0.150.5.tgz",
72
- "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.150.5/signetai-win32-x64-0.150.5.tgz"
68
+ "signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.152.0/signetai-darwin-arm64-0.152.0.tgz",
69
+ "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.152.0/signetai-darwin-x64-0.152.0.tgz",
70
+ "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.152.0/signetai-linux-arm64-0.152.0.tgz",
71
+ "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.152.0/signetai-linux-x64-0.152.0.tgz",
72
+ "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.152.0/signetai-win32-x64-0.152.0.tgz"
73
73
  }
74
74
  }