@pellux/goodvibes-tui 0.19.67 → 0.19.69

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,17 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.19.69] — 2026-05-07
8
+
9
+ ### Changes
10
+ - 4e8c1ec1 chore: update goodvibes sdk to 0.33.5
11
+
12
+ ## [0.19.68] — 2026-05-06
13
+
14
+ ### Changes
15
+ - 7ff4ab69 fix installed daemon service home
16
+ - 8303819d docs: document Bun global trust setup
17
+
7
18
  ## [Unreleased]
8
19
 
9
20
  ---
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.67-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.19.69-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
 
@@ -18,10 +18,19 @@ GoodVibes is a Bun program. Install Bun first and make sure `bun` is on `PATH`,
18
18
 
19
19
  ```sh
20
20
  bun add -g @pellux/goodvibes-tui
21
+ bun pm -g trust @pellux/goodvibes-tui tree-sitter-css tree-sitter-javascript tree-sitter-python tree-sitter-typescript core-js
21
22
  goodvibes
22
23
  ```
23
24
 
24
- `npm install -g @pellux/goodvibes-tui` is also supported, but it does not install Bun for you. The package preinstall check fails with a clear message if `bun` is missing from `PATH`.
25
+ Bun blocks lifecycle scripts for untrusted global packages. The trust command is required after the first global install so GoodVibes can run its postinstall binary installer and native dependencies can run their install steps. Verify the global install with:
26
+
27
+ ```sh
28
+ bun pm -g untrusted
29
+ goodvibes --version
30
+ goodvibes-daemon --version
31
+ ```
32
+
33
+ `bun pm -g untrusted` should not list `@pellux/goodvibes-tui`; if it does, rerun the trust command above. `npm install -g @pellux/goodvibes-tui` is also supported, but it does not install Bun for you. The package preinstall check fails with a clear message if `bun` is missing from `PATH`.
25
34
 
26
35
  Or run from source:
27
36
 
@@ -44,6 +53,7 @@ Release distribution:
44
53
 
45
54
  - GitHub Releases are the primary distribution path for compiled binaries
46
55
  - `bun add -g @pellux/goodvibes-tui` is the recommended global install path; the package is hosted on the npm registry and Bun installs from that registry directly
56
+ - Bun global installs require trusting `@pellux/goodvibes-tui` so the package postinstall can download the matching TUI and daemon binaries; the native parser dependencies currently requiring trust are `tree-sitter-css`, `tree-sitter-javascript`, `tree-sitter-python`, `tree-sitter-typescript`, and `core-js`
47
57
  - `npm install -g @pellux/goodvibes-tui` is supported on Linux, macOS, and WSL when Bun is already installed; the preinstall check verifies Bun, and the install script downloads the matching TUI and daemon binaries for the current platform
48
58
  - native Windows is not supported; use WSL on Windows
49
59
 
@@ -3,7 +3,7 @@
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "0.33.4"
6
+ "version": "0.33.5"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-tui",
3
- "version": "0.19.67",
3
+ "version": "0.19.69",
4
4
  "description": "Terminal-native GoodVibes product for coding, operations, automation, knowledge, channels, and daemon-backed control-plane workflows.",
5
5
  "type": "module",
6
6
  "main": "src/main.ts",
@@ -97,7 +97,7 @@
97
97
  "@anthropic-ai/vertex-sdk": "^0.16.0",
98
98
  "@ast-grep/napi": "^0.42.0",
99
99
  "@aws/bedrock-token-generator": "^1.1.0",
100
- "@pellux/goodvibes-sdk": "0.33.4",
100
+ "@pellux/goodvibes-sdk": "0.33.5",
101
101
  "bash-language-server": "^5.6.0",
102
102
  "fuse.js": "^7.1.0",
103
103
  "graphql": "^16.13.2",
@@ -349,7 +349,8 @@ export function createPlatformServiceManager(runtime: CliServiceRuntime): Platfo
349
349
  command: daemonExecutable.command,
350
350
  args: [],
351
351
  env: {
352
- GOODVIBES_DAEMON_HOME: daemonHomeDir,
352
+ // The daemon CLI treats this as the GoodVibes home root, not the daemon state directory.
353
+ GOODVIBES_DAEMON_HOME: runtime.homeDirectory,
353
354
  GOODVIBES_DAEMON_TOKEN: process.env.GOODVIBES_DAEMON_TOKEN ?? '',
354
355
  GOODVIBES_HTTP_TOKEN: process.env.GOODVIBES_HTTP_TOKEN ?? '',
355
356
  NODE_ENV: process.env.NODE_ENV ?? 'production',
package/src/version.ts CHANGED
@@ -6,7 +6,7 @@ import { join } from 'node:path';
6
6
  // The prebuild script updates the fallback value before compilation.
7
7
  // Uses import.meta.dir (Bun) to locate package.json relative to this file,
8
8
  // which is correct regardless of the process working directory.
9
- let _version = '0.19.67';
9
+ let _version = '0.19.69';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
12
12
  _version = pkg.version ?? _version;