@pellux/goodvibes-tui 1.12.0 → 1.13.1
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 +12 -0
- package/README.md +1 -1
- package/docs/foundation-artifacts/operator-contract.json +1225 -870
- package/package.json +2 -2
- package/src/input/commands/context-window.ts +12 -4
- package/src/input/commands/session.ts +46 -1
- package/src/input/commands/shell-core.ts +1 -0
- package/src/input/commands.ts +4 -1
- package/src/main.ts +2 -2
- package/src/panels/fleet-panel.ts +42 -4
- package/src/panels/fleet-read-model.ts +35 -2
- package/src/panels/fleet-stop.ts +12 -0
- package/src/runtime/gateway-verbs.ts +47 -0
- package/src/runtime/process-lifecycle.ts +22 -2
- package/src/runtime/render-scheduler.ts +10 -0
- package/src/runtime/services.ts +9 -8
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [1.13.1] — 2026-07-09
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
- 9dbd88e4 fix(daemon): attach handlers for every ws-only gateway verb — fleet.*, checkpoints.*, sessions.search, push.* were 501 on every vendored daemon build
|
|
11
|
+
|
|
12
|
+
## [1.13.0] — 2026-07-09
|
|
13
|
+
|
|
14
|
+
### Changes
|
|
15
|
+
- c3a54b1b fix: clean terminal restore on exit; feat: /resume session picker
|
|
16
|
+
- f29e97ff chore: pin @pellux/goodvibes-sdk 1.6.1 — compact-and-retry on provider context rejections, learned context ceilings, fleet archive, deliver-once replays
|
|
17
|
+
- d320ca15 feat: fleet archive view + learned context-limit display
|
|
18
|
+
|
|
7
19
|
## [1.12.0] — 2026-07-08
|
|
8
20
|
|
|
9
21
|
### 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
|
|