@pellux/goodvibes-tui 0.19.34 → 0.19.35
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 +4 -3
- package/docs/foundation-artifacts/operator-contract.json +284 -112
- package/package.json +2 -2
- package/src/cli/management.ts +2 -2
- package/src/input/commands/cloudflare-runtime.ts +27 -0
- package/src/input/commands/local-auth-runtime.ts +4 -4
- package/src/input/onboarding/onboarding-wizard-apply.ts +4 -0
- package/src/input/onboarding/onboarding-wizard-cloudflare-step.ts +45 -0
- package/src/input/onboarding/onboarding-wizard-cloudflare.ts +5 -0
- package/src/input/onboarding/onboarding-wizard-constants.ts +5 -1
- package/src/input/onboarding/onboarding-wizard-external-surface-extra-specs.ts +117 -0
- package/src/input/onboarding/onboarding-wizard-external-surfaces.ts +3 -41
- package/src/renderer/settings-modal-helpers.ts +8 -0
- package/src/runtime/cloudflare-control-plane.ts +21 -0
- package/src/runtime/onboarding/apply.ts +9 -8
- package/src/runtime/onboarding/derivation.ts +1 -1
- 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
|
+
## [0.19.35] — 2026-04-26
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Home Assistant is now exposed as an external onboarding/settings surface with auto-start control, instance URL, access token, webhook secret, route conversation, daemon device, and event type fields.
|
|
11
|
+
- Cloudflare onboarding and `/cloudflare provision` now pass Tunnel token refs, Tunnel service URLs, Access app/service-token refs, and advanced KV/DO/R2/Secrets Store provisioning fields through to the SDK daemon routes.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Updated `@pellux/goodvibes-sdk` to `0.25.11` for Cloudflare token-creation fixes, Home Assistant companion surface contracts, and redacted auth-session fingerprints.
|
|
15
|
+
- Local auth session listings now show SDK session fingerprints instead of assuming raw tokens are available; revoke-session accepts either a raw token or SDK fingerprint.
|
|
16
|
+
- Regenerated foundation operator contract artifacts from the SDK 0.25.11 contract.
|
|
17
|
+
|
|
7
18
|
## [0.19.34] — 2026-04-26
|
|
8
19
|
|
|
9
20
|
### Added
|
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
|
|
|
@@ -60,7 +60,7 @@ Deployment shapes:
|
|
|
60
60
|
- local TUI only
|
|
61
61
|
- TUI with in-process daemon/API host
|
|
62
62
|
- source-run headless daemon/API host
|
|
63
|
-
- omnichannel runtime with Slack, Discord, Telegram, webhook, Teams, Matrix, and other surfaces
|
|
63
|
+
- omnichannel runtime with Slack, Discord, Telegram, Home Assistant, webhook, Teams, Matrix, and other surfaces
|
|
64
64
|
- remote peer/node-host runtime for distributed execution
|
|
65
65
|
|
|
66
66
|
Typical workflows:
|
|
@@ -661,6 +661,7 @@ Current surfaces:
|
|
|
661
661
|
- `discord`
|
|
662
662
|
- `ntfy`
|
|
663
663
|
- `webhook`
|
|
664
|
+
- `homeassistant`
|
|
664
665
|
- `telegram`
|
|
665
666
|
- `google-chat`
|
|
666
667
|
- `signal`
|
|
@@ -733,7 +734,7 @@ Key commands:
|
|
|
733
734
|
- `/auth local review`
|
|
734
735
|
- `/auth local add-user <username> <password> [roles]`
|
|
735
736
|
- `/auth local rotate-password <username> <password>`
|
|
736
|
-
- `/auth local revoke-session <token>`
|
|
737
|
+
- `/auth local revoke-session <token-or-fingerprint>`
|
|
737
738
|
- `/auth local clear-bootstrap-file`
|
|
738
739
|
|
|
739
740
|
### Integration helpers
|