@pellux/goodvibes-tui 0.19.68 → 0.19.70

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,17 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.19.70] — 2026-05-07
8
+
9
+ ### Changes
10
+ - e53b2e6f chore: update goodvibes sdk to 0.33.8
11
+ - 655c77a9 chore: update goodvibes sdk to 0.33.7
12
+
13
+ ## [0.19.69] — 2026-05-07
14
+
15
+ ### Changes
16
+ - 4e8c1ec1 chore: update goodvibes sdk to 0.33.5
17
+
7
18
  ## [0.19.68] — 2026-05-06
8
19
 
9
20
  ### Changes
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.68-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.19.70-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.33.4"
6
+ "version": "0.33.8"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -20601,8 +20601,7 @@
20601
20601
  "source": "builtin",
20602
20602
  "access": "authenticated",
20603
20603
  "transport": [
20604
- "http",
20605
- "ws"
20604
+ "http"
20606
20605
  ],
20607
20606
  "scopes": [
20608
20607
  "read:sessions"
@@ -20628,7 +20627,12 @@
20628
20627
  "properties": {},
20629
20628
  "additionalProperties": false
20630
20629
  },
20631
- "invokable": true
20630
+ "invokable": false,
20631
+ "metadata": {
20632
+ "responseKind": "sse",
20633
+ "stream": true,
20634
+ "wireEventPrefix": "companion-chat."
20635
+ }
20632
20636
  },
20633
20637
  {
20634
20638
  "id": "companion.chat.messages.create",
@@ -20719,7 +20723,34 @@
20719
20723
  "type": "array",
20720
20724
  "items": {
20721
20725
  "type": "object",
20722
- "properties": {},
20726
+ "properties": {
20727
+ "id": {
20728
+ "type": "string"
20729
+ },
20730
+ "sessionId": {
20731
+ "type": "string"
20732
+ },
20733
+ "role": {
20734
+ "type": "string",
20735
+ "enum": [
20736
+ "user",
20737
+ "assistant"
20738
+ ]
20739
+ },
20740
+ "content": {
20741
+ "type": "string"
20742
+ },
20743
+ "createdAt": {
20744
+ "type": "number"
20745
+ }
20746
+ },
20747
+ "required": [
20748
+ "id",
20749
+ "sessionId",
20750
+ "role",
20751
+ "content",
20752
+ "createdAt"
20753
+ ],
20723
20754
  "additionalProperties": false
20724
20755
  }
20725
20756
  }
@@ -20876,14 +20907,42 @@
20876
20907
  "kind": {
20877
20908
  "type": "string",
20878
20909
  "enum": [
20879
- "tui",
20880
- "companion-task",
20881
20910
  "companion-chat"
20882
20911
  ]
20883
20912
  },
20884
20913
  "title": {
20885
20914
  "type": "string"
20886
20915
  },
20916
+ "model": {
20917
+ "anyOf": [
20918
+ {
20919
+ "type": "string"
20920
+ },
20921
+ {
20922
+ "type": "null"
20923
+ }
20924
+ ]
20925
+ },
20926
+ "provider": {
20927
+ "anyOf": [
20928
+ {
20929
+ "type": "string"
20930
+ },
20931
+ {
20932
+ "type": "null"
20933
+ }
20934
+ ]
20935
+ },
20936
+ "systemPrompt": {
20937
+ "anyOf": [
20938
+ {
20939
+ "type": "string"
20940
+ },
20941
+ {
20942
+ "type": "null"
20943
+ }
20944
+ ]
20945
+ },
20887
20946
  "status": {
20888
20947
  "type": "string",
20889
20948
  "enum": [
@@ -20897,123 +20956,32 @@
20897
20956
  "updatedAt": {
20898
20957
  "type": "number"
20899
20958
  },
20900
- "lastMessageAt": {
20901
- "type": "number"
20902
- },
20903
20959
  "closedAt": {
20904
- "type": "number"
20905
- },
20906
- "lastActivityAt": {
20907
- "type": "number"
20960
+ "anyOf": [
20961
+ {
20962
+ "type": "number"
20963
+ },
20964
+ {
20965
+ "type": "null"
20966
+ }
20967
+ ]
20908
20968
  },
20909
20969
  "messageCount": {
20910
20970
  "type": "number"
20911
- },
20912
- "pendingInputCount": {
20913
- "type": "number"
20914
- },
20915
- "routeIds": {
20916
- "type": "array",
20917
- "items": {
20918
- "type": "string"
20919
- }
20920
- },
20921
- "surfaceKinds": {
20922
- "type": "array",
20923
- "items": {
20924
- "type": "string"
20925
- }
20926
- },
20927
- "participants": {
20928
- "type": "array",
20929
- "items": {
20930
- "type": "object",
20931
- "properties": {
20932
- "surfaceKind": {
20933
- "type": "string"
20934
- },
20935
- "surfaceId": {
20936
- "type": "string"
20937
- },
20938
- "externalId": {
20939
- "type": "string"
20940
- },
20941
- "userId": {
20942
- "type": "string"
20943
- },
20944
- "displayName": {
20945
- "type": "string"
20946
- },
20947
- "routeId": {
20948
- "type": "string"
20949
- },
20950
- "lastSeenAt": {
20951
- "type": "number"
20952
- }
20953
- },
20954
- "required": [
20955
- "surfaceKind",
20956
- "surfaceId",
20957
- "lastSeenAt"
20958
- ],
20959
- "additionalProperties": false
20960
- }
20961
- },
20962
- "activeAgentId": {
20963
- "type": "string"
20964
- },
20965
- "lastAgentId": {
20966
- "type": "string"
20967
- },
20968
- "lastError": {
20969
- "type": "string"
20970
- },
20971
- "metadata": {
20972
- "type": "object",
20973
- "additionalProperties": {
20974
- "anyOf": [
20975
- {
20976
- "type": "string"
20977
- },
20978
- {
20979
- "type": "number"
20980
- },
20981
- {
20982
- "type": "boolean"
20983
- },
20984
- {
20985
- "type": "null"
20986
- },
20987
- {
20988
- "type": "object",
20989
- "additionalProperties": {
20990
- "$ref": "$.operator.methods[71].outputSchema.properties.session.properties.metadata.additionalProperties"
20991
- }
20992
- },
20993
- {
20994
- "type": "array",
20995
- "items": {
20996
- "$ref": "$.operator.methods[71].outputSchema.properties.session.properties.metadata.additionalProperties"
20997
- }
20998
- }
20999
- ]
21000
- }
21001
20971
  }
21002
20972
  },
21003
20973
  "required": [
21004
20974
  "id",
21005
20975
  "kind",
21006
20976
  "title",
20977
+ "model",
20978
+ "provider",
20979
+ "systemPrompt",
21007
20980
  "status",
21008
20981
  "createdAt",
21009
20982
  "updatedAt",
21010
- "lastActivityAt",
21011
- "messageCount",
21012
- "pendingInputCount",
21013
- "routeIds",
21014
- "surfaceKinds",
21015
- "participants",
21016
- "metadata"
20983
+ "closedAt",
20984
+ "messageCount"
21017
20985
  ],
21018
20986
  "additionalProperties": false
21019
20987
  },
@@ -21021,7 +20989,34 @@
21021
20989
  "type": "array",
21022
20990
  "items": {
21023
20991
  "type": "object",
21024
- "properties": {},
20992
+ "properties": {
20993
+ "id": {
20994
+ "type": "string"
20995
+ },
20996
+ "sessionId": {
20997
+ "type": "string"
20998
+ },
20999
+ "role": {
21000
+ "type": "string",
21001
+ "enum": [
21002
+ "user",
21003
+ "assistant"
21004
+ ]
21005
+ },
21006
+ "content": {
21007
+ "type": "string"
21008
+ },
21009
+ "createdAt": {
21010
+ "type": "number"
21011
+ }
21012
+ },
21013
+ "required": [
21014
+ "id",
21015
+ "sessionId",
21016
+ "role",
21017
+ "content",
21018
+ "createdAt"
21019
+ ],
21025
21020
  "additionalProperties": false
21026
21021
  }
21027
21022
  }
@@ -21082,14 +21077,42 @@
21082
21077
  "kind": {
21083
21078
  "type": "string",
21084
21079
  "enum": [
21085
- "tui",
21086
- "companion-task",
21087
21080
  "companion-chat"
21088
21081
  ]
21089
21082
  },
21090
21083
  "title": {
21091
21084
  "type": "string"
21092
21085
  },
21086
+ "model": {
21087
+ "anyOf": [
21088
+ {
21089
+ "type": "string"
21090
+ },
21091
+ {
21092
+ "type": "null"
21093
+ }
21094
+ ]
21095
+ },
21096
+ "provider": {
21097
+ "anyOf": [
21098
+ {
21099
+ "type": "string"
21100
+ },
21101
+ {
21102
+ "type": "null"
21103
+ }
21104
+ ]
21105
+ },
21106
+ "systemPrompt": {
21107
+ "anyOf": [
21108
+ {
21109
+ "type": "string"
21110
+ },
21111
+ {
21112
+ "type": "null"
21113
+ }
21114
+ ]
21115
+ },
21093
21116
  "status": {
21094
21117
  "type": "string",
21095
21118
  "enum": [
@@ -21103,123 +21126,32 @@
21103
21126
  "updatedAt": {
21104
21127
  "type": "number"
21105
21128
  },
21106
- "lastMessageAt": {
21107
- "type": "number"
21108
- },
21109
21129
  "closedAt": {
21110
- "type": "number"
21111
- },
21112
- "lastActivityAt": {
21113
- "type": "number"
21130
+ "anyOf": [
21131
+ {
21132
+ "type": "number"
21133
+ },
21134
+ {
21135
+ "type": "null"
21136
+ }
21137
+ ]
21114
21138
  },
21115
21139
  "messageCount": {
21116
21140
  "type": "number"
21117
- },
21118
- "pendingInputCount": {
21119
- "type": "number"
21120
- },
21121
- "routeIds": {
21122
- "type": "array",
21123
- "items": {
21124
- "type": "string"
21125
- }
21126
- },
21127
- "surfaceKinds": {
21128
- "type": "array",
21129
- "items": {
21130
- "type": "string"
21131
- }
21132
- },
21133
- "participants": {
21134
- "type": "array",
21135
- "items": {
21136
- "type": "object",
21137
- "properties": {
21138
- "surfaceKind": {
21139
- "type": "string"
21140
- },
21141
- "surfaceId": {
21142
- "type": "string"
21143
- },
21144
- "externalId": {
21145
- "type": "string"
21146
- },
21147
- "userId": {
21148
- "type": "string"
21149
- },
21150
- "displayName": {
21151
- "type": "string"
21152
- },
21153
- "routeId": {
21154
- "type": "string"
21155
- },
21156
- "lastSeenAt": {
21157
- "type": "number"
21158
- }
21159
- },
21160
- "required": [
21161
- "surfaceKind",
21162
- "surfaceId",
21163
- "lastSeenAt"
21164
- ],
21165
- "additionalProperties": false
21166
- }
21167
- },
21168
- "activeAgentId": {
21169
- "type": "string"
21170
- },
21171
- "lastAgentId": {
21172
- "type": "string"
21173
- },
21174
- "lastError": {
21175
- "type": "string"
21176
- },
21177
- "metadata": {
21178
- "type": "object",
21179
- "additionalProperties": {
21180
- "anyOf": [
21181
- {
21182
- "type": "string"
21183
- },
21184
- {
21185
- "type": "number"
21186
- },
21187
- {
21188
- "type": "boolean"
21189
- },
21190
- {
21191
- "type": "null"
21192
- },
21193
- {
21194
- "type": "object",
21195
- "additionalProperties": {
21196
- "$ref": "$.operator.methods[72].outputSchema.properties.session.properties.metadata.additionalProperties"
21197
- }
21198
- },
21199
- {
21200
- "type": "array",
21201
- "items": {
21202
- "$ref": "$.operator.methods[72].outputSchema.properties.session.properties.metadata.additionalProperties"
21203
- }
21204
- }
21205
- ]
21206
- }
21207
21141
  }
21208
21142
  },
21209
21143
  "required": [
21210
21144
  "id",
21211
21145
  "kind",
21212
21146
  "title",
21147
+ "model",
21148
+ "provider",
21149
+ "systemPrompt",
21213
21150
  "status",
21214
21151
  "createdAt",
21215
21152
  "updatedAt",
21216
- "lastActivityAt",
21217
- "messageCount",
21218
- "pendingInputCount",
21219
- "routeIds",
21220
- "surfaceKinds",
21221
- "participants",
21222
- "metadata"
21153
+ "closedAt",
21154
+ "messageCount"
21223
21155
  ],
21224
21156
  "additionalProperties": false
21225
21157
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-tui",
3
- "version": "0.19.68",
3
+ "version": "0.19.70",
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",
@@ -97,7 +97,7 @@
97
97
  "@anthropic-ai/vertex-sdk": "^0.16.0",
98
98
  "@ast-grep/napi": "^0.42.0",
99
99
  "@aws/bedrock-token-generator": "^1.1.0",
100
- "@pellux/goodvibes-sdk": "0.33.4",
100
+ "@pellux/goodvibes-sdk": "0.33.8",
101
101
  "bash-language-server": "^5.6.0",
102
102
  "fuse.js": "^7.1.0",
103
103
  "graphql": "^16.13.2",
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.68';
9
+ let _version = '0.19.70';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
12
12
  _version = pkg.version ?? _version;