@pellux/goodvibes-tui 0.19.47 → 0.19.49
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 +24 -0
- package/README.md +1 -1
- package/docs/foundation-artifacts/operator-contract.json +444 -390
- package/package.json +2 -2
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,30 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.19.49] — 2026-04-28
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Updated `@pellux/goodvibes-sdk` to `0.26.4` for SDK-owned multipart/raw artifact uploads across artifact storage, knowledge ingest, and Home Assistant Home Graph ingest.
|
|
11
|
+
- Exposed the SDK `storage.artifacts.maxBytes` setting through the normal storage configuration surface.
|
|
12
|
+
- Regenerated foundation operator contract artifacts from the SDK 0.26.4 contract.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Picked up SDK fixes for large multipart upload cap handling and oversized-upload rejection behavior.
|
|
16
|
+
- Removed the temporary TUI upload-stream normalization shim after SDK 0.26.4 fixed Bun request-reader cleanup failures in raw artifact uploads.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## [0.19.48] — 2026-04-28
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- 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.
|
|
24
|
+
- 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.
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
- Picked up SDK fixes that prevent ordinary shared-session messages from accidentally binding to agent task handling.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
7
31
|
## [0.19.47] — 2026-04-28
|
|
8
32
|
|
|
9
33
|
### Fixed
|
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.26.
|
|
6
|
+
"version": "0.26.4"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -2319,7 +2319,7 @@
|
|
|
2319
2319
|
{
|
|
2320
2320
|
"id": "artifacts.create",
|
|
2321
2321
|
"title": "Create Artifact",
|
|
2322
|
-
"description": "Store a file or attachment artifact for later delivery or
|
|
2322
|
+
"description": "Store a file or attachment artifact for later delivery, analysis, or knowledge ingest. JSON supports small inline bodies and daemon-local path/URI references; HTTP callers can also send multipart/form-data or a raw binary body for large uploads.",
|
|
2323
2323
|
"category": "artifacts",
|
|
2324
2324
|
"source": "builtin",
|
|
2325
2325
|
"access": "authenticated",
|
|
@@ -2486,7 +2486,16 @@
|
|
|
2486
2486
|
],
|
|
2487
2487
|
"additionalProperties": false
|
|
2488
2488
|
},
|
|
2489
|
-
"invokable": true
|
|
2489
|
+
"invokable": true,
|
|
2490
|
+
"metadata": {
|
|
2491
|
+
"uploadModes": [
|
|
2492
|
+
"json-inline",
|
|
2493
|
+
"json-path-or-uri",
|
|
2494
|
+
"multipart-file",
|
|
2495
|
+
"raw-body"
|
|
2496
|
+
],
|
|
2497
|
+
"largeUploadConfigKey": "storage.artifacts.maxBytes"
|
|
2498
|
+
}
|
|
2490
2499
|
},
|
|
2491
2500
|
{
|
|
2492
2501
|
"id": "artifacts.get",
|
|
@@ -26572,7 +26581,7 @@
|
|
|
26572
26581
|
{
|
|
26573
26582
|
"id": "homeassistant.homeGraph.ingestHomeGraphArtifact",
|
|
26574
26583
|
"title": "Ingest Home Graph Artifact",
|
|
26575
|
-
"description": "Index an artifact
|
|
26584
|
+
"description": "Index an existing artifact reference, JSON path/URI reference, multipart file upload, or raw binary upload as a Home Graph document, receipt, warranty, manual, or photo.",
|
|
26576
26585
|
"category": "knowledge",
|
|
26577
26586
|
"source": "builtin",
|
|
26578
26587
|
"access": "admin",
|
|
@@ -27020,7 +27029,16 @@
|
|
|
27020
27029
|
],
|
|
27021
27030
|
"additionalProperties": true
|
|
27022
27031
|
},
|
|
27023
|
-
"invokable": true
|
|
27032
|
+
"invokable": true,
|
|
27033
|
+
"metadata": {
|
|
27034
|
+
"uploadModes": [
|
|
27035
|
+
"json-artifact-reference",
|
|
27036
|
+
"json-path-or-uri",
|
|
27037
|
+
"multipart-file",
|
|
27038
|
+
"raw-body"
|
|
27039
|
+
],
|
|
27040
|
+
"largeUploadConfigKey": "storage.artifacts.maxBytes"
|
|
27041
|
+
}
|
|
27024
27042
|
},
|
|
27025
27043
|
{
|
|
27026
27044
|
"id": "homeassistant.homeGraph.ingestHomeGraphNote",
|
|
@@ -31622,7 +31640,7 @@
|
|
|
31622
31640
|
{
|
|
31623
31641
|
"id": "knowledge.ingest.artifact",
|
|
31624
31642
|
"title": "Ingest Artifact Into Knowledge",
|
|
31625
|
-
"description": "Snapshot
|
|
31643
|
+
"description": "Snapshot an existing artifact, daemon-local path, remote URI, multipart file upload, or raw binary upload into the structured knowledge store and run structured extraction.",
|
|
31626
31644
|
"category": "knowledge",
|
|
31627
31645
|
"source": "builtin",
|
|
31628
31646
|
"access": "admin",
|
|
@@ -31925,7 +31943,16 @@
|
|
|
31925
31943
|
],
|
|
31926
31944
|
"additionalProperties": true
|
|
31927
31945
|
},
|
|
31928
|
-
"invokable": true
|
|
31946
|
+
"invokable": true,
|
|
31947
|
+
"metadata": {
|
|
31948
|
+
"uploadModes": [
|
|
31949
|
+
"json-artifact-reference",
|
|
31950
|
+
"json-path-or-uri",
|
|
31951
|
+
"multipart-file",
|
|
31952
|
+
"raw-body"
|
|
31953
|
+
],
|
|
31954
|
+
"largeUploadConfigKey": "storage.artifacts.maxBytes"
|
|
31955
|
+
}
|
|
31929
31956
|
},
|
|
31930
31957
|
{
|
|
31931
31958
|
"id": "knowledge.ingest.bookmarks",
|
|
@@ -51325,7 +51352,7 @@
|
|
|
51325
51352
|
{
|
|
51326
51353
|
"id": "sessions.messages.create",
|
|
51327
51354
|
"title": "Post Shared Session Message",
|
|
51328
|
-
"description": "Append a user message to a shared session
|
|
51355
|
+
"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
51356
|
"category": "sessions",
|
|
51330
51357
|
"source": "builtin",
|
|
51331
51358
|
"access": "authenticated",
|
|
@@ -51352,6 +51379,9 @@
|
|
|
51352
51379
|
"surfaceId": {
|
|
51353
51380
|
"type": "string"
|
|
51354
51381
|
},
|
|
51382
|
+
"kind": {
|
|
51383
|
+
"type": "string"
|
|
51384
|
+
},
|
|
51355
51385
|
"routing": {
|
|
51356
51386
|
"type": "object",
|
|
51357
51387
|
"properties": {
|
|
@@ -51465,98 +51495,323 @@
|
|
|
51465
51495
|
"additionalProperties": true
|
|
51466
51496
|
},
|
|
51467
51497
|
"outputSchema": {
|
|
51468
|
-
"
|
|
51469
|
-
|
|
51470
|
-
|
|
51471
|
-
"
|
|
51472
|
-
{
|
|
51498
|
+
"anyOf": [
|
|
51499
|
+
{
|
|
51500
|
+
"type": "object",
|
|
51501
|
+
"properties": {
|
|
51502
|
+
"messageId": {
|
|
51503
|
+
"type": "string"
|
|
51504
|
+
},
|
|
51505
|
+
"routedTo": {
|
|
51506
|
+
"type": "string"
|
|
51507
|
+
},
|
|
51508
|
+
"sessionId": {
|
|
51509
|
+
"type": "string"
|
|
51510
|
+
}
|
|
51511
|
+
},
|
|
51512
|
+
"required": [
|
|
51513
|
+
"messageId",
|
|
51514
|
+
"routedTo",
|
|
51515
|
+
"sessionId"
|
|
51516
|
+
],
|
|
51517
|
+
"additionalProperties": false
|
|
51518
|
+
},
|
|
51519
|
+
{
|
|
51520
|
+
"type": "object",
|
|
51521
|
+
"properties": {
|
|
51522
|
+
"session": {
|
|
51523
|
+
"anyOf": [
|
|
51524
|
+
{
|
|
51525
|
+
"type": "object",
|
|
51526
|
+
"properties": {
|
|
51527
|
+
"id": {
|
|
51528
|
+
"type": "string"
|
|
51529
|
+
},
|
|
51530
|
+
"title": {
|
|
51531
|
+
"type": "string"
|
|
51532
|
+
},
|
|
51533
|
+
"status": {
|
|
51534
|
+
"type": "string",
|
|
51535
|
+
"enum": [
|
|
51536
|
+
"active",
|
|
51537
|
+
"closed"
|
|
51538
|
+
]
|
|
51539
|
+
},
|
|
51540
|
+
"createdAt": {
|
|
51541
|
+
"type": "number"
|
|
51542
|
+
},
|
|
51543
|
+
"updatedAt": {
|
|
51544
|
+
"type": "number"
|
|
51545
|
+
},
|
|
51546
|
+
"lastMessageAt": {
|
|
51547
|
+
"type": "number"
|
|
51548
|
+
},
|
|
51549
|
+
"closedAt": {
|
|
51550
|
+
"type": "number"
|
|
51551
|
+
},
|
|
51552
|
+
"messageCount": {
|
|
51553
|
+
"type": "number"
|
|
51554
|
+
},
|
|
51555
|
+
"pendingInputCount": {
|
|
51556
|
+
"type": "number"
|
|
51557
|
+
},
|
|
51558
|
+
"routeIds": {
|
|
51559
|
+
"type": "array",
|
|
51560
|
+
"items": {
|
|
51561
|
+
"type": "string"
|
|
51562
|
+
}
|
|
51563
|
+
},
|
|
51564
|
+
"surfaceKinds": {
|
|
51565
|
+
"type": "array",
|
|
51566
|
+
"items": {
|
|
51567
|
+
"type": "string"
|
|
51568
|
+
}
|
|
51569
|
+
},
|
|
51570
|
+
"participants": {
|
|
51571
|
+
"type": "array",
|
|
51572
|
+
"items": {
|
|
51573
|
+
"type": "object",
|
|
51574
|
+
"properties": {
|
|
51575
|
+
"surfaceKind": {
|
|
51576
|
+
"type": "string"
|
|
51577
|
+
},
|
|
51578
|
+
"surfaceId": {
|
|
51579
|
+
"type": "string"
|
|
51580
|
+
},
|
|
51581
|
+
"externalId": {
|
|
51582
|
+
"type": "string"
|
|
51583
|
+
},
|
|
51584
|
+
"userId": {
|
|
51585
|
+
"type": "string"
|
|
51586
|
+
},
|
|
51587
|
+
"displayName": {
|
|
51588
|
+
"type": "string"
|
|
51589
|
+
},
|
|
51590
|
+
"routeId": {
|
|
51591
|
+
"type": "string"
|
|
51592
|
+
},
|
|
51593
|
+
"lastSeenAt": {
|
|
51594
|
+
"type": "number"
|
|
51595
|
+
}
|
|
51596
|
+
},
|
|
51597
|
+
"required": [
|
|
51598
|
+
"surfaceKind",
|
|
51599
|
+
"surfaceId",
|
|
51600
|
+
"lastSeenAt"
|
|
51601
|
+
],
|
|
51602
|
+
"additionalProperties": false
|
|
51603
|
+
}
|
|
51604
|
+
},
|
|
51605
|
+
"activeAgentId": {
|
|
51606
|
+
"type": "string"
|
|
51607
|
+
},
|
|
51608
|
+
"lastAgentId": {
|
|
51609
|
+
"type": "string"
|
|
51610
|
+
},
|
|
51611
|
+
"lastError": {
|
|
51612
|
+
"type": "string"
|
|
51613
|
+
},
|
|
51614
|
+
"metadata": {
|
|
51615
|
+
"type": "object",
|
|
51616
|
+
"additionalProperties": {
|
|
51617
|
+
"anyOf": [
|
|
51618
|
+
{
|
|
51619
|
+
"type": "string"
|
|
51620
|
+
},
|
|
51621
|
+
{
|
|
51622
|
+
"type": "number"
|
|
51623
|
+
},
|
|
51624
|
+
{
|
|
51625
|
+
"type": "boolean"
|
|
51626
|
+
},
|
|
51627
|
+
{
|
|
51628
|
+
"type": "null"
|
|
51629
|
+
},
|
|
51630
|
+
{
|
|
51631
|
+
"type": "object",
|
|
51632
|
+
"additionalProperties": {
|
|
51633
|
+
"$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
51634
|
+
}
|
|
51635
|
+
},
|
|
51636
|
+
{
|
|
51637
|
+
"type": "array",
|
|
51638
|
+
"items": {
|
|
51639
|
+
"$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
51640
|
+
}
|
|
51641
|
+
}
|
|
51642
|
+
]
|
|
51643
|
+
}
|
|
51644
|
+
}
|
|
51645
|
+
},
|
|
51646
|
+
"required": [
|
|
51647
|
+
"id",
|
|
51648
|
+
"title",
|
|
51649
|
+
"status",
|
|
51650
|
+
"createdAt",
|
|
51651
|
+
"updatedAt",
|
|
51652
|
+
"messageCount",
|
|
51653
|
+
"pendingInputCount",
|
|
51654
|
+
"routeIds",
|
|
51655
|
+
"surfaceKinds",
|
|
51656
|
+
"participants",
|
|
51657
|
+
"metadata"
|
|
51658
|
+
],
|
|
51659
|
+
"additionalProperties": false
|
|
51660
|
+
},
|
|
51661
|
+
{
|
|
51662
|
+
"type": "null"
|
|
51663
|
+
}
|
|
51664
|
+
]
|
|
51665
|
+
},
|
|
51666
|
+
"message": {
|
|
51473
51667
|
"type": "object",
|
|
51474
51668
|
"properties": {
|
|
51475
51669
|
"id": {
|
|
51476
51670
|
"type": "string"
|
|
51477
51671
|
},
|
|
51478
|
-
"
|
|
51672
|
+
"sessionId": {
|
|
51479
51673
|
"type": "string"
|
|
51480
51674
|
},
|
|
51481
|
-
"
|
|
51675
|
+
"role": {
|
|
51482
51676
|
"type": "string",
|
|
51483
51677
|
"enum": [
|
|
51484
|
-
"
|
|
51485
|
-
"
|
|
51678
|
+
"user",
|
|
51679
|
+
"assistant",
|
|
51680
|
+
"system"
|
|
51486
51681
|
]
|
|
51487
51682
|
},
|
|
51488
|
-
"
|
|
51489
|
-
"type": "
|
|
51683
|
+
"body": {
|
|
51684
|
+
"type": "string"
|
|
51490
51685
|
},
|
|
51491
|
-
"
|
|
51686
|
+
"createdAt": {
|
|
51492
51687
|
"type": "number"
|
|
51493
51688
|
},
|
|
51494
|
-
"
|
|
51495
|
-
"type": "
|
|
51689
|
+
"surfaceKind": {
|
|
51690
|
+
"type": "string"
|
|
51496
51691
|
},
|
|
51497
|
-
"
|
|
51498
|
-
"type": "
|
|
51692
|
+
"surfaceId": {
|
|
51693
|
+
"type": "string"
|
|
51499
51694
|
},
|
|
51500
|
-
"
|
|
51501
|
-
"type": "
|
|
51695
|
+
"routeId": {
|
|
51696
|
+
"type": "string"
|
|
51502
51697
|
},
|
|
51503
|
-
"
|
|
51504
|
-
"type": "
|
|
51698
|
+
"agentId": {
|
|
51699
|
+
"type": "string"
|
|
51505
51700
|
},
|
|
51506
|
-
"
|
|
51507
|
-
"type": "
|
|
51508
|
-
"items": {
|
|
51509
|
-
"type": "string"
|
|
51510
|
-
}
|
|
51701
|
+
"userId": {
|
|
51702
|
+
"type": "string"
|
|
51511
51703
|
},
|
|
51512
|
-
"
|
|
51513
|
-
"type": "
|
|
51514
|
-
"items": {
|
|
51515
|
-
"type": "string"
|
|
51516
|
-
}
|
|
51704
|
+
"displayName": {
|
|
51705
|
+
"type": "string"
|
|
51517
51706
|
},
|
|
51518
|
-
"
|
|
51519
|
-
"type": "
|
|
51520
|
-
"
|
|
51521
|
-
"
|
|
51522
|
-
|
|
51523
|
-
"surfaceKind": {
|
|
51524
|
-
"type": "string"
|
|
51525
|
-
},
|
|
51526
|
-
"surfaceId": {
|
|
51707
|
+
"metadata": {
|
|
51708
|
+
"type": "object",
|
|
51709
|
+
"additionalProperties": {
|
|
51710
|
+
"anyOf": [
|
|
51711
|
+
{
|
|
51527
51712
|
"type": "string"
|
|
51528
51713
|
},
|
|
51529
|
-
|
|
51530
|
-
"type": "
|
|
51714
|
+
{
|
|
51715
|
+
"type": "number"
|
|
51531
51716
|
},
|
|
51532
|
-
|
|
51533
|
-
"type": "
|
|
51717
|
+
{
|
|
51718
|
+
"type": "boolean"
|
|
51534
51719
|
},
|
|
51535
|
-
|
|
51536
|
-
"type": "
|
|
51720
|
+
{
|
|
51721
|
+
"type": "null"
|
|
51537
51722
|
},
|
|
51538
|
-
|
|
51539
|
-
"type": "
|
|
51723
|
+
{
|
|
51724
|
+
"type": "object",
|
|
51725
|
+
"additionalProperties": {
|
|
51726
|
+
"$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.message.properties.metadata.additionalProperties"
|
|
51727
|
+
}
|
|
51540
51728
|
},
|
|
51541
|
-
|
|
51542
|
-
"type": "
|
|
51729
|
+
{
|
|
51730
|
+
"type": "array",
|
|
51731
|
+
"items": {
|
|
51732
|
+
"$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.message.properties.metadata.additionalProperties"
|
|
51733
|
+
}
|
|
51543
51734
|
}
|
|
51544
|
-
|
|
51545
|
-
"required": [
|
|
51546
|
-
"surfaceKind",
|
|
51547
|
-
"surfaceId",
|
|
51548
|
-
"lastSeenAt"
|
|
51549
|
-
],
|
|
51550
|
-
"additionalProperties": false
|
|
51735
|
+
]
|
|
51551
51736
|
}
|
|
51737
|
+
}
|
|
51738
|
+
},
|
|
51739
|
+
"required": [
|
|
51740
|
+
"id",
|
|
51741
|
+
"sessionId",
|
|
51742
|
+
"role",
|
|
51743
|
+
"body",
|
|
51744
|
+
"createdAt",
|
|
51745
|
+
"metadata"
|
|
51746
|
+
],
|
|
51747
|
+
"additionalProperties": false
|
|
51748
|
+
},
|
|
51749
|
+
"input": {
|
|
51750
|
+
"type": "object",
|
|
51751
|
+
"properties": {
|
|
51752
|
+
"id": {
|
|
51753
|
+
"type": "string"
|
|
51552
51754
|
},
|
|
51553
|
-
"
|
|
51755
|
+
"sessionId": {
|
|
51554
51756
|
"type": "string"
|
|
51555
51757
|
},
|
|
51556
|
-
"
|
|
51758
|
+
"intent": {
|
|
51759
|
+
"type": "string",
|
|
51760
|
+
"enum": [
|
|
51761
|
+
"submit",
|
|
51762
|
+
"steer",
|
|
51763
|
+
"follow-up"
|
|
51764
|
+
]
|
|
51765
|
+
},
|
|
51766
|
+
"state": {
|
|
51767
|
+
"type": "string",
|
|
51768
|
+
"enum": [
|
|
51769
|
+
"queued",
|
|
51770
|
+
"delivered",
|
|
51771
|
+
"spawned",
|
|
51772
|
+
"completed",
|
|
51773
|
+
"cancelled",
|
|
51774
|
+
"failed",
|
|
51775
|
+
"rejected"
|
|
51776
|
+
]
|
|
51777
|
+
},
|
|
51778
|
+
"correlationId": {
|
|
51557
51779
|
"type": "string"
|
|
51558
51780
|
},
|
|
51559
|
-
"
|
|
51781
|
+
"causationId": {
|
|
51782
|
+
"type": "string"
|
|
51783
|
+
},
|
|
51784
|
+
"body": {
|
|
51785
|
+
"type": "string"
|
|
51786
|
+
},
|
|
51787
|
+
"createdAt": {
|
|
51788
|
+
"type": "number"
|
|
51789
|
+
},
|
|
51790
|
+
"updatedAt": {
|
|
51791
|
+
"type": "number"
|
|
51792
|
+
},
|
|
51793
|
+
"routeId": {
|
|
51794
|
+
"type": "string"
|
|
51795
|
+
},
|
|
51796
|
+
"surfaceKind": {
|
|
51797
|
+
"type": "string"
|
|
51798
|
+
},
|
|
51799
|
+
"surfaceId": {
|
|
51800
|
+
"type": "string"
|
|
51801
|
+
},
|
|
51802
|
+
"externalId": {
|
|
51803
|
+
"type": "string"
|
|
51804
|
+
},
|
|
51805
|
+
"threadId": {
|
|
51806
|
+
"type": "string"
|
|
51807
|
+
},
|
|
51808
|
+
"userId": {
|
|
51809
|
+
"type": "string"
|
|
51810
|
+
},
|
|
51811
|
+
"displayName": {
|
|
51812
|
+
"type": "string"
|
|
51813
|
+
},
|
|
51814
|
+
"activeAgentId": {
|
|
51560
51815
|
"type": "string"
|
|
51561
51816
|
},
|
|
51562
51817
|
"metadata": {
|
|
@@ -51578,259 +51833,19 @@
|
|
|
51578
51833
|
{
|
|
51579
51834
|
"type": "object",
|
|
51580
51835
|
"additionalProperties": {
|
|
51581
|
-
"$ref": "$.operator.methods[204].outputSchema.
|
|
51836
|
+
"$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.input.properties.metadata.additionalProperties"
|
|
51582
51837
|
}
|
|
51583
51838
|
},
|
|
51584
51839
|
{
|
|
51585
51840
|
"type": "array",
|
|
51586
51841
|
"items": {
|
|
51587
|
-
"$ref": "$.operator.methods[204].outputSchema.
|
|
51842
|
+
"$ref": "$.operator.methods[204].outputSchema.anyOf[1].properties.input.properties.metadata.additionalProperties"
|
|
51588
51843
|
}
|
|
51589
51844
|
}
|
|
51590
51845
|
]
|
|
51591
51846
|
}
|
|
51592
|
-
}
|
|
51593
|
-
},
|
|
51594
|
-
"required": [
|
|
51595
|
-
"id",
|
|
51596
|
-
"title",
|
|
51597
|
-
"status",
|
|
51598
|
-
"createdAt",
|
|
51599
|
-
"updatedAt",
|
|
51600
|
-
"messageCount",
|
|
51601
|
-
"pendingInputCount",
|
|
51602
|
-
"routeIds",
|
|
51603
|
-
"surfaceKinds",
|
|
51604
|
-
"participants",
|
|
51605
|
-
"metadata"
|
|
51606
|
-
],
|
|
51607
|
-
"additionalProperties": false
|
|
51608
|
-
},
|
|
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": {
|
|
51797
|
-
"type": "object",
|
|
51798
|
-
"properties": {
|
|
51799
|
-
"providerId": {
|
|
51800
|
-
"type": "string"
|
|
51801
|
-
},
|
|
51802
|
-
"modelId": {
|
|
51803
|
-
"type": "string"
|
|
51804
|
-
},
|
|
51805
|
-
"providerSelection": {
|
|
51806
|
-
"type": "string",
|
|
51807
|
-
"enum": [
|
|
51808
|
-
"inherit-current",
|
|
51809
|
-
"concrete",
|
|
51810
|
-
"synthetic"
|
|
51811
|
-
]
|
|
51812
51847
|
},
|
|
51813
|
-
"
|
|
51814
|
-
"type": "string",
|
|
51815
|
-
"enum": [
|
|
51816
|
-
"fallback-to-current",
|
|
51817
|
-
"fail"
|
|
51818
|
-
]
|
|
51819
|
-
},
|
|
51820
|
-
"providerFailurePolicy": {
|
|
51821
|
-
"type": "string",
|
|
51822
|
-
"enum": [
|
|
51823
|
-
"ordered-fallbacks",
|
|
51824
|
-
"fail"
|
|
51825
|
-
]
|
|
51826
|
-
},
|
|
51827
|
-
"fallbackModels": {
|
|
51828
|
-
"type": "array",
|
|
51829
|
-
"items": {
|
|
51830
|
-
"type": "string"
|
|
51831
|
-
}
|
|
51832
|
-
},
|
|
51833
|
-
"helperModel": {
|
|
51848
|
+
"routing": {
|
|
51834
51849
|
"type": "object",
|
|
51835
51850
|
"properties": {
|
|
51836
51851
|
"providerId": {
|
|
@@ -51838,112 +51853,151 @@
|
|
|
51838
51853
|
},
|
|
51839
51854
|
"modelId": {
|
|
51840
51855
|
"type": "string"
|
|
51841
|
-
}
|
|
51842
|
-
|
|
51843
|
-
"required": [
|
|
51844
|
-
"providerId",
|
|
51845
|
-
"modelId"
|
|
51846
|
-
],
|
|
51847
|
-
"additionalProperties": false
|
|
51848
|
-
},
|
|
51849
|
-
"executionIntent": {
|
|
51850
|
-
"type": "object",
|
|
51851
|
-
"properties": {
|
|
51852
|
-
"riskClass": {
|
|
51856
|
+
},
|
|
51857
|
+
"providerSelection": {
|
|
51853
51858
|
"type": "string",
|
|
51854
51859
|
"enum": [
|
|
51855
|
-
"
|
|
51856
|
-
"
|
|
51857
|
-
"
|
|
51860
|
+
"inherit-current",
|
|
51861
|
+
"concrete",
|
|
51862
|
+
"synthetic"
|
|
51858
51863
|
]
|
|
51859
51864
|
},
|
|
51860
|
-
"
|
|
51861
|
-
"type": "
|
|
51865
|
+
"unresolvedModelPolicy": {
|
|
51866
|
+
"type": "string",
|
|
51867
|
+
"enum": [
|
|
51868
|
+
"fallback-to-current",
|
|
51869
|
+
"fail"
|
|
51870
|
+
]
|
|
51862
51871
|
},
|
|
51863
|
-
"
|
|
51872
|
+
"providerFailurePolicy": {
|
|
51864
51873
|
"type": "string",
|
|
51865
51874
|
"enum": [
|
|
51866
|
-
"
|
|
51867
|
-
"
|
|
51868
|
-
"deny",
|
|
51869
|
-
"scoped"
|
|
51875
|
+
"ordered-fallbacks",
|
|
51876
|
+
"fail"
|
|
51870
51877
|
]
|
|
51871
51878
|
},
|
|
51872
|
-
"
|
|
51879
|
+
"fallbackModels": {
|
|
51880
|
+
"type": "array",
|
|
51881
|
+
"items": {
|
|
51882
|
+
"type": "string"
|
|
51883
|
+
}
|
|
51884
|
+
},
|
|
51885
|
+
"helperModel": {
|
|
51886
|
+
"type": "object",
|
|
51887
|
+
"properties": {
|
|
51888
|
+
"providerId": {
|
|
51889
|
+
"type": "string"
|
|
51890
|
+
},
|
|
51891
|
+
"modelId": {
|
|
51892
|
+
"type": "string"
|
|
51893
|
+
}
|
|
51894
|
+
},
|
|
51895
|
+
"required": [
|
|
51896
|
+
"providerId",
|
|
51897
|
+
"modelId"
|
|
51898
|
+
],
|
|
51899
|
+
"additionalProperties": false
|
|
51900
|
+
},
|
|
51901
|
+
"executionIntent": {
|
|
51902
|
+
"type": "object",
|
|
51903
|
+
"properties": {
|
|
51904
|
+
"riskClass": {
|
|
51905
|
+
"type": "string",
|
|
51906
|
+
"enum": [
|
|
51907
|
+
"safe",
|
|
51908
|
+
"elevated",
|
|
51909
|
+
"dangerous"
|
|
51910
|
+
]
|
|
51911
|
+
},
|
|
51912
|
+
"requiresApproval": {
|
|
51913
|
+
"type": "boolean"
|
|
51914
|
+
},
|
|
51915
|
+
"networkPolicy": {
|
|
51916
|
+
"type": "string",
|
|
51917
|
+
"enum": [
|
|
51918
|
+
"inherit",
|
|
51919
|
+
"allow",
|
|
51920
|
+
"deny",
|
|
51921
|
+
"scoped"
|
|
51922
|
+
]
|
|
51923
|
+
},
|
|
51924
|
+
"filesystemPolicy": {
|
|
51925
|
+
"type": "string",
|
|
51926
|
+
"enum": [
|
|
51927
|
+
"inherit",
|
|
51928
|
+
"workspace-write",
|
|
51929
|
+
"read-only",
|
|
51930
|
+
"isolated"
|
|
51931
|
+
]
|
|
51932
|
+
}
|
|
51933
|
+
},
|
|
51934
|
+
"additionalProperties": false
|
|
51935
|
+
},
|
|
51936
|
+
"tools": {
|
|
51937
|
+
"type": "array",
|
|
51938
|
+
"items": {
|
|
51939
|
+
"type": "string"
|
|
51940
|
+
}
|
|
51941
|
+
},
|
|
51942
|
+
"reasoningEffort": {
|
|
51873
51943
|
"type": "string",
|
|
51874
51944
|
"enum": [
|
|
51875
|
-
"
|
|
51876
|
-
"
|
|
51877
|
-
"
|
|
51878
|
-
"
|
|
51945
|
+
"instant",
|
|
51946
|
+
"low",
|
|
51947
|
+
"medium",
|
|
51948
|
+
"high"
|
|
51879
51949
|
]
|
|
51880
51950
|
}
|
|
51881
51951
|
},
|
|
51882
51952
|
"additionalProperties": false
|
|
51883
51953
|
},
|
|
51884
|
-
"
|
|
51885
|
-
"type": "
|
|
51886
|
-
"items": {
|
|
51887
|
-
"type": "string"
|
|
51888
|
-
}
|
|
51889
|
-
},
|
|
51890
|
-
"reasoningEffort": {
|
|
51891
|
-
"type": "string",
|
|
51892
|
-
"enum": [
|
|
51893
|
-
"instant",
|
|
51894
|
-
"low",
|
|
51895
|
-
"medium",
|
|
51896
|
-
"high"
|
|
51897
|
-
]
|
|
51954
|
+
"error": {
|
|
51955
|
+
"type": "string"
|
|
51898
51956
|
}
|
|
51899
51957
|
},
|
|
51958
|
+
"required": [
|
|
51959
|
+
"id",
|
|
51960
|
+
"sessionId",
|
|
51961
|
+
"intent",
|
|
51962
|
+
"state",
|
|
51963
|
+
"correlationId",
|
|
51964
|
+
"body",
|
|
51965
|
+
"createdAt",
|
|
51966
|
+
"updatedAt",
|
|
51967
|
+
"metadata"
|
|
51968
|
+
],
|
|
51900
51969
|
"additionalProperties": false
|
|
51901
51970
|
},
|
|
51902
|
-
"
|
|
51903
|
-
"type": "string"
|
|
51971
|
+
"mode": {
|
|
51972
|
+
"type": "string",
|
|
51973
|
+
"enum": [
|
|
51974
|
+
"spawn",
|
|
51975
|
+
"continued-live",
|
|
51976
|
+
"queued-follow-up",
|
|
51977
|
+
"rejected"
|
|
51978
|
+
]
|
|
51979
|
+
},
|
|
51980
|
+
"agentId": {
|
|
51981
|
+
"anyOf": [
|
|
51982
|
+
{
|
|
51983
|
+
"type": "string"
|
|
51984
|
+
},
|
|
51985
|
+
{
|
|
51986
|
+
"type": "null"
|
|
51987
|
+
}
|
|
51988
|
+
]
|
|
51904
51989
|
}
|
|
51905
51990
|
},
|
|
51906
51991
|
"required": [
|
|
51907
|
-
"
|
|
51908
|
-
"
|
|
51909
|
-
"
|
|
51910
|
-
"
|
|
51911
|
-
"
|
|
51912
|
-
"body",
|
|
51913
|
-
"createdAt",
|
|
51914
|
-
"updatedAt",
|
|
51915
|
-
"metadata"
|
|
51992
|
+
"session",
|
|
51993
|
+
"message",
|
|
51994
|
+
"input",
|
|
51995
|
+
"mode",
|
|
51996
|
+
"agentId"
|
|
51916
51997
|
],
|
|
51917
51998
|
"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
51999
|
}
|
|
51938
|
-
|
|
51939
|
-
"required": [
|
|
51940
|
-
"session",
|
|
51941
|
-
"message",
|
|
51942
|
-
"input",
|
|
51943
|
-
"mode",
|
|
51944
|
-
"agentId"
|
|
51945
|
-
],
|
|
51946
|
-
"additionalProperties": false
|
|
52000
|
+
]
|
|
51947
52001
|
},
|
|
51948
52002
|
"invokable": true
|
|
51949
52003
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-tui",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.49",
|
|
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.
|
|
94
|
+
"@pellux/goodvibes-sdk": "0.26.4",
|
|
95
95
|
"bash-language-server": "^5.6.0",
|
|
96
96
|
"fuse.js": "^7.1.0",
|
|
97
97
|
"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.49';
|
|
10
10
|
try {
|
|
11
11
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
|
|
12
12
|
_version = pkg.version ?? _version;
|