@pellux/goodvibes-tui 0.19.54 → 0.19.55
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 +9 -0
- package/README.md +1 -1
- package/docs/foundation-artifacts/operator-contract.json +79 -1
- package/package.json +2 -2
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.19.55] — 2026-05-01
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Updated `@pellux/goodvibes-sdk` to `0.28.1`.
|
|
11
|
+
- Documented SDK-owned Home Graph and base knowledge refinement budget behavior: Ask returns current evidence quickly with `refinementTaskIds`, reindex queues repair work instead of blocking, broad refinement runs cap effective work per run, and stale active tasks recover to retriable blocked state.
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Picked up SDK Home Graph refinement fixes for async ask repair, capped broad refinement runs, stale searching/evaluating task recovery, and non-blocking reindex repair queueing.
|
|
15
|
+
|
|
7
16
|
## [0.19.54] — 2026-05-01
|
|
8
17
|
|
|
9
18
|
### Added
|
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.28.
|
|
6
|
+
"version": "0.28.1"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -29438,6 +29438,9 @@
|
|
|
29438
29438
|
"limit": {
|
|
29439
29439
|
"type": "number"
|
|
29440
29440
|
},
|
|
29441
|
+
"maxRunMs": {
|
|
29442
|
+
"type": "number"
|
|
29443
|
+
},
|
|
29441
29444
|
"force": {
|
|
29442
29445
|
"type": "boolean"
|
|
29443
29446
|
}
|
|
@@ -29459,6 +29462,12 @@
|
|
|
29459
29462
|
"scannedGaps": {
|
|
29460
29463
|
"type": "number"
|
|
29461
29464
|
},
|
|
29465
|
+
"candidateGaps": {
|
|
29466
|
+
"type": "number"
|
|
29467
|
+
},
|
|
29468
|
+
"processedGaps": {
|
|
29469
|
+
"type": "number"
|
|
29470
|
+
},
|
|
29462
29471
|
"createdGaps": {
|
|
29463
29472
|
"type": "number"
|
|
29464
29473
|
},
|
|
@@ -29489,6 +29498,18 @@
|
|
|
29489
29498
|
"queuedTasks": {
|
|
29490
29499
|
"type": "number"
|
|
29491
29500
|
},
|
|
29501
|
+
"requestedLimit": {
|
|
29502
|
+
"type": "number"
|
|
29503
|
+
},
|
|
29504
|
+
"effectiveLimit": {
|
|
29505
|
+
"type": "number"
|
|
29506
|
+
},
|
|
29507
|
+
"truncated": {
|
|
29508
|
+
"type": "boolean"
|
|
29509
|
+
},
|
|
29510
|
+
"budgetExhausted": {
|
|
29511
|
+
"type": "boolean"
|
|
29512
|
+
},
|
|
29492
29513
|
"taskIds": {
|
|
29493
29514
|
"type": "array",
|
|
29494
29515
|
"items": {
|
|
@@ -37812,6 +37833,12 @@
|
|
|
37812
37833
|
"scannedGaps": {
|
|
37813
37834
|
"type": "number"
|
|
37814
37835
|
},
|
|
37836
|
+
"candidateGaps": {
|
|
37837
|
+
"type": "number"
|
|
37838
|
+
},
|
|
37839
|
+
"processedGaps": {
|
|
37840
|
+
"type": "number"
|
|
37841
|
+
},
|
|
37815
37842
|
"createdGaps": {
|
|
37816
37843
|
"type": "number"
|
|
37817
37844
|
},
|
|
@@ -37842,6 +37869,18 @@
|
|
|
37842
37869
|
"queuedTasks": {
|
|
37843
37870
|
"type": "number"
|
|
37844
37871
|
},
|
|
37872
|
+
"requestedLimit": {
|
|
37873
|
+
"type": "number"
|
|
37874
|
+
},
|
|
37875
|
+
"effectiveLimit": {
|
|
37876
|
+
"type": "number"
|
|
37877
|
+
},
|
|
37878
|
+
"truncated": {
|
|
37879
|
+
"type": "boolean"
|
|
37880
|
+
},
|
|
37881
|
+
"budgetExhausted": {
|
|
37882
|
+
"type": "boolean"
|
|
37883
|
+
},
|
|
37845
37884
|
"taskIds": {
|
|
37846
37885
|
"type": "array",
|
|
37847
37886
|
"items": {
|
|
@@ -38366,6 +38405,12 @@
|
|
|
38366
38405
|
"scannedGaps": {
|
|
38367
38406
|
"type": "number"
|
|
38368
38407
|
},
|
|
38408
|
+
"candidateGaps": {
|
|
38409
|
+
"type": "number"
|
|
38410
|
+
},
|
|
38411
|
+
"processedGaps": {
|
|
38412
|
+
"type": "number"
|
|
38413
|
+
},
|
|
38369
38414
|
"createdGaps": {
|
|
38370
38415
|
"type": "number"
|
|
38371
38416
|
},
|
|
@@ -38396,6 +38441,18 @@
|
|
|
38396
38441
|
"queuedTasks": {
|
|
38397
38442
|
"type": "number"
|
|
38398
38443
|
},
|
|
38444
|
+
"requestedLimit": {
|
|
38445
|
+
"type": "number"
|
|
38446
|
+
},
|
|
38447
|
+
"effectiveLimit": {
|
|
38448
|
+
"type": "number"
|
|
38449
|
+
},
|
|
38450
|
+
"truncated": {
|
|
38451
|
+
"type": "boolean"
|
|
38452
|
+
},
|
|
38453
|
+
"budgetExhausted": {
|
|
38454
|
+
"type": "boolean"
|
|
38455
|
+
},
|
|
38399
38456
|
"taskIds": {
|
|
38400
38457
|
"type": "array",
|
|
38401
38458
|
"items": {
|
|
@@ -40500,6 +40557,9 @@
|
|
|
40500
40557
|
"limit": {
|
|
40501
40558
|
"type": "number"
|
|
40502
40559
|
},
|
|
40560
|
+
"maxRunMs": {
|
|
40561
|
+
"type": "number"
|
|
40562
|
+
},
|
|
40503
40563
|
"force": {
|
|
40504
40564
|
"type": "boolean"
|
|
40505
40565
|
}
|
|
@@ -40512,6 +40572,12 @@
|
|
|
40512
40572
|
"scannedGaps": {
|
|
40513
40573
|
"type": "number"
|
|
40514
40574
|
},
|
|
40575
|
+
"candidateGaps": {
|
|
40576
|
+
"type": "number"
|
|
40577
|
+
},
|
|
40578
|
+
"processedGaps": {
|
|
40579
|
+
"type": "number"
|
|
40580
|
+
},
|
|
40515
40581
|
"createdGaps": {
|
|
40516
40582
|
"type": "number"
|
|
40517
40583
|
},
|
|
@@ -40542,6 +40608,18 @@
|
|
|
40542
40608
|
"queuedTasks": {
|
|
40543
40609
|
"type": "number"
|
|
40544
40610
|
},
|
|
40611
|
+
"requestedLimit": {
|
|
40612
|
+
"type": "number"
|
|
40613
|
+
},
|
|
40614
|
+
"effectiveLimit": {
|
|
40615
|
+
"type": "number"
|
|
40616
|
+
},
|
|
40617
|
+
"truncated": {
|
|
40618
|
+
"type": "boolean"
|
|
40619
|
+
},
|
|
40620
|
+
"budgetExhausted": {
|
|
40621
|
+
"type": "boolean"
|
|
40622
|
+
},
|
|
40545
40623
|
"taskIds": {
|
|
40546
40624
|
"type": "array",
|
|
40547
40625
|
"items": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-tui",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.55",
|
|
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.28.
|
|
94
|
+
"@pellux/goodvibes-sdk": "0.28.1",
|
|
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.55';
|
|
10
10
|
try {
|
|
11
11
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
|
|
12
12
|
_version = pkg.version ?? _version;
|