@pellux/goodvibes-tui 0.19.84 → 0.19.86
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 +1 -1
- package/docs/foundation-artifacts/operator-contract.json +5009 -290
- package/package.json +2 -2
- package/src/input/command-registry.ts +1 -0
- package/src/input/commands/work-plan-runtime.ts +169 -0
- package/src/input/commands.ts +2 -0
- package/src/main.ts +4 -13
- package/src/panels/builtin/agent.ts +11 -0
- package/src/panels/builtin/shared.ts +8 -0
- package/src/panels/work-plan-panel.ts +175 -0
- package/src/renderer/process-modal.ts +383 -26
- package/src/renderer/process-summary.ts +67 -0
- package/src/runtime/bootstrap-command-context.ts +3 -0
- package/src/runtime/bootstrap-command-parts.ts +3 -1
- package/src/runtime/bootstrap-shell.ts +1 -0
- package/src/runtime/services.ts +8 -0
- package/src/runtime/ui-services.ts +2 -0
- package/src/version.ts +1 -1
- package/src/work-plans/work-plan-store.ts +373 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.19.86] — 2026-05-09
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
- 79d0cb5f chore: update sdk to 0.33.21
|
|
11
|
+
- 03e79135 fix process summary line budget
|
|
12
|
+
- 6fdebda5 fix wrfc process modal hierarchy inference
|
|
13
|
+
- 6d3eb4cf fix process modal agent hierarchy rendering
|
|
14
|
+
|
|
15
|
+
## [0.19.85] — 2026-05-09
|
|
16
|
+
|
|
17
|
+
### Changes
|
|
18
|
+
- 72733e04 feat: add persistent work plan tracking
|
|
19
|
+
|
|
7
20
|
## [0.19.84] — 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
|
|