@pellux/goodvibes-daemon 1.28.1 → 1.28.3

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
@@ -6,6 +6,23 @@ All notable changes to the GoodVibes daemon.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.28.3] - 2026-08-01
10
+
11
+ ### Changes
12
+
13
+ - Fixed: importing settings that include `display.themeMode` no longer prints
14
+ an "unknown key" warning. The SDK's configuration schema (2.0.1) now declares
15
+ the key — `auto` probes the terminal background once at startup, `dark` and
16
+ `light` force a fixed appearance — so every component ingests it as a real,
17
+ documented setting.
18
+
19
+ ## [1.28.2] - 2026-08-01
20
+
21
+ ### Changes
22
+
23
+ - This repository's releases carry the daemon's own artifacts; the suite
24
+ installer at `https://goodvibes.sh/install.sh` is unchanged.
25
+
9
26
  ## [1.28.1] - 2026-08-01
10
27
 
11
28
  - Changed: the npm package is `@pellux/goodvibes-daemon`, scoped like every other
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/mgd34msu/goodvibes-daemon/actions/workflows/ci.yml/badge.svg)](https://github.com/mgd34msu/goodvibes-daemon/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-1.28.1-blue.svg)](https://github.com/mgd34msu/goodvibes-daemon)
5
+ [![Version](https://img.shields.io/badge/version-1.28.2-blue.svg)](https://github.com/mgd34msu/goodvibes-daemon)
6
6
 
7
7
  The GoodVibes daemon: one long-running process per machine that holds the control plane every
8
8
  GoodVibes client talks to. It answers the operator verb families over HTTP, reads and replies on
@@ -23,11 +23,7 @@ A **product** over `@pellux/goodvibes-sdk`, exactly like the TUI and the agent a
23
23
  - the product handlers the SDK does not own (inbox, triage, drafts, routing, remote peers,
24
24
  credentials),
25
25
  - the CLI (`send`, `cluster`, `webui`, `provision-wake-model`, `install-service` and friends),
26
- - packaging: the compiled `goodvibes-daemon-<os>-<arch>` binaries,
27
- - `scripts/install.sh` — the suite installer behind `https://goodvibes.sh/install.sh`, which
28
- installs all four products (this daemon, the terminal app, the agent, the browser operator
29
- surface) from their own repositories' releases. It lives here because the daemon is the product
30
- everything else is installed alongside, and because this repository's release lane publishes it.
26
+ - packaging: the compiled `goodvibes-daemon-<os>-<arch>` binaries.
31
27
 
32
28
  Every engine — the facade, the routes, the brokers, the updater, the channel adapters, the
33
29
  schedulers — lives in the SDK and is consumed from the published package. Nothing was moved out of
@@ -43,20 +39,13 @@ line staying continuous and monotonically increasing.
43
39
 
44
40
  ## Install
45
41
 
46
- The one-line installer downloads checksum-verified binaries and needs no package
47
- manager. It installs the whole suite — this daemon and the sqlite-vec addon from
48
- this repository's release, the terminal app from `goodvibes-tui`, the agent and
49
- its browser driver from `goodvibes-agent`, and the browser operator surface's
50
- bundle from `goodvibes-webui` — resolving a tag per repository and verifying
51
- every file against that repository's own `SHA256SUMS.txt`:
52
-
53
42
  ```sh
54
43
  curl -fsSL https://goodvibes.sh/install.sh | sh
55
44
  ```
56
45
 
57
- The installer is `scripts/install.sh` in this repository and ships as a release
58
- asset of it, so the current published copy is always at
59
- `https://github.com/mgd34msu/goodvibes-daemon/releases/latest/download/install.sh`.
46
+ This installs the whole GoodVibes suite the daemon, the terminal app, the
47
+ agent, and the browser operator surface from checksum-verified binaries,
48
+ with no package manager involved.
60
49
 
61
50
  The browser surface is not a fourth binary and not a fourth service: the bundle
62
51
  unpacks to `<install dir>/webui/<version>` and this daemon serves it on its own
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-daemon",
3
- "version": "1.28.1",
3
+ "version": "1.28.3",
4
4
  "description": "The GoodVibes daemon \u2014 the one long-running host for the control plane, channels, cluster membership, scheduled work, knowledge and memory stores, and the verb families every GoodVibes client calls.",
5
5
  "type": "module",
6
6
  "main": "src/daemon/cli.ts",
@@ -40,6 +40,7 @@
40
40
  "changelog:check": "bun run scripts/check-changelog.ts",
41
41
  "verify:tag-version": "bun run scripts/verify-release-tag-version.ts",
42
42
  "publish:check": "bun run scripts/publish-check.ts",
43
+ "publish:github-mirror": "bun run scripts/publish-github-mirror.ts",
43
44
  "release": "bun run scripts/release.ts",
44
45
  "release:dry": "bun run scripts/release.ts --dry-run"
45
46
  },
@@ -64,8 +65,8 @@
64
65
  "@anthropic-ai/bedrock-sdk": "^0.28.1",
65
66
  "@anthropic-ai/sdk": "^0.82.0",
66
67
  "@ast-grep/napi": "^0.42.0",
67
- "@pellux/goodvibes-sdk": "2.0.0",
68
- "@pellux/goodvibes-terminal-shell": "2.0.0",
68
+ "@pellux/goodvibes-sdk": "2.0.1",
69
+ "@pellux/goodvibes-terminal-shell": "2.0.1",
69
70
  "bash-language-server": "^5.6.0",
70
71
  "fuse.js": "^7.1.0",
71
72
  "graphql": "^16.13.2",
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 = '1.28.1';
9
+ let _version = '1.28.2';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
12
12
  // Only trust a version read from OUR OWN package.json. A Bun single-file