@pellux/goodvibes-tui 0.19.71 → 0.19.72
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 +5 -0
- package/README.md +1 -1
- package/docs/foundation-artifacts/operator-contract.json +205 -2
- package/package.json +2 -2
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](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.
|
|
6
|
+
"version": "0.33.10"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -20637,7 +20637,7 @@
|
|
|
20637
20637
|
{
|
|
20638
20638
|
"id": "companion.chat.messages.create",
|
|
20639
20639
|
"title": "Send Companion Chat Message",
|
|
20640
|
-
"description": "Post a user message to a companion-chat session. Accepts either `body` or `content` in the payload; `body` wins when both are provided.",
|
|
20640
|
+
"description": "Post a user message to a companion-chat session. Accepts either `body` or `content` in the payload; `body` wins when both are provided. Attachments reference artifacts created through `artifacts.create`.",
|
|
20641
20641
|
"category": "companion",
|
|
20642
20642
|
"source": "builtin",
|
|
20643
20643
|
"access": "authenticated",
|
|
@@ -20661,6 +20661,29 @@
|
|
|
20661
20661
|
"content": {
|
|
20662
20662
|
"type": "string"
|
|
20663
20663
|
},
|
|
20664
|
+
"attachments": {
|
|
20665
|
+
"type": "array",
|
|
20666
|
+
"items": {
|
|
20667
|
+
"type": "object",
|
|
20668
|
+
"properties": {
|
|
20669
|
+
"artifactId": {
|
|
20670
|
+
"type": "string"
|
|
20671
|
+
},
|
|
20672
|
+
"label": {
|
|
20673
|
+
"type": "string"
|
|
20674
|
+
},
|
|
20675
|
+
"metadata": {
|
|
20676
|
+
"type": "object",
|
|
20677
|
+
"properties": {},
|
|
20678
|
+
"additionalProperties": false
|
|
20679
|
+
}
|
|
20680
|
+
},
|
|
20681
|
+
"required": [
|
|
20682
|
+
"artifactId"
|
|
20683
|
+
],
|
|
20684
|
+
"additionalProperties": false
|
|
20685
|
+
}
|
|
20686
|
+
},
|
|
20664
20687
|
"metadata": {
|
|
20665
20688
|
"type": "object",
|
|
20666
20689
|
"properties": {},
|
|
@@ -20740,6 +20763,95 @@
|
|
|
20740
20763
|
"content": {
|
|
20741
20764
|
"type": "string"
|
|
20742
20765
|
},
|
|
20766
|
+
"attachments": {
|
|
20767
|
+
"type": "array",
|
|
20768
|
+
"items": {
|
|
20769
|
+
"type": "object",
|
|
20770
|
+
"properties": {
|
|
20771
|
+
"id": {
|
|
20772
|
+
"type": "string"
|
|
20773
|
+
},
|
|
20774
|
+
"artifactId": {
|
|
20775
|
+
"type": "string"
|
|
20776
|
+
},
|
|
20777
|
+
"kind": {
|
|
20778
|
+
"type": "string"
|
|
20779
|
+
},
|
|
20780
|
+
"mimeType": {
|
|
20781
|
+
"type": "string"
|
|
20782
|
+
},
|
|
20783
|
+
"filename": {
|
|
20784
|
+
"type": "string"
|
|
20785
|
+
},
|
|
20786
|
+
"sizeBytes": {
|
|
20787
|
+
"type": "number"
|
|
20788
|
+
},
|
|
20789
|
+
"sha256": {
|
|
20790
|
+
"type": "string"
|
|
20791
|
+
},
|
|
20792
|
+
"createdAt": {
|
|
20793
|
+
"type": "number"
|
|
20794
|
+
},
|
|
20795
|
+
"expiresAt": {
|
|
20796
|
+
"type": "number"
|
|
20797
|
+
},
|
|
20798
|
+
"sourceUri": {
|
|
20799
|
+
"type": "string"
|
|
20800
|
+
},
|
|
20801
|
+
"acquisitionMode": {
|
|
20802
|
+
"type": "string"
|
|
20803
|
+
},
|
|
20804
|
+
"fetchMode": {
|
|
20805
|
+
"type": "string"
|
|
20806
|
+
},
|
|
20807
|
+
"label": {
|
|
20808
|
+
"type": "string"
|
|
20809
|
+
},
|
|
20810
|
+
"metadata": {
|
|
20811
|
+
"type": "object",
|
|
20812
|
+
"additionalProperties": {
|
|
20813
|
+
"anyOf": [
|
|
20814
|
+
{
|
|
20815
|
+
"type": "string"
|
|
20816
|
+
},
|
|
20817
|
+
{
|
|
20818
|
+
"type": "number"
|
|
20819
|
+
},
|
|
20820
|
+
{
|
|
20821
|
+
"type": "boolean"
|
|
20822
|
+
},
|
|
20823
|
+
{
|
|
20824
|
+
"type": "null"
|
|
20825
|
+
},
|
|
20826
|
+
{
|
|
20827
|
+
"type": "object",
|
|
20828
|
+
"additionalProperties": {
|
|
20829
|
+
"$ref": "$.operator.methods[68].outputSchema.properties.messages.items.properties.attachments.items.properties.metadata.additionalProperties"
|
|
20830
|
+
}
|
|
20831
|
+
},
|
|
20832
|
+
{
|
|
20833
|
+
"type": "array",
|
|
20834
|
+
"items": {
|
|
20835
|
+
"$ref": "$.operator.methods[68].outputSchema.properties.messages.items.properties.attachments.items.properties.metadata.additionalProperties"
|
|
20836
|
+
}
|
|
20837
|
+
}
|
|
20838
|
+
]
|
|
20839
|
+
}
|
|
20840
|
+
}
|
|
20841
|
+
},
|
|
20842
|
+
"required": [
|
|
20843
|
+
"id",
|
|
20844
|
+
"artifactId",
|
|
20845
|
+
"kind",
|
|
20846
|
+
"mimeType",
|
|
20847
|
+
"sizeBytes",
|
|
20848
|
+
"sha256",
|
|
20849
|
+
"createdAt",
|
|
20850
|
+
"metadata"
|
|
20851
|
+
],
|
|
20852
|
+
"additionalProperties": true
|
|
20853
|
+
}
|
|
20854
|
+
},
|
|
20743
20855
|
"createdAt": {
|
|
20744
20856
|
"type": "number"
|
|
20745
20857
|
}
|
|
@@ -20749,6 +20861,7 @@
|
|
|
20749
20861
|
"sessionId",
|
|
20750
20862
|
"role",
|
|
20751
20863
|
"content",
|
|
20864
|
+
"attachments",
|
|
20752
20865
|
"createdAt"
|
|
20753
20866
|
],
|
|
20754
20867
|
"additionalProperties": false
|
|
@@ -21094,6 +21207,95 @@
|
|
|
21094
21207
|
"content": {
|
|
21095
21208
|
"type": "string"
|
|
21096
21209
|
},
|
|
21210
|
+
"attachments": {
|
|
21211
|
+
"type": "array",
|
|
21212
|
+
"items": {
|
|
21213
|
+
"type": "object",
|
|
21214
|
+
"properties": {
|
|
21215
|
+
"id": {
|
|
21216
|
+
"type": "string"
|
|
21217
|
+
},
|
|
21218
|
+
"artifactId": {
|
|
21219
|
+
"type": "string"
|
|
21220
|
+
},
|
|
21221
|
+
"kind": {
|
|
21222
|
+
"type": "string"
|
|
21223
|
+
},
|
|
21224
|
+
"mimeType": {
|
|
21225
|
+
"type": "string"
|
|
21226
|
+
},
|
|
21227
|
+
"filename": {
|
|
21228
|
+
"type": "string"
|
|
21229
|
+
},
|
|
21230
|
+
"sizeBytes": {
|
|
21231
|
+
"type": "number"
|
|
21232
|
+
},
|
|
21233
|
+
"sha256": {
|
|
21234
|
+
"type": "string"
|
|
21235
|
+
},
|
|
21236
|
+
"createdAt": {
|
|
21237
|
+
"type": "number"
|
|
21238
|
+
},
|
|
21239
|
+
"expiresAt": {
|
|
21240
|
+
"type": "number"
|
|
21241
|
+
},
|
|
21242
|
+
"sourceUri": {
|
|
21243
|
+
"type": "string"
|
|
21244
|
+
},
|
|
21245
|
+
"acquisitionMode": {
|
|
21246
|
+
"type": "string"
|
|
21247
|
+
},
|
|
21248
|
+
"fetchMode": {
|
|
21249
|
+
"type": "string"
|
|
21250
|
+
},
|
|
21251
|
+
"label": {
|
|
21252
|
+
"type": "string"
|
|
21253
|
+
},
|
|
21254
|
+
"metadata": {
|
|
21255
|
+
"type": "object",
|
|
21256
|
+
"additionalProperties": {
|
|
21257
|
+
"anyOf": [
|
|
21258
|
+
{
|
|
21259
|
+
"type": "string"
|
|
21260
|
+
},
|
|
21261
|
+
{
|
|
21262
|
+
"type": "number"
|
|
21263
|
+
},
|
|
21264
|
+
{
|
|
21265
|
+
"type": "boolean"
|
|
21266
|
+
},
|
|
21267
|
+
{
|
|
21268
|
+
"type": "null"
|
|
21269
|
+
},
|
|
21270
|
+
{
|
|
21271
|
+
"type": "object",
|
|
21272
|
+
"additionalProperties": {
|
|
21273
|
+
"$ref": "$.operator.methods[71].outputSchema.properties.messages.items.properties.attachments.items.properties.metadata.additionalProperties"
|
|
21274
|
+
}
|
|
21275
|
+
},
|
|
21276
|
+
{
|
|
21277
|
+
"type": "array",
|
|
21278
|
+
"items": {
|
|
21279
|
+
"$ref": "$.operator.methods[71].outputSchema.properties.messages.items.properties.attachments.items.properties.metadata.additionalProperties"
|
|
21280
|
+
}
|
|
21281
|
+
}
|
|
21282
|
+
]
|
|
21283
|
+
}
|
|
21284
|
+
}
|
|
21285
|
+
},
|
|
21286
|
+
"required": [
|
|
21287
|
+
"id",
|
|
21288
|
+
"artifactId",
|
|
21289
|
+
"kind",
|
|
21290
|
+
"mimeType",
|
|
21291
|
+
"sizeBytes",
|
|
21292
|
+
"sha256",
|
|
21293
|
+
"createdAt",
|
|
21294
|
+
"metadata"
|
|
21295
|
+
],
|
|
21296
|
+
"additionalProperties": true
|
|
21297
|
+
}
|
|
21298
|
+
},
|
|
21097
21299
|
"createdAt": {
|
|
21098
21300
|
"type": "number"
|
|
21099
21301
|
}
|
|
@@ -21103,6 +21305,7 @@
|
|
|
21103
21305
|
"sessionId",
|
|
21104
21306
|
"role",
|
|
21105
21307
|
"content",
|
|
21308
|
+
"attachments",
|
|
21106
21309
|
"createdAt"
|
|
21107
21310
|
],
|
|
21108
21311
|
"additionalProperties": false
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-tui",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.72",
|
|
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.
|
|
100
|
+
"@pellux/goodvibes-sdk": "0.33.10",
|
|
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.
|
|
9
|
+
let _version = '0.19.72';
|
|
10
10
|
try {
|
|
11
11
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
|
|
12
12
|
_version = pkg.version ?? _version;
|