@pellux/goodvibes-tui 0.19.30 → 0.19.32
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 +24 -0
- package/README.md +12 -3
- package/docs/foundation-artifacts/operator-contract.json +778 -494
- package/package.json +2 -2
- package/src/audio/player.ts +156 -0
- package/src/audio/spoken-turn-controller.ts +200 -0
- package/src/audio/spoken-turn-wiring.ts +44 -0
- package/src/audio/text-chunker.ts +110 -0
- package/src/cli/management.ts +26 -3
- package/src/cli/provider-auth-routes.ts +22 -0
- package/src/input/command-registry.ts +5 -0
- package/src/input/commands/services-runtime.ts +1 -0
- package/src/input/commands/tts-runtime.ts +136 -0
- package/src/input/commands.ts +2 -0
- package/src/input/handler-onboarding.ts +12 -0
- package/src/input/onboarding/onboarding-wizard-steps.ts +25 -2
- package/src/input/onboarding/onboarding-wizard-types.ts +2 -0
- package/src/main.ts +19 -29
- package/src/panels/services-panel.ts +2 -0
- package/src/renderer/onboarding/onboarding-wizard.ts +38 -14
- package/src/renderer/ui-factory.ts +1 -1
- package/src/runtime/bootstrap-command-context.ts +6 -1
- package/src/runtime/bootstrap-command-parts.ts +6 -1
- package/src/runtime/bootstrap-shell.ts +2 -0
- package/src/runtime/onboarding/derivation.ts +1 -1
- package/src/runtime/onboarding/snapshot.ts +2 -0
- package/src/runtime/onboarding/types.ts +1 -0
- package/src/runtime/services.ts +1 -0
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,30 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.19.32] — 2026-04-25
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Live `/tts <prompt>` command for normal chat turns with additional streaming spoken output. Text still renders normally; only turns submitted through `/tts` are spoken.
|
|
11
|
+
- `/tts stop` cancellation for active playback, queued audio chunks, and pending streaming TTS requests.
|
|
12
|
+
- `/config-tts` and `/tts-config` commands for TTS provider, voice, and optional spoken-turn LLM override settings.
|
|
13
|
+
- Local streaming audio playback through `mpv` or `ffplay`, with non-blocking status errors when no player is available.
|
|
14
|
+
- Documentation for live TTS usage, playback requirements, TTS config keys, and the new `POST /api/voice/tts/stream` daemon route.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- Updated `@pellux/goodvibes-sdk` to `0.25.8` and regenerated foundation operator contract artifacts.
|
|
18
|
+
- Exposed provider auth route posture in CLI provider management output.
|
|
19
|
+
- 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.
|
|
20
|
+
- Kept prompt borders visually inactive when keyboard focus moves to the process indicator.
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- Updated daemon/media route seam tests for the SDK streaming voice service contract.
|
|
24
|
+
- Added focused regression coverage for text chunking, player discovery, spoken-turn event correlation, and TTS command behavior.
|
|
25
|
+
|
|
26
|
+
## [0.19.31] — 2026-04-25
|
|
27
|
+
|
|
28
|
+
### Changes
|
|
29
|
+
- 2508d632 chore: wire sdk service secret updates
|
|
30
|
+
|
|
7
31
|
## [0.19.30] — 2026-04-25
|
|
8
32
|
|
|
9
33
|
### 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
|
|
|
@@ -836,7 +836,7 @@ Key commands:
|
|
|
836
836
|
- `/profilesync`
|
|
837
837
|
- `/setup transfer export|inspect|import`
|
|
838
838
|
|
|
839
|
-
Service entries can use existing `tokenKey` fields, a SecretRef in the key field, or explicit `tokenRef` / `passwordRef` / `webhookUrlRef` / `signingSecretRef` / `publicKeyRef` fields:
|
|
839
|
+
Service entries can use existing `tokenKey` fields, a SecretRef in the key field, or explicit `tokenRef` / `passwordRef` / `webhookUrlRef` / `signingSecretRef` / `publicKeyRef` / `appTokenRef` fields:
|
|
840
840
|
|
|
841
841
|
```json
|
|
842
842
|
{
|
|
@@ -844,11 +844,18 @@ Service entries can use existing `tokenKey` fields, a SecretRef in the key field
|
|
|
844
844
|
"name": "slack",
|
|
845
845
|
"authType": "bearer",
|
|
846
846
|
"tokenKey": "SLACK_BOT_TOKEN",
|
|
847
|
+
"appTokenKey": "SLACK_APP_TOKEN",
|
|
847
848
|
"tokenRef": {
|
|
848
849
|
"source": "vaultwarden",
|
|
849
850
|
"item": "GoodVibes Slack",
|
|
850
851
|
"field": "password",
|
|
851
852
|
"server": "https://vault.example.test"
|
|
853
|
+
},
|
|
854
|
+
"appTokenRef": {
|
|
855
|
+
"source": "vaultwarden",
|
|
856
|
+
"item": "GoodVibes Slack App",
|
|
857
|
+
"field": "password",
|
|
858
|
+
"server": "https://vault.example.test"
|
|
852
859
|
}
|
|
853
860
|
}
|
|
854
861
|
}
|
|
@@ -981,7 +988,7 @@ These systems are first-class runtime families.
|
|
|
981
988
|
|
|
982
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
|
|
983
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
|
|
984
|
-
- `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
|
|
985
992
|
- `multimodal`: unified image/audio/video/document analysis with packet building and optional knowledge write-back
|
|
986
993
|
|
|
987
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.
|
|
@@ -1261,6 +1268,8 @@ Those pieces cover conversation-noise routing, panel-health/performance budgets,
|
|
|
1261
1268
|
| `/refresh-models` | — | Refresh model catalog, benchmarks, and token limits |
|
|
1262
1269
|
| `/notify [action]` | `/ntf` | Manage webhook notifications (ntfy.sh): add, remove, list, clear, test |
|
|
1263
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` | Configure TTS provider, voice, and optional spoken-turn LLM overrides |
|
|
1264
1273
|
| `/diff [target]` | `/d` | Show unified diff: session, head, working, staged, or a git ref |
|
|
1265
1274
|
| `/mcp [tools]` | — | List connected MCP servers and their tools |
|
|
1266
1275
|
| `/help [command]` | `/h`, `/?` | Show available commands and keyboard shortcuts |
|