@pellux/goodvibes-tui 1.10.0 → 1.11.0
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 +11 -0
- package/README.md +2 -2
- package/docs/foundation-artifacts/operator-contract.json +1105 -930
- package/package.json +2 -2
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [1.11.0] — 2026-07-07
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
- b4a2155d chore: pin @pellux/goodvibes-sdk 1.4.0 — the daemon gains server-side turn control
|
|
11
|
+
|
|
12
|
+
## [1.10.1] - 2026-07-07
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- README no longer states a stale hardcoded SDK version; it refers to the latest SDK.
|
|
17
|
+
|
|
7
18
|
## [1.10.0] — 2026-07-06
|
|
8
19
|
|
|
9
20
|
Adopts `@pellux/goodvibes-sdk` 1.3.0. The through-line is the shared engines the SDK now owns: the terminal no longer keeps its own copy of the text-to-speech pipeline or its own path to the memory store — it consumes the one the SDK ships, so the terminal, the desktop app, and the agent all speak the same way, resolve the same voice, and reach memory the same way. Ships against `@pellux/goodvibes-sdk` 1.3.0.
|
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
|
|
|
@@ -125,7 +125,7 @@ The interface is rendered directly to the alternate screen buffer with raw ANSI
|
|
|
125
125
|
|
|
126
126
|
The runtime is organized around typed store domains, typed runtime events, a shared control plane for permissions and orchestration, and product surfaces for reviewing and repairing state. Agents run in-process with isolated histories, scoped tools, and optional worktrees. Operational state such as provider routing, local auth, daemon/gateway posture, channels, search, artifacts, structured knowledge, multimodal analysis, remote sessions, settings control-plane state, and task execution is routed into dedicated panels and APIs.
|
|
127
127
|
|
|
128
|
-
The TUI
|
|
128
|
+
The TUI consumes the published `@pellux/goodvibes-sdk` platform layer (the exact pinned version lives in `package.json`) for shared contracts, daemon route surfaces, transports, remote runtime contracts, and other reusable runtime code. The repo keeps the terminal UI, host wiring, and product-specific composition while future surfaces consume the same SDK-backed runtime foundation.
|
|
129
129
|
|
|
130
130
|
---
|
|
131
131
|
|