@kolisachint/hoocode-agent 0.4.105 → 0.4.106
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 +14 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +20 -5
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/dist/modes/interactive/voice-transcribe.d.ts +16 -1
- package/dist/modes/interactive/voice-transcribe.d.ts.map +1 -1
- package/dist/modes/interactive/voice-transcribe.js +31 -4
- package/dist/modes/interactive/voice-transcribe.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.106] - 2026-07-01
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Voice-to-text (`ctrl+r`) now allows a longer thinking pause before a capture
|
|
8
|
+
auto-stops. The trailing-silence window is raised from 600ms to 3s and is now
|
|
9
|
+
passed through to `voicetools serve` via `--silence-ms`, so the real cutoff
|
|
10
|
+
matches the on-screen countdown (previously the hoocode-side value only drove
|
|
11
|
+
the cosmetic countdown while the binary used its own 600ms default).
|
|
12
|
+
- Voice daemon idle shutdown: after 60s with no capture, the warm `voicetools
|
|
13
|
+
serve` process exits automatically, releasing the ~900 MB resident ASR model
|
|
14
|
+
from memory. The next `ctrl+r` pays a cold-start respawn cost. Controlled
|
|
15
|
+
by `VOICE_IDLE_TIMEOUT_MS` (default 60,000; 0 disables).
|
|
16
|
+
|
|
3
17
|
## [0.4.105] - 2026-07-01
|
|
4
18
|
|
|
5
19
|
### Added
|