@pellux/goodvibes-daemon 1.28.1 → 1.28.2
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 +7 -0
- package/README.md +5 -16
- package/package.json +2 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ All notable changes to the GoodVibes daemon.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.28.2] - 2026-08-01
|
|
10
|
+
|
|
11
|
+
### Changes
|
|
12
|
+
|
|
13
|
+
- This repository's releases carry the daemon's own artifacts; the suite
|
|
14
|
+
installer at `https://goodvibes.sh/install.sh` is unchanged.
|
|
15
|
+
|
|
9
16
|
## [1.28.1] - 2026-08-01
|
|
10
17
|
|
|
11
18
|
- Changed: the npm package is `@pellux/goodvibes-daemon`, scoped like every other
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/mgd34msu/goodvibes-daemon/actions/workflows/ci.yml)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](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
|
-
|
|
58
|
-
|
|
59
|
-
|
|
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.
|
|
3
|
+
"version": "1.28.2",
|
|
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
|
},
|
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.
|
|
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
|