@pellux/goodvibes-daemon 1.28.16 → 1.28.18
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 +26 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,32 @@ All notable changes to the GoodVibes daemon.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [1.28.18] - 2026-08-08
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
|
|
11
|
+
- **The keep-awake inhibitor can no longer paint an authentication prompt on
|
|
12
|
+
a terminal** (platform runtime 2.0.15): a polkit refusal of the sleep
|
|
13
|
+
inhibitor — typical for tmux/SSH sessions logind does not count as an
|
|
14
|
+
active seat — used to register systemd's interactive auth agent on the
|
|
15
|
+
controlling terminal. The inhibitor is now requested with
|
|
16
|
+
`--no-ask-password`; refusal is silent and the platform runs without it.
|
|
17
|
+
|
|
18
|
+
## [1.28.17] - 2026-08-08
|
|
19
|
+
|
|
20
|
+
### Changes
|
|
21
|
+
|
|
22
|
+
- **Post-wake capture ends when the speaker stops, on real microphones**
|
|
23
|
+
(platform runtime 2.0.14): the silence floor now follows the room during
|
|
24
|
+
capture — a headset's automatic gain control ramping up after speech no
|
|
25
|
+
longer holds the microphone open — and breath ticks shorter than
|
|
26
|
+
`voice.wake.speechRetriggerMs` (new setting, default 150 ms) no longer
|
|
27
|
+
reset the silence clock. A pinned `voice.wake.silenceFloorRms` still
|
|
28
|
+
freezes the floor completely.
|
|
29
|
+
- **Spoken output reads prose, not markdown** (platform runtime 2.0.14):
|
|
30
|
+
formatting marks are stripped before synthesis and fenced code blocks are
|
|
31
|
+
announced ("Code block omitted.") rather than read character by character.
|
|
32
|
+
|
|
7
33
|
## [1.28.16] - 2026-08-07
|
|
8
34
|
|
|
9
35
|
### 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.18",
|
|
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",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"@anthropic-ai/bedrock-sdk": "^0.28.1",
|
|
66
66
|
"@anthropic-ai/sdk": "^0.82.0",
|
|
67
67
|
"@ast-grep/napi": "^0.42.0",
|
|
68
|
-
"@pellux/goodvibes-sdk": "2.0.
|
|
69
|
-
"@pellux/goodvibes-terminal-shell": "2.0.
|
|
68
|
+
"@pellux/goodvibes-sdk": "2.0.15",
|
|
69
|
+
"@pellux/goodvibes-terminal-shell": "2.0.15",
|
|
70
70
|
"bash-language-server": "^5.6.0",
|
|
71
71
|
"fuse.js": "^7.1.0",
|
|
72
72
|
"graphql": "^16.13.2",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"web-tree-sitter": "^0.26.7"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
|
-
"@pellux/goodvibes-toolchain": "2.0.
|
|
90
|
+
"@pellux/goodvibes-toolchain": "2.0.15",
|
|
91
91
|
"@types/bun": "^1.3.10",
|
|
92
92
|
"typescript": "^5.9.3"
|
|
93
93
|
},
|