@pellux/goodvibes-tui 0.19.85 → 0.19.87
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 +13 -0
- package/README.md +3 -3
- package/docs/foundation-artifacts/operator-contract.json +5009 -290
- package/package.json +2 -2
- package/src/main.ts +4 -13
- package/src/renderer/process-modal.ts +383 -26
- package/src/renderer/process-summary.ts +67 -0
- package/src/tools/wrfc-agent-guard.ts +8 -82
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.19.87] — 2026-05-09
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
- e8f6269e fix: defer wrfc topology to sdk 0.33.22
|
|
11
|
+
|
|
12
|
+
## [0.19.86] — 2026-05-09
|
|
13
|
+
|
|
14
|
+
### Changes
|
|
15
|
+
- 79d0cb5f chore: update sdk to 0.33.21
|
|
16
|
+
- 03e79135 fix process summary line budget
|
|
17
|
+
- 6fdebda5 fix wrfc process modal hierarchy inference
|
|
18
|
+
- 6d3eb4cf fix process modal agent hierarchy rendering
|
|
19
|
+
|
|
7
20
|
## [0.19.85] — 2026-05-09
|
|
8
21
|
|
|
9
22
|
### Changes
|
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
|
|
|
@@ -18,7 +18,7 @@ GoodVibes is a Bun program. Install Bun first and make sure `bun` is on `PATH`,
|
|
|
18
18
|
|
|
19
19
|
```sh
|
|
20
20
|
bun add -g @pellux/goodvibes-tui
|
|
21
|
-
bun pm trust -g @pellux/goodvibes-tui core-js tree-sitter-css tree-sitter-javascript tree-sitter-json tree-sitter-python tree-sitter-typescript
|
|
21
|
+
bun pm trust -g @pellux/goodvibes-tui @pellux/goodvibes-sdk core-js tree-sitter-css tree-sitter-javascript tree-sitter-json tree-sitter-python tree-sitter-typescript
|
|
22
22
|
goodvibes
|
|
23
23
|
```
|
|
24
24
|
|
|
@@ -53,7 +53,7 @@ Release distribution:
|
|
|
53
53
|
|
|
54
54
|
- GitHub Releases are the primary distribution path for compiled binaries
|
|
55
55
|
- `bun add -g @pellux/goodvibes-tui` is the recommended global install path; the package is hosted on the npm registry and Bun installs from that registry directly
|
|
56
|
-
- Bun global installs require trusting `@pellux/goodvibes-tui` so the package postinstall can download the matching TUI and daemon binaries; the dependency lifecycle packages currently requiring trust are `core-js`, `tree-sitter-css`, `tree-sitter-javascript`, `tree-sitter-json`, `tree-sitter-python`, and `tree-sitter-typescript`
|
|
56
|
+
- Bun global installs require trusting `@pellux/goodvibes-tui` so the package postinstall can download the matching TUI and daemon binaries; the dependency lifecycle packages currently requiring trust are `@pellux/goodvibes-sdk`, `core-js`, `tree-sitter-css`, `tree-sitter-javascript`, `tree-sitter-json`, `tree-sitter-python`, and `tree-sitter-typescript`
|
|
57
57
|
- `npm install -g @pellux/goodvibes-tui` is supported on Linux, macOS, and WSL when Bun is already installed; the preinstall check verifies Bun, and the install script downloads the matching TUI and daemon binaries for the current platform
|
|
58
58
|
- native Windows is not supported; use WSL on Windows
|
|
59
59
|
|