@pellux/goodvibes-tui 0.19.46 → 0.19.48

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/CHANGELOG.md CHANGED
@@ -4,6 +4,25 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.19.48] — 2026-04-28
8
+
9
+ ### Changed
10
+ - Updated `@pellux/goodvibes-sdk` to `0.26.1` for SDK-owned `goodvibes_context` and `goodvibes_settings` tools, shared harness-awareness prompt support, and Home Assistant automation tool alias support.
11
+ - Adopted SDK 0.26.1 shared-session routing semantics where omitted message `kind` defaults to normal chat and `kind: "task"` is reserved for agent/WRFC continuations.
12
+
13
+ ### Fixed
14
+ - Picked up SDK fixes that prevent ordinary shared-session messages from accidentally binding to agent task handling.
15
+
16
+ ---
17
+
18
+ ## [0.19.47] — 2026-04-28
19
+
20
+ ### Fixed
21
+ - Moved Bun compile compatibility patching into `prebuild` so manual local compile flows patch SDK 0.26.0 transitive `css-tree` JSON loaders before `bun build --compile`.
22
+ - Patched the remaining `mdn-data` JSON imports used by `css-tree/lib/data.js`, fixing compiled TUI startup from directories outside the source checkout.
23
+
24
+ ---
25
+
7
26
  ## [0.19.46] — 2026-04-28
8
27
 
9
28
  ### Fixed
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml/badge.svg)](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
- [![Version](https://img.shields.io/badge/version-0.19.46-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.19.48-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
6
6
 
7
7
  A terminal-native AI coding, operations, automation, knowledge, and integration console with a typed runtime, omnichannel surfaces, structured memory/knowledge, and a raw ANSI renderer.
8
8
 
@@ -3,7 +3,7 @@
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "0.26.0"
6
+ "version": "0.26.1"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -51325,7 +51325,7 @@
51325
51325
  {
51326
51326
  "id": "sessions.messages.create",
51327
51327
  "title": "Post Shared Session Message",
51328
- "description": "Append a user message to a shared session and queue assistant work.",
51328
+ "description": "Append a user message to a shared session. Omitted `kind` defaults to `message` conversation routing; send `kind: \"task\"` to request agent/WRFC task continuation.",
51329
51329
  "category": "sessions",
51330
51330
  "source": "builtin",
51331
51331
  "access": "authenticated",
@@ -51352,6 +51352,9 @@
51352
51352
  "surfaceId": {
51353
51353
  "type": "string"
51354
51354
  },
51355
+ "kind": {
51356
+ "type": "string"
51357
+ },
51355
51358
  "routing": {
51356
51359
  "type": "object",
51357
51360
  "properties": {
@@ -51465,98 +51468,213 @@
51465
51468
  "additionalProperties": true
51466
51469
  },
51467
51470
  "outputSchema": {
51468
- "type": "object",
51469
- "properties": {
51470
- "session": {
51471
- "anyOf": [
51472
- {
51471
+ "anyOf": [
51472
+ {
51473
+ "type": "object",
51474
+ "properties": {
51475
+ "messageId": {
51476
+ "type": "string"
51477
+ },
51478
+ "routedTo": {
51479
+ "type": "string"
51480
+ },
51481
+ "sessionId": {
51482
+ "type": "string"
51483
+ }
51484
+ },
51485
+ "required": [
51486
+ "messageId",
51487
+ "routedTo",
51488
+ "sessionId"
51489
+ ],
51490
+ "additionalProperties": false
51491
+ },
51492
+ {
51493
+ "type": "object",
51494
+ "properties": {
51495
+ "session": {
51496
+ "anyOf": [
51497
+ {
51498
+ "type": "object",
51499
+ "properties": {
51500
+ "id": {
51501
+ "type": "string"
51502
+ },
51503
+ "title": {
51504
+ "type": "string"
51505
+ },
51506
+ "status": {
51507
+ "type": "string",
51508
+ "enum": [
51509
+ "active",
51510
+ "closed"
51511
+ ]
51512
+ },
51513
+ "createdAt": {
51514
+ "type": "number"
51515
+ },
51516
+ "updatedAt": {
51517
+ "type": "number"
51518
+ },
51519
+ "lastMessageAt": {
51520
+ "type": "number"
51521
+ },
51522
+ "closedAt": {
51523
+ "type": "number"
51524
+ },
51525
+ "messageCount": {
51526
+ "type": "number"
51527
+ },
51528
+ "pendingInputCount": {
51529
+ "type": "number"
51530
+ },
51531
+ "routeIds": {
51532
+ "type": "array",
51533
+ "items": {
51534
+ "type": "string"
51535
+ }
51536
+ },
51537
+ "surfaceKinds": {
51538
+ "type": "array",
51539
+ "items": {
51540
+ "type": "string"
51541
+ }
51542
+ },
51543
+ "participants": {
51544
+ "type": "array",
51545
+ "items": {
51546
+ "type": "object",
51547
+ "properties": {
51548
+ "surfaceKind": {
51549
+ "type": "string"
51550
+ },
51551
+ "surfaceId": {
51552
+ "type": "string"
51553
+ },
51554
+ "externalId": {
51555
+ "type": "string"
51556
+ },
51557
+ "userId": {
51558
+ "type": "string"
51559
+ },
51560
+ "displayName": {
51561
+ "type": "string"
51562
+ },
51563
+ "routeId": {
51564
+ "type": "string"
51565
+ },
51566
+ "lastSeenAt": {
51567
+ "type": "number"
51568
+ }
51569
+ },
51570
+ "required": [
51571
+ "surfaceKind",
51572
+ "surfaceId",
51573
+ "lastSeenAt"
51574
+ ],
51575
+ "additionalProperties": false
51576
+ }
51577
+ },
51578
+ "activeAgentId": {
51579
+ "type": "string"
51580
+ },
51581
+ "lastAgentId": {
51582
+ "type": "string"
51583
+ },
51584
+ "lastError": {
51585
+ "type": "string"
51586
+ },
51587
+ "metadata": {
51588
+ "type": "object",
51589
+ "additionalProperties": {
51590
+ "anyOf": [
51591
+ {
51592
+ "type": "string"
51593
+ },
51594
+ {
51595
+ "type": "number"
51596
+ },
51597
+ {
51598
+ "type": "boolean"
51599
+ },
51600
+ {
51601
+ "type": "null"
51602
+ },
51603
+ {
51604
+ "type": "object",
51605
+ "additionalProperties": {
51606
+ "$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.session.anyOf[0].properties.metadata.additionalProperties"
51607
+ }
51608
+ },
51609
+ {
51610
+ "type": "array",
51611
+ "items": {
51612
+ "$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.session.anyOf[0].properties.metadata.additionalProperties"
51613
+ }
51614
+ }
51615
+ ]
51616
+ }
51617
+ }
51618
+ },
51619
+ "required": [
51620
+ "id",
51621
+ "title",
51622
+ "status",
51623
+ "createdAt",
51624
+ "updatedAt",
51625
+ "messageCount",
51626
+ "pendingInputCount",
51627
+ "routeIds",
51628
+ "surfaceKinds",
51629
+ "participants",
51630
+ "metadata"
51631
+ ],
51632
+ "additionalProperties": false
51633
+ },
51634
+ {
51635
+ "type": "null"
51636
+ }
51637
+ ]
51638
+ },
51639
+ "message": {
51473
51640
  "type": "object",
51474
51641
  "properties": {
51475
51642
  "id": {
51476
51643
  "type": "string"
51477
51644
  },
51478
- "title": {
51645
+ "sessionId": {
51479
51646
  "type": "string"
51480
51647
  },
51481
- "status": {
51648
+ "role": {
51482
51649
  "type": "string",
51483
51650
  "enum": [
51484
- "active",
51485
- "closed"
51651
+ "user",
51652
+ "assistant",
51653
+ "system"
51486
51654
  ]
51487
51655
  },
51488
- "createdAt": {
51489
- "type": "number"
51490
- },
51491
- "updatedAt": {
51492
- "type": "number"
51493
- },
51494
- "lastMessageAt": {
51495
- "type": "number"
51496
- },
51497
- "closedAt": {
51498
- "type": "number"
51499
- },
51500
- "messageCount": {
51501
- "type": "number"
51656
+ "body": {
51657
+ "type": "string"
51502
51658
  },
51503
- "pendingInputCount": {
51659
+ "createdAt": {
51504
51660
  "type": "number"
51505
51661
  },
51506
- "routeIds": {
51507
- "type": "array",
51508
- "items": {
51509
- "type": "string"
51510
- }
51662
+ "surfaceKind": {
51663
+ "type": "string"
51511
51664
  },
51512
- "surfaceKinds": {
51513
- "type": "array",
51514
- "items": {
51515
- "type": "string"
51516
- }
51665
+ "surfaceId": {
51666
+ "type": "string"
51517
51667
  },
51518
- "participants": {
51519
- "type": "array",
51520
- "items": {
51521
- "type": "object",
51522
- "properties": {
51523
- "surfaceKind": {
51524
- "type": "string"
51525
- },
51526
- "surfaceId": {
51527
- "type": "string"
51528
- },
51529
- "externalId": {
51530
- "type": "string"
51531
- },
51532
- "userId": {
51533
- "type": "string"
51534
- },
51535
- "displayName": {
51536
- "type": "string"
51537
- },
51538
- "routeId": {
51539
- "type": "string"
51540
- },
51541
- "lastSeenAt": {
51542
- "type": "number"
51543
- }
51544
- },
51545
- "required": [
51546
- "surfaceKind",
51547
- "surfaceId",
51548
- "lastSeenAt"
51549
- ],
51550
- "additionalProperties": false
51551
- }
51668
+ "routeId": {
51669
+ "type": "string"
51552
51670
  },
51553
- "activeAgentId": {
51671
+ "agentId": {
51554
51672
  "type": "string"
51555
51673
  },
51556
- "lastAgentId": {
51674
+ "userId": {
51557
51675
  "type": "string"
51558
51676
  },
51559
- "lastError": {
51677
+ "displayName": {
51560
51678
  "type": "string"
51561
51679
  },
51562
51680
  "metadata": {
@@ -51578,13 +51696,13 @@
51578
51696
  {
51579
51697
  "type": "object",
51580
51698
  "additionalProperties": {
51581
- "$ref": "$.operator.methods[204].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
51699
+ "$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.message.properties.metadata.additionalProperties"
51582
51700
  }
51583
51701
  },
51584
51702
  {
51585
51703
  "type": "array",
51586
51704
  "items": {
51587
- "$ref": "$.operator.methods[204].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
51705
+ "$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.message.properties.metadata.additionalProperties"
51588
51706
  }
51589
51707
  }
51590
51708
  ]
@@ -51593,244 +51711,114 @@
51593
51711
  },
51594
51712
  "required": [
51595
51713
  "id",
51596
- "title",
51597
- "status",
51714
+ "sessionId",
51715
+ "role",
51716
+ "body",
51598
51717
  "createdAt",
51599
- "updatedAt",
51600
- "messageCount",
51601
- "pendingInputCount",
51602
- "routeIds",
51603
- "surfaceKinds",
51604
- "participants",
51605
51718
  "metadata"
51606
51719
  ],
51607
51720
  "additionalProperties": false
51608
51721
  },
51609
- {
51610
- "type": "null"
51611
- }
51612
- ]
51613
- },
51614
- "message": {
51615
- "type": "object",
51616
- "properties": {
51617
- "id": {
51618
- "type": "string"
51619
- },
51620
- "sessionId": {
51621
- "type": "string"
51622
- },
51623
- "role": {
51624
- "type": "string",
51625
- "enum": [
51626
- "user",
51627
- "assistant",
51628
- "system"
51629
- ]
51630
- },
51631
- "body": {
51632
- "type": "string"
51633
- },
51634
- "createdAt": {
51635
- "type": "number"
51636
- },
51637
- "surfaceKind": {
51638
- "type": "string"
51639
- },
51640
- "surfaceId": {
51641
- "type": "string"
51642
- },
51643
- "routeId": {
51644
- "type": "string"
51645
- },
51646
- "agentId": {
51647
- "type": "string"
51648
- },
51649
- "userId": {
51650
- "type": "string"
51651
- },
51652
- "displayName": {
51653
- "type": "string"
51654
- },
51655
- "metadata": {
51656
- "type": "object",
51657
- "additionalProperties": {
51658
- "anyOf": [
51659
- {
51660
- "type": "string"
51661
- },
51662
- {
51663
- "type": "number"
51664
- },
51665
- {
51666
- "type": "boolean"
51667
- },
51668
- {
51669
- "type": "null"
51670
- },
51671
- {
51672
- "type": "object",
51673
- "additionalProperties": {
51674
- "$ref": "$.operator.methods[204].outputSchema.properties.message.properties.metadata.additionalProperties"
51675
- }
51676
- },
51677
- {
51678
- "type": "array",
51679
- "items": {
51680
- "$ref": "$.operator.methods[204].outputSchema.properties.message.properties.metadata.additionalProperties"
51681
- }
51682
- }
51683
- ]
51684
- }
51685
- }
51686
- },
51687
- "required": [
51688
- "id",
51689
- "sessionId",
51690
- "role",
51691
- "body",
51692
- "createdAt",
51693
- "metadata"
51694
- ],
51695
- "additionalProperties": false
51696
- },
51697
- "input": {
51698
- "type": "object",
51699
- "properties": {
51700
- "id": {
51701
- "type": "string"
51702
- },
51703
- "sessionId": {
51704
- "type": "string"
51705
- },
51706
- "intent": {
51707
- "type": "string",
51708
- "enum": [
51709
- "submit",
51710
- "steer",
51711
- "follow-up"
51712
- ]
51713
- },
51714
- "state": {
51715
- "type": "string",
51716
- "enum": [
51717
- "queued",
51718
- "delivered",
51719
- "spawned",
51720
- "completed",
51721
- "cancelled",
51722
- "failed",
51723
- "rejected"
51724
- ]
51725
- },
51726
- "correlationId": {
51727
- "type": "string"
51728
- },
51729
- "causationId": {
51730
- "type": "string"
51731
- },
51732
- "body": {
51733
- "type": "string"
51734
- },
51735
- "createdAt": {
51736
- "type": "number"
51737
- },
51738
- "updatedAt": {
51739
- "type": "number"
51740
- },
51741
- "routeId": {
51742
- "type": "string"
51743
- },
51744
- "surfaceKind": {
51745
- "type": "string"
51746
- },
51747
- "surfaceId": {
51748
- "type": "string"
51749
- },
51750
- "externalId": {
51751
- "type": "string"
51752
- },
51753
- "threadId": {
51754
- "type": "string"
51755
- },
51756
- "userId": {
51757
- "type": "string"
51758
- },
51759
- "displayName": {
51760
- "type": "string"
51761
- },
51762
- "activeAgentId": {
51763
- "type": "string"
51764
- },
51765
- "metadata": {
51766
- "type": "object",
51767
- "additionalProperties": {
51768
- "anyOf": [
51769
- {
51770
- "type": "string"
51771
- },
51772
- {
51773
- "type": "number"
51774
- },
51775
- {
51776
- "type": "boolean"
51777
- },
51778
- {
51779
- "type": "null"
51780
- },
51781
- {
51782
- "type": "object",
51783
- "additionalProperties": {
51784
- "$ref": "$.operator.methods[204].outputSchema.properties.input.properties.metadata.additionalProperties"
51785
- }
51786
- },
51787
- {
51788
- "type": "array",
51789
- "items": {
51790
- "$ref": "$.operator.methods[204].outputSchema.properties.input.properties.metadata.additionalProperties"
51791
- }
51792
- }
51793
- ]
51794
- }
51795
- },
51796
- "routing": {
51722
+ "input": {
51797
51723
  "type": "object",
51798
51724
  "properties": {
51799
- "providerId": {
51725
+ "id": {
51800
51726
  "type": "string"
51801
51727
  },
51802
- "modelId": {
51728
+ "sessionId": {
51803
51729
  "type": "string"
51804
51730
  },
51805
- "providerSelection": {
51731
+ "intent": {
51806
51732
  "type": "string",
51807
51733
  "enum": [
51808
- "inherit-current",
51809
- "concrete",
51810
- "synthetic"
51734
+ "submit",
51735
+ "steer",
51736
+ "follow-up"
51811
51737
  ]
51812
51738
  },
51813
- "unresolvedModelPolicy": {
51739
+ "state": {
51814
51740
  "type": "string",
51815
51741
  "enum": [
51816
- "fallback-to-current",
51817
- "fail"
51742
+ "queued",
51743
+ "delivered",
51744
+ "spawned",
51745
+ "completed",
51746
+ "cancelled",
51747
+ "failed",
51748
+ "rejected"
51818
51749
  ]
51819
51750
  },
51820
- "providerFailurePolicy": {
51821
- "type": "string",
51822
- "enum": [
51823
- "ordered-fallbacks",
51824
- "fail"
51825
- ]
51751
+ "correlationId": {
51752
+ "type": "string"
51826
51753
  },
51827
- "fallbackModels": {
51828
- "type": "array",
51829
- "items": {
51830
- "type": "string"
51754
+ "causationId": {
51755
+ "type": "string"
51756
+ },
51757
+ "body": {
51758
+ "type": "string"
51759
+ },
51760
+ "createdAt": {
51761
+ "type": "number"
51762
+ },
51763
+ "updatedAt": {
51764
+ "type": "number"
51765
+ },
51766
+ "routeId": {
51767
+ "type": "string"
51768
+ },
51769
+ "surfaceKind": {
51770
+ "type": "string"
51771
+ },
51772
+ "surfaceId": {
51773
+ "type": "string"
51774
+ },
51775
+ "externalId": {
51776
+ "type": "string"
51777
+ },
51778
+ "threadId": {
51779
+ "type": "string"
51780
+ },
51781
+ "userId": {
51782
+ "type": "string"
51783
+ },
51784
+ "displayName": {
51785
+ "type": "string"
51786
+ },
51787
+ "activeAgentId": {
51788
+ "type": "string"
51789
+ },
51790
+ "metadata": {
51791
+ "type": "object",
51792
+ "additionalProperties": {
51793
+ "anyOf": [
51794
+ {
51795
+ "type": "string"
51796
+ },
51797
+ {
51798
+ "type": "number"
51799
+ },
51800
+ {
51801
+ "type": "boolean"
51802
+ },
51803
+ {
51804
+ "type": "null"
51805
+ },
51806
+ {
51807
+ "type": "object",
51808
+ "additionalProperties": {
51809
+ "$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.input.properties.metadata.additionalProperties"
51810
+ }
51811
+ },
51812
+ {
51813
+ "type": "array",
51814
+ "items": {
51815
+ "$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.input.properties.metadata.additionalProperties"
51816
+ }
51817
+ }
51818
+ ]
51831
51819
  }
51832
51820
  },
51833
- "helperModel": {
51821
+ "routing": {
51834
51822
  "type": "object",
51835
51823
  "properties": {
51836
51824
  "providerId": {
@@ -51838,112 +51826,151 @@
51838
51826
  },
51839
51827
  "modelId": {
51840
51828
  "type": "string"
51841
- }
51842
- },
51843
- "required": [
51844
- "providerId",
51845
- "modelId"
51846
- ],
51847
- "additionalProperties": false
51848
- },
51849
- "executionIntent": {
51850
- "type": "object",
51851
- "properties": {
51852
- "riskClass": {
51829
+ },
51830
+ "providerSelection": {
51853
51831
  "type": "string",
51854
51832
  "enum": [
51855
- "safe",
51856
- "elevated",
51857
- "dangerous"
51833
+ "inherit-current",
51834
+ "concrete",
51835
+ "synthetic"
51858
51836
  ]
51859
51837
  },
51860
- "requiresApproval": {
51861
- "type": "boolean"
51838
+ "unresolvedModelPolicy": {
51839
+ "type": "string",
51840
+ "enum": [
51841
+ "fallback-to-current",
51842
+ "fail"
51843
+ ]
51862
51844
  },
51863
- "networkPolicy": {
51845
+ "providerFailurePolicy": {
51864
51846
  "type": "string",
51865
51847
  "enum": [
51866
- "inherit",
51867
- "allow",
51868
- "deny",
51869
- "scoped"
51848
+ "ordered-fallbacks",
51849
+ "fail"
51870
51850
  ]
51871
51851
  },
51872
- "filesystemPolicy": {
51852
+ "fallbackModels": {
51853
+ "type": "array",
51854
+ "items": {
51855
+ "type": "string"
51856
+ }
51857
+ },
51858
+ "helperModel": {
51859
+ "type": "object",
51860
+ "properties": {
51861
+ "providerId": {
51862
+ "type": "string"
51863
+ },
51864
+ "modelId": {
51865
+ "type": "string"
51866
+ }
51867
+ },
51868
+ "required": [
51869
+ "providerId",
51870
+ "modelId"
51871
+ ],
51872
+ "additionalProperties": false
51873
+ },
51874
+ "executionIntent": {
51875
+ "type": "object",
51876
+ "properties": {
51877
+ "riskClass": {
51878
+ "type": "string",
51879
+ "enum": [
51880
+ "safe",
51881
+ "elevated",
51882
+ "dangerous"
51883
+ ]
51884
+ },
51885
+ "requiresApproval": {
51886
+ "type": "boolean"
51887
+ },
51888
+ "networkPolicy": {
51889
+ "type": "string",
51890
+ "enum": [
51891
+ "inherit",
51892
+ "allow",
51893
+ "deny",
51894
+ "scoped"
51895
+ ]
51896
+ },
51897
+ "filesystemPolicy": {
51898
+ "type": "string",
51899
+ "enum": [
51900
+ "inherit",
51901
+ "workspace-write",
51902
+ "read-only",
51903
+ "isolated"
51904
+ ]
51905
+ }
51906
+ },
51907
+ "additionalProperties": false
51908
+ },
51909
+ "tools": {
51910
+ "type": "array",
51911
+ "items": {
51912
+ "type": "string"
51913
+ }
51914
+ },
51915
+ "reasoningEffort": {
51873
51916
  "type": "string",
51874
51917
  "enum": [
51875
- "inherit",
51876
- "workspace-write",
51877
- "read-only",
51878
- "isolated"
51918
+ "instant",
51919
+ "low",
51920
+ "medium",
51921
+ "high"
51879
51922
  ]
51880
51923
  }
51881
51924
  },
51882
51925
  "additionalProperties": false
51883
51926
  },
51884
- "tools": {
51885
- "type": "array",
51886
- "items": {
51887
- "type": "string"
51888
- }
51889
- },
51890
- "reasoningEffort": {
51891
- "type": "string",
51892
- "enum": [
51893
- "instant",
51894
- "low",
51895
- "medium",
51896
- "high"
51897
- ]
51927
+ "error": {
51928
+ "type": "string"
51898
51929
  }
51899
51930
  },
51931
+ "required": [
51932
+ "id",
51933
+ "sessionId",
51934
+ "intent",
51935
+ "state",
51936
+ "correlationId",
51937
+ "body",
51938
+ "createdAt",
51939
+ "updatedAt",
51940
+ "metadata"
51941
+ ],
51900
51942
  "additionalProperties": false
51901
51943
  },
51902
- "error": {
51903
- "type": "string"
51944
+ "mode": {
51945
+ "type": "string",
51946
+ "enum": [
51947
+ "spawn",
51948
+ "continued-live",
51949
+ "queued-follow-up",
51950
+ "rejected"
51951
+ ]
51952
+ },
51953
+ "agentId": {
51954
+ "anyOf": [
51955
+ {
51956
+ "type": "string"
51957
+ },
51958
+ {
51959
+ "type": "null"
51960
+ }
51961
+ ]
51904
51962
  }
51905
51963
  },
51906
51964
  "required": [
51907
- "id",
51908
- "sessionId",
51909
- "intent",
51910
- "state",
51911
- "correlationId",
51912
- "body",
51913
- "createdAt",
51914
- "updatedAt",
51915
- "metadata"
51965
+ "session",
51966
+ "message",
51967
+ "input",
51968
+ "mode",
51969
+ "agentId"
51916
51970
  ],
51917
51971
  "additionalProperties": false
51918
- },
51919
- "mode": {
51920
- "type": "string",
51921
- "enum": [
51922
- "spawn",
51923
- "continued-live",
51924
- "queued-follow-up",
51925
- "rejected"
51926
- ]
51927
- },
51928
- "agentId": {
51929
- "anyOf": [
51930
- {
51931
- "type": "string"
51932
- },
51933
- {
51934
- "type": "null"
51935
- }
51936
- ]
51937
51972
  }
51938
- },
51939
- "required": [
51940
- "session",
51941
- "message",
51942
- "input",
51943
- "mode",
51944
- "agentId"
51945
- ],
51946
- "additionalProperties": false
51973
+ ]
51947
51974
  },
51948
51975
  "invokable": true
51949
51976
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-tui",
3
- "version": "0.19.46",
3
+ "version": "0.19.48",
4
4
  "description": "Terminal-native GoodVibes product for coding, operations, automation, knowledge, channels, and daemon-backed control-plane workflows.",
5
5
  "type": "module",
6
6
  "main": "src/main.ts",
@@ -91,7 +91,7 @@
91
91
  "@anthropic-ai/vertex-sdk": "^0.16.0",
92
92
  "@ast-grep/napi": "^0.42.0",
93
93
  "@aws/bedrock-token-generator": "^1.1.0",
94
- "@pellux/goodvibes-sdk": "0.26.0",
94
+ "@pellux/goodvibes-sdk": "0.26.1",
95
95
  "bash-language-server": "^5.6.0",
96
96
  "fuse.js": "^7.1.0",
97
97
  "graphql": "^16.13.2",
package/src/cli/help.ts CHANGED
@@ -1,8 +1,7 @@
1
1
  import { existsSync, readFileSync } from 'node:fs';
2
2
  import { dirname, join } from 'node:path';
3
3
  import { fileURLToPath } from 'node:url';
4
-
5
- const FALLBACK_VERSION = '0.19.24';
4
+ import { VERSION } from '../version.ts';
6
5
 
7
6
  function readJsonVersion(path: string): string | null {
8
7
  try {
@@ -18,7 +17,7 @@ export function getPackageVersion(): string {
18
17
  const here = dirname(fileURLToPath(import.meta.url));
19
18
  return readJsonVersion(join(here, '..', '..', 'package.json'))
20
19
  ?? process.env.npm_package_version
21
- ?? FALLBACK_VERSION;
20
+ ?? VERSION;
22
21
  }
23
22
 
24
23
  export function renderGoodVibesVersion(binary = 'goodvibes'): string {
package/src/version.ts CHANGED
@@ -6,7 +6,7 @@ import { join } from 'node:path';
6
6
  // The prebuild script updates the fallback value before compilation.
7
7
  // Uses import.meta.dir (Bun) to locate package.json relative to this file,
8
8
  // which is correct regardless of the process working directory.
9
- let _version = '0.19.46';
9
+ let _version = '0.19.48';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
12
12
  _version = pkg.version ?? _version;