@pellux/goodvibes-daemon 1.28.22 → 1.28.24
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 +29 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the GoodVibes daemon.
|
|
4
4
|
|
|
5
|
+
## [1.28.24] - 2026-08-22
|
|
6
|
+
|
|
7
|
+
### Changes
|
|
8
|
+
|
|
9
|
+
- **A dead subscription login shows dead everywhere.** sdk 2.0.22 inside:
|
|
10
|
+
a refused grant stamps the stored record, the provider-health posture
|
|
11
|
+
reports the session as ended instead of deriving healthy from a
|
|
12
|
+
timestamp, later turns fail fast with the honest message, and a
|
|
13
|
+
near-expiry token refreshes silently before the send.
|
|
14
|
+
- **Surfaces adopt this daemon again.** The adoption gate now band-checks
|
|
15
|
+
the platform build this daemon reports on /status instead of its 1.28.x
|
|
16
|
+
artifact version, which had every 2.x surface refusing adoption and
|
|
17
|
+
silently running local-only since sdk 2.0.0.
|
|
18
|
+
- **A machine with no microphone is reported as that**, once, in plain
|
|
19
|
+
words, with a gentle retry — not a wake-detector crash loop. A busy
|
|
20
|
+
device keeps prompt retries and the crash latch.
|
|
21
|
+
|
|
22
|
+
## [1.28.23] - 2026-08-21
|
|
23
|
+
|
|
24
|
+
### Changes
|
|
25
|
+
|
|
26
|
+
- **A rejected OpenAI subscription token recovers before it fails a turn.**
|
|
27
|
+
sdk 2.0.21 inside: a token the Codex backend refuses (expired, revoked by
|
|
28
|
+
a login elsewhere, entitlement lost) gets one coalesced, time-bounded
|
|
29
|
+
refresh attempt and one retry; only an authorization server that answers
|
|
30
|
+
"no" produces the sign-in-again error, and that error names the
|
|
31
|
+
subscription session, never an API key. No daemon code change; the pin is
|
|
32
|
+
the fix.
|
|
33
|
+
|
|
5
34
|
## [1.28.22] - 2026-08-21
|
|
6
35
|
|
|
7
36
|
### Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-daemon",
|
|
3
|
-
"version": "1.28.
|
|
3
|
+
"version": "1.28.24",
|
|
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",
|
|
@@ -67,8 +67,8 @@
|
|
|
67
67
|
"@anthropic-ai/bedrock-sdk": "^0.28.1",
|
|
68
68
|
"@anthropic-ai/sdk": "^0.82.0",
|
|
69
69
|
"@ast-grep/napi": "^0.42.0",
|
|
70
|
-
"@pellux/goodvibes-sdk": "2.0.
|
|
71
|
-
"@pellux/goodvibes-terminal-shell": "2.0.
|
|
70
|
+
"@pellux/goodvibes-sdk": "2.0.22",
|
|
71
|
+
"@pellux/goodvibes-terminal-shell": "2.0.22",
|
|
72
72
|
"bash-language-server": "^5.6.0",
|
|
73
73
|
"fuse.js": "^7.1.0",
|
|
74
74
|
"graphql": "^16.13.2",
|