@pellux/goodvibes-tui 0.19.31 → 0.19.33

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 CHANGED
@@ -4,6 +4,36 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.19.33] — 2026-04-26
8
+
9
+ ### Changed
10
+ - `/config-tts` now opens an interactive TTS configuration modal instead of only printing provider and voice lists.
11
+ - `/config-tts providers` and `/config-tts voices [provider]` open selectable provider/voice pickers in the TUI and persist the selected SDK config keys.
12
+ - `/config-tts llm` opens the model picker for a separate `/tts` response-model override; `/tts` still defaults to the current chat provider/model when no override is configured.
13
+
14
+ ### Fixed
15
+ - `/tts` now honors configured `tts.llmProvider`/`tts.llmModel` for that spoken turn without changing the main chat model or global provider settings.
16
+ - Changing the TTS provider clears the provider-specific voice selection so a stale voice id is not reused against a different provider.
17
+
18
+ ## [0.19.32] — 2026-04-25
19
+
20
+ ### Added
21
+ - Live `/tts <prompt>` command for normal chat turns with additional streaming spoken output. Text still renders normally; only turns submitted through `/tts` are spoken.
22
+ - `/tts stop` cancellation for active playback, queued audio chunks, and pending streaming TTS requests.
23
+ - `/config-tts` and `/tts-config` commands for TTS provider, voice, and optional spoken-turn LLM override settings.
24
+ - Local streaming audio playback through `mpv` or `ffplay`, with non-blocking status errors when no player is available.
25
+ - Documentation for live TTS usage, playback requirements, TTS config keys, and the new `POST /api/voice/tts/stream` daemon route.
26
+
27
+ ### Changed
28
+ - Updated `@pellux/goodvibes-sdk` to `0.25.8` and regenerated foundation operator contract artifacts.
29
+ - Exposed provider auth route posture in CLI provider management output.
30
+ - Updated onboarding wizard navigation with an `Apply & Continue To Next Section` action that saves wizard screen state without applying runtime settings before the final review/apply step.
31
+ - Kept prompt borders visually inactive when keyboard focus moves to the process indicator.
32
+
33
+ ### Fixed
34
+ - Updated daemon/media route seam tests for the SDK streaming voice service contract.
35
+ - Added focused regression coverage for text chunking, player discovery, spoken-turn event correlation, and TTS command behavior.
36
+
7
37
  ## [0.19.31] — 2026-04-25
8
38
 
9
39
  ### Changes
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml/badge.svg)](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
- [![Version](https://img.shields.io/badge/version-0.19.31-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.19.33-blue.svg)](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
 
@@ -988,7 +988,7 @@ These systems are first-class runtime families.
988
988
 
989
989
  - `web-search`: provider-backed search with verbosity control, evidence shaping, optional source fetching, and normalized results across DuckDuckGo, SearXNG, Brave, Exa, Firecrawl, Tavily, and Perplexity
990
990
  - `artifacts`: durable file/object storage for markdown, text, JSON, CSV, spreadsheets, PDFs, images, audio, video, and generated outputs, with metadata, content access, and delivery reuse
991
- - `voice`: provider-backed TTS/STT/realtime negotiation with OpenAI, ElevenLabs, Deepgram, Google, Microsoft, and Vydra
991
+ - `voice`: provider-backed TTS/STT/realtime negotiation with OpenAI, ElevenLabs, Deepgram, Google, Microsoft, and Vydra; the TUI also supports live `/tts` spoken output through streaming TTS providers and local `mpv`/`ffplay` playback
992
992
  - `multimodal`: unified image/audio/video/document analysis with packet building and optional knowledge write-back
993
993
 
994
994
  These surfaces are exposed through the daemon/API as well as the TUI panels and commands, giving future web and companion clients the same backend runtime.
@@ -1268,6 +1268,8 @@ Those pieces cover conversation-noise routing, panel-health/performance budgets,
1268
1268
  | `/refresh-models` | — | Refresh model catalog, benchmarks, and token limits |
1269
1269
  | `/notify [action]` | `/ntf` | Manage webhook notifications (ntfy.sh): add, remove, list, clear, test |
1270
1270
  | `/voice [action]` | — | Review optional voice posture and export/inspect voice bundles |
1271
+ | `/tts <prompt>` | — | Submit a normal prompt and play the assistant response through live TTS |
1272
+ | `/config-tts [action]` | `/tts-config` | Open TTS configuration for provider, voice, and optional `/tts` response-model override |
1271
1273
  | `/diff [target]` | `/d` | Show unified diff: session, head, working, staged, or a git ref |
1272
1274
  | `/mcp [tools]` | — | List connected MCP servers and their tools |
1273
1275
  | `/help [command]` | `/h`, `/?` | Show available commands and keyboard shortcuts |