agentvibes 4.5.7 β 4.6.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/.claude/config/audio-effects.cfg +1 -1
- package/.claude/config/tts-pretext.txt +1 -0
- package/.claude/hooks/audio-processor.sh +1 -1
- package/.claude/hooks/bmad-party-speak.sh +175 -0
- package/.claude/hooks-windows/bmad-party-speak.ps1 +207 -0
- package/.claude/hooks-windows/bmad-speak.ps1 +32 -7
- package/.claude/hooks-windows/play-tts-piper.ps1 +43 -6
- package/.claude/hooks-windows/play-tts.ps1 +57 -30
- package/.mcp.json +7 -0
- package/README.md +64 -2
- package/RELEASE_NOTES.md +42 -0
- package/bin/agent-vibes +1 -1
- package/bin/agentvibes-voice-browser.js +1 -1
- package/bin/mcp-server.js +1 -1
- package/bin/test-bmad-pr +1 -1
- package/package.json +110 -110
- package/src/console/tabs/agents-tab.js +240 -34
- package/src/console/tabs/install-tab.js +1 -0
- package/src/console/tabs/voices-tab.js +38 -5
- package/src/console/widgets/track-picker.js +50 -18
- package/src/installer.js +97 -3
- package/templates/agentvibes-receiver.sh +1 -1
package/.mcp.json
CHANGED
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
[](https://github.com/paulpreibisch/AgentVibes/actions/workflows/publish.yml)
|
|
12
12
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
13
13
|
|
|
14
|
-
**Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v4.
|
|
14
|
+
**Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v4.6.2
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
@@ -40,7 +40,69 @@ Whether you're coding in Claude Code, chatting in Claude Desktop, or running Ope
|
|
|
40
40
|
|
|
41
41
|
---
|
|
42
42
|
|
|
43
|
-
##
|
|
43
|
+
## π NEW IN v4.6.2 β Party Mode Voices, LibriTTS Speaker Fix, Agent Pretext
|
|
44
|
+
|
|
45
|
+
- **Party mode agents now speak in their unique voices** β SKILL.md wired to `bmad-speak.ps1` per agent
|
|
46
|
+
- **LibriTTS speaker IDs resolved correctly** β `Holly-7` is speaker 322, not 7
|
|
47
|
+
- **Agent pretext spoken on Windows** β "Mary, Business Analyst here." before every response
|
|
48
|
+
- **`parseMultiSpeaker` fallback** β works on fresh installs before `.onnx.json` is patched
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## π NEW IN v4.6.1 β Party Mode Voice Clarity + Agent Config UI Polish
|
|
53
|
+
|
|
54
|
+
### π Voice Volume Fixed in Party Mode
|
|
55
|
+
|
|
56
|
+
- **`normalize=0`** added to ffmpeg `amix` β prevents voices being silenced to 50% when mixed with background music
|
|
57
|
+
- **Voice boost `volume=1.5`** applied to every TTS stream β agents are now loud and clear
|
|
58
|
+
- **Music intro reduced to 1 second** (`adelay=1000`) β less dead air before each agent speaks
|
|
59
|
+
- **Pre-synthesis gap reduction** β WAV files are generated *before* acquiring the mutex, so synthesis overlaps with the previous agent's playback (gap drops from ~4β6s to ~1s)
|
|
60
|
+
|
|
61
|
+
### ποΈ BMAD Agent Config β Preview + Split Fields
|
|
62
|
+
|
|
63
|
+
- **Music Track** and **Music Vol** are now separate fields in the agent editor β each opens its own dialog
|
|
64
|
+
- **Preview button** plays the selected voice with full effects: personality, reverb, background music track and volume
|
|
65
|
+
- **Blinking indicator** (`βΊβ`) highlights the focused button β reuses the shared `attachBtnBlink` utility
|
|
66
|
+
- **Preview spinner** animates while audio is playing
|
|
67
|
+
- **TabβSave hint** shown in the volume input dialog
|
|
68
|
+
|
|
69
|
+
### π» Voice Gender Auto-Assign Fixed
|
|
70
|
+
|
|
71
|
+
- `inferGender` now strips the numeric suffix from LibriTTS speaker names (e.g. `anna-9` β `anna`) before looking up gender
|
|
72
|
+
- Expanded `GENDER_MAP` with 60+ first names covering all bundled voices
|
|
73
|
+
- `libritts` blanket-male override removed β LibriTTS voices are now inferred per-name
|
|
74
|
+
|
|
75
|
+
### π Other Fixes
|
|
76
|
+
|
|
77
|
+
- Volume dialog text now uses `cyan`/`white` β no more invisible-on-dark-background instructions
|
|
78
|
+
- After saving agent settings, focus correctly returns to the agent list (Enter re-opens the agent)
|
|
79
|
+
- Boundary navigation in agent fields no longer jumps to buttons prematurely
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## π NEW IN v4.6 β Party Mode Auto-Install + Volume Fix
|
|
84
|
+
|
|
85
|
+
### π BMAD Party Mode TTS β Zero Setup
|
|
86
|
+
|
|
87
|
+
Every agent now speaks automatically in any BMAD project β no manual hook configuration needed:
|
|
88
|
+
|
|
89
|
+
- Installer copies `bmad-party-speak.sh` (Linux/macOS/WSL) or `bmad-party-speak.ps1` (Windows) to `~/.claude/hooks/`
|
|
90
|
+
- `PostToolUse` hook registered in `~/.claude/settings.json` automatically
|
|
91
|
+
- `npx agentvibes update` keeps the scripts fresh across all platforms
|
|
92
|
+
|
|
93
|
+
### π Background Music Volume Default: 20%
|
|
94
|
+
|
|
95
|
+
All volume defaults lowered from 70% to 20% β new installs and agents start at a sensible level. `bmad-speak` scripts now inherit the global volume setting instead of ignoring it.
|
|
96
|
+
|
|
97
|
+
### π Installer Navigation Fix
|
|
98
|
+
|
|
99
|
+
Pressing β on the completion screen no longer jumps back to the installation step.
|
|
100
|
+
|
|
101
|
+
### π§ͺ 628 Tests, Zero Failures
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## π v4.5 β "Speak Every Language" Release
|
|
44
106
|
|
|
45
107
|
### π Multilingual TUI β 9 Languages
|
|
46
108
|
|
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# AgentVibes Release Notes
|
|
2
2
|
|
|
3
|
+
## π v4.6.2 β Patch Release
|
|
4
|
+
|
|
5
|
+
**Release Date:** April 2026
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **BMAD party mode: agents now speak with their unique voices** β The party mode `SKILL.md` was missing TTS wiring entirely. It now creates `.bmad-agent-context` on activation, calls `bmad-speak.ps1` sequentially per agent after each round, and cleans up on exit. When BMAD and AgentVibes are both installed, AgentVibes' skill now correctly overrides the BMAD version.
|
|
10
|
+
|
|
11
|
+
- **LibriTTS speaker IDs resolved correctly on Windows** β `play-tts-piper.ps1` was extracting the speaker index via a regex on the voice name suffix (e.g. `Holly-7` β `7`). That suffix is a disambiguation counter, not the Piper speaker index. `Holly-7` is actually speaker 322. The script now looks up the real index from `voice-assignments.json`, with a fallback to the patched `.onnx.json`.
|
|
12
|
+
|
|
13
|
+
- **LibriTTS `parseMultiSpeaker` fallback for unpatched models** β `voices-tab.js` now falls back to `voice-assignments.json` when the `.onnx.json` speaker map hasn't been patched yet with friendly names, preventing silent fallback to speaker 0 (often male) on fresh installs.
|
|
14
|
+
|
|
15
|
+
- **Agent pretext spoken on Windows** β `bmad-speak.ps1` never read or applied the agent's configured pretext. It now reads `pretext` from the voice map profile, and falls back to the default `"DisplayName, Title here."` computed from the agent manifest β matching the behaviour of `bmad-speak.sh` and `AgentVoiceStore.getDefaultPretext()`.
|
|
16
|
+
|
|
17
|
+
### User Impact
|
|
18
|
+
|
|
19
|
+
- Party mode agents will introduce themselves by role before speaking and use their individually configured voices throughout the conversation
|
|
20
|
+
- LibriTTS multi-speaker voices now reliably map to the correct speaker on first install (no manual patching required)
|
|
21
|
+
- No breaking changes β all fixes are silent fallbacks or missing behaviours being added
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## β¨ v4.6.0 β Minor Release
|
|
26
|
+
|
|
27
|
+
**Release Date:** April 2026
|
|
28
|
+
|
|
29
|
+
### New Features
|
|
30
|
+
|
|
31
|
+
- **BMAD party mode TTS auto-installs for all platforms** β The installer now automatically copies `bmad-party-speak.sh` (Linux/macOS/WSL) or `bmad-party-speak.ps1` (Windows) to `~/.claude/hooks/` and registers a `PostToolUse` hook in `~/.claude/settings.json`. Party mode agents now speak out of the box in any BMAD project without manual setup. Both scripts are included in critical hooks so `npx agentvibes update` keeps them fresh.
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
- **Background music volume default** β All volume defaults lowered from 70% to 20% across the UI (settings tab, agents tab, music tab, track picker) and scripts (`audio-processor.sh`, `bmad-speak.sh`, `bmad-speak.ps1`). New installs and newly configured agents default to a much more reasonable level.
|
|
36
|
+
- **bmad-speak volume inheritance** β `bmad-speak.sh` and `bmad-speak.ps1` now read the global `background-music-volume.txt` config file as the fallback volume instead of a hardcoded value.
|
|
37
|
+
- **Installer wizard left arrow** β Pressing β on the completion screen (screen 5) to move from Done-Quit to Done-Customize More no longer jumps back to the installation step.
|
|
38
|
+
|
|
39
|
+
### Tests
|
|
40
|
+
|
|
41
|
+
- 29 new tests: volume default regression guards across all affected files, `configurePartyModeHook` installer coverage (idempotency, settings.json registration, script copying, hook preservation), and a regression test for the screen 5 navigation fix.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
3
45
|
## π v4.5.7 β Patch Release
|
|
4
46
|
|
|
5
47
|
**Release Date:** April 2026
|
package/bin/agent-vibes
CHANGED
package/bin/mcp-server.js
CHANGED
package/bin/test-bmad-pr
CHANGED
package/package.json
CHANGED
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
-
"name": "agentvibes",
|
|
4
|
-
"version": "4.
|
|
5
|
-
"description": "Now your AI Agents can finally talk back! Professional TTS voice for Claude Code, Claude Desktop (via MCP), and Clawdbot with multi-provider support.",
|
|
6
|
-
"homepage": "https://agentvibes.org",
|
|
7
|
-
"keywords": [
|
|
8
|
-
"tts",
|
|
9
|
-
"text-to-speech",
|
|
10
|
-
"piper-tts",
|
|
11
|
-
"claude-code",
|
|
12
|
-
"claude-desktop",
|
|
13
|
-
"clawdbot",
|
|
14
|
-
"mcp",
|
|
15
|
-
"model-context-protocol",
|
|
16
|
-
"voice",
|
|
17
|
-
"ai",
|
|
18
|
-
"narration",
|
|
19
|
-
"agent-vibes"
|
|
20
|
-
],
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "git+https://github.com/paulpreibisch/AgentVibes.git"
|
|
24
|
-
},
|
|
25
|
-
"license": "Apache-2.0",
|
|
26
|
-
"author": "Paul Preibisch <paul@paulpreibisch.com>",
|
|
27
|
-
"type": "module",
|
|
28
|
-
"main": "src/installer.js",
|
|
29
|
-
"bin": {
|
|
30
|
-
"agentvibes": "bin/agentvibes.js",
|
|
31
|
-
"agent-vibes": "bin/agent-vibes",
|
|
32
|
-
"agentvibes-mcp-server": "bin/mcp-server.js",
|
|
33
|
-
"agentvibes-voice-browser": "bin/agentvibes-voice-browser.js",
|
|
34
|
-
"test-bmad-pr": "bin/test-bmad-pr"
|
|
35
|
-
},
|
|
36
|
-
"files": [
|
|
37
|
-
"bin/",
|
|
38
|
-
"src/",
|
|
39
|
-
"templates/*.sh",
|
|
40
|
-
"templates/*.md",
|
|
41
|
-
"templates/audio/*.mp3",
|
|
42
|
-
"mcp-server/*.py",
|
|
43
|
-
"mcp-server/*.js",
|
|
44
|
-
"mcp-server/*.md",
|
|
45
|
-
"mcp-server/*.txt",
|
|
46
|
-
"mcp-server/*.toml",
|
|
47
|
-
"mcp-server/*.json",
|
|
48
|
-
"mcp-server/docs/",
|
|
49
|
-
"mcp-server/examples/",
|
|
50
|
-
".claude/commands/agent-vibes/",
|
|
51
|
-
".claude/commands/agent-vibes-bmad-voices.md",
|
|
52
|
-
".claude/commands/agent-vibes-rdp.md",
|
|
53
|
-
".claude/hooks/",
|
|
54
|
-
".claude/hooks-windows/",
|
|
55
|
-
".claude/personalities/",
|
|
56
|
-
".claude/output-styles/",
|
|
57
|
-
".claude/audio/tracks/",
|
|
58
|
-
".claude/config/",
|
|
59
|
-
".claude/docs/",
|
|
60
|
-
".claude/language-voices.yaml",
|
|
61
|
-
".claude/settings.json",
|
|
62
|
-
".claude/activation-instructions",
|
|
63
|
-
".claude/piper-voices-dir.txt",
|
|
64
|
-
".claude/verbosity.txt",
|
|
65
|
-
".claude/github-star-reminder.txt",
|
|
66
|
-
".claude/audio/voice-samples/",
|
|
67
|
-
"voice-assignments.json",
|
|
68
|
-
".agentvibes/",
|
|
69
|
-
".clawdbot/",
|
|
70
|
-
".mcp.json",
|
|
71
|
-
"setup-windows.ps1",
|
|
72
|
-
"WINDOWS-SETUP.md",
|
|
73
|
-
"README.md",
|
|
74
|
-
"RELEASE_NOTES.md",
|
|
75
|
-
"LICENSE",
|
|
76
|
-
"CLAUDE.md"
|
|
77
|
-
],
|
|
78
|
-
"scripts": {
|
|
79
|
-
"install-local": "node src/installer.js install",
|
|
80
|
-
"postinstall": "node mcp-server/install-deps.js",
|
|
81
|
-
"install-mcp-deps": "node mcp-server/install-deps.js",
|
|
82
|
-
"voice-browser": "node bin/agentvibes-voice-browser.js",
|
|
83
|
-
"test": "npm run test:syntax && AGENTVIBES_TEST_MODE=true bats test/unit/*.bats && npm run test:coverage",
|
|
84
|
-
"test:syntax": "node -c src/installer.js && node -c mcp-server/install-deps.js",
|
|
85
|
-
"test:bats": "AGENTVIBES_TEST_MODE=true bats test/unit/*.bats",
|
|
86
|
-
"test:node": "node --test test/unit/*.test.js",
|
|
87
|
-
"test:coverage": "c8 --reporter=lcov --reporter=text node --test test/unit/*.test.js",
|
|
88
|
-
"test:verbose": "AGENTVIBES_TEST_MODE=true bats -t test/unit/*.bats"
|
|
89
|
-
},
|
|
90
|
-
"dependencies": {
|
|
91
|
-
"@inquirer/search": "^3.1.3",
|
|
92
|
-
"blessed": "^0.1.81",
|
|
93
|
-
"boxen": "^7.0.0",
|
|
94
|
-
"chalk": "^5.0.0",
|
|
95
|
-
"commander": "^10.0.0",
|
|
96
|
-
"figlet": "^1.6.0",
|
|
97
|
-
"inquirer": "^12.0.0",
|
|
98
|
-
"js-yaml": "^4.1.1",
|
|
99
|
-
"ora": "^6.0.0"
|
|
100
|
-
},
|
|
101
|
-
"engines": {
|
|
102
|
-
"node": ">=16.0.0"
|
|
103
|
-
},
|
|
104
|
-
"publishConfig": {
|
|
105
|
-
"access": "public"
|
|
106
|
-
},
|
|
107
|
-
"devDependencies": {
|
|
108
|
-
"c8": "^10.1.3"
|
|
109
|
-
}
|
|
110
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
+
"name": "agentvibes",
|
|
4
|
+
"version": "4.6.2",
|
|
5
|
+
"description": "Now your AI Agents can finally talk back! Professional TTS voice for Claude Code, Claude Desktop (via MCP), and Clawdbot with multi-provider support.",
|
|
6
|
+
"homepage": "https://agentvibes.org",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"tts",
|
|
9
|
+
"text-to-speech",
|
|
10
|
+
"piper-tts",
|
|
11
|
+
"claude-code",
|
|
12
|
+
"claude-desktop",
|
|
13
|
+
"clawdbot",
|
|
14
|
+
"mcp",
|
|
15
|
+
"model-context-protocol",
|
|
16
|
+
"voice",
|
|
17
|
+
"ai",
|
|
18
|
+
"narration",
|
|
19
|
+
"agent-vibes"
|
|
20
|
+
],
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/paulpreibisch/AgentVibes.git"
|
|
24
|
+
},
|
|
25
|
+
"license": "Apache-2.0",
|
|
26
|
+
"author": "Paul Preibisch <paul@paulpreibisch.com>",
|
|
27
|
+
"type": "module",
|
|
28
|
+
"main": "src/installer.js",
|
|
29
|
+
"bin": {
|
|
30
|
+
"agentvibes": "bin/agentvibes.js",
|
|
31
|
+
"agent-vibes": "bin/agent-vibes",
|
|
32
|
+
"agentvibes-mcp-server": "bin/mcp-server.js",
|
|
33
|
+
"agentvibes-voice-browser": "bin/agentvibes-voice-browser.js",
|
|
34
|
+
"test-bmad-pr": "bin/test-bmad-pr"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"bin/",
|
|
38
|
+
"src/",
|
|
39
|
+
"templates/*.sh",
|
|
40
|
+
"templates/*.md",
|
|
41
|
+
"templates/audio/*.mp3",
|
|
42
|
+
"mcp-server/*.py",
|
|
43
|
+
"mcp-server/*.js",
|
|
44
|
+
"mcp-server/*.md",
|
|
45
|
+
"mcp-server/*.txt",
|
|
46
|
+
"mcp-server/*.toml",
|
|
47
|
+
"mcp-server/*.json",
|
|
48
|
+
"mcp-server/docs/",
|
|
49
|
+
"mcp-server/examples/",
|
|
50
|
+
".claude/commands/agent-vibes/",
|
|
51
|
+
".claude/commands/agent-vibes-bmad-voices.md",
|
|
52
|
+
".claude/commands/agent-vibes-rdp.md",
|
|
53
|
+
".claude/hooks/",
|
|
54
|
+
".claude/hooks-windows/",
|
|
55
|
+
".claude/personalities/",
|
|
56
|
+
".claude/output-styles/",
|
|
57
|
+
".claude/audio/tracks/",
|
|
58
|
+
".claude/config/",
|
|
59
|
+
".claude/docs/",
|
|
60
|
+
".claude/language-voices.yaml",
|
|
61
|
+
".claude/settings.json",
|
|
62
|
+
".claude/activation-instructions",
|
|
63
|
+
".claude/piper-voices-dir.txt",
|
|
64
|
+
".claude/verbosity.txt",
|
|
65
|
+
".claude/github-star-reminder.txt",
|
|
66
|
+
".claude/audio/voice-samples/",
|
|
67
|
+
"voice-assignments.json",
|
|
68
|
+
".agentvibes/",
|
|
69
|
+
".clawdbot/",
|
|
70
|
+
".mcp.json",
|
|
71
|
+
"setup-windows.ps1",
|
|
72
|
+
"WINDOWS-SETUP.md",
|
|
73
|
+
"README.md",
|
|
74
|
+
"RELEASE_NOTES.md",
|
|
75
|
+
"LICENSE",
|
|
76
|
+
"CLAUDE.md"
|
|
77
|
+
],
|
|
78
|
+
"scripts": {
|
|
79
|
+
"install-local": "node src/installer.js install",
|
|
80
|
+
"postinstall": "node mcp-server/install-deps.js",
|
|
81
|
+
"install-mcp-deps": "node mcp-server/install-deps.js",
|
|
82
|
+
"voice-browser": "node bin/agentvibes-voice-browser.js",
|
|
83
|
+
"test": "npm run test:syntax && AGENTVIBES_TEST_MODE=true bats test/unit/*.bats && npm run test:coverage",
|
|
84
|
+
"test:syntax": "node -c src/installer.js && node -c mcp-server/install-deps.js",
|
|
85
|
+
"test:bats": "AGENTVIBES_TEST_MODE=true bats test/unit/*.bats",
|
|
86
|
+
"test:node": "node --test test/unit/*.test.js",
|
|
87
|
+
"test:coverage": "c8 --reporter=lcov --reporter=text node --test test/unit/*.test.js",
|
|
88
|
+
"test:verbose": "AGENTVIBES_TEST_MODE=true bats -t test/unit/*.bats"
|
|
89
|
+
},
|
|
90
|
+
"dependencies": {
|
|
91
|
+
"@inquirer/search": "^3.1.3",
|
|
92
|
+
"blessed": "^0.1.81",
|
|
93
|
+
"boxen": "^7.0.0",
|
|
94
|
+
"chalk": "^5.0.0",
|
|
95
|
+
"commander": "^10.0.0",
|
|
96
|
+
"figlet": "^1.6.0",
|
|
97
|
+
"inquirer": "^12.0.0",
|
|
98
|
+
"js-yaml": "^4.1.1",
|
|
99
|
+
"ora": "^6.0.0"
|
|
100
|
+
},
|
|
101
|
+
"engines": {
|
|
102
|
+
"node": ">=16.0.0"
|
|
103
|
+
},
|
|
104
|
+
"publishConfig": {
|
|
105
|
+
"access": "public"
|
|
106
|
+
},
|
|
107
|
+
"devDependencies": {
|
|
108
|
+
"c8": "^10.1.3"
|
|
109
|
+
}
|
|
110
|
+
}
|