agentvibes 2.0.23 β 2.1.0
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/agents/health-coach.md +154 -0
- package/.claude/agents/motivator.md +171 -0
- package/.claude/agents/negotiator.md +97 -0
- package/.claude/commands/agent-vibes/agent-health-coach.md +15 -0
- package/.claude/commands/agent-vibes/agent-motivator.md +15 -0
- package/.claude/commands/agent-vibes/agent-negotiator.md +15 -0
- package/.claude/commands/agent-vibes/agent.md +79 -0
- package/.claude/github-star-reminder.txt +1 -1
- package/.claude/output-styles/agent-vibes.md +16 -9
- package/README.md +2 -2
- package/RELEASE_NOTES.md +98 -1980
- package/docs/agents.md +485 -0
- package/fix-vscode-colors.sh +88 -0
- package/fixcolors +88 -0
- package/generate-all-agent-voices.sh +174 -0
- package/generate-new-voices.sh +108 -0
- package/generate-piper-agent-intros.sh +85 -0
- package/generate-provider-and-agent-intros.sh +136 -0
- package/logo/fav_icon_128x128.png +0 -0
- package/logo/fav_icon_128x128.png:Zone.Identifier +4 -0
- package/logo/logo1.webp +0 -0
- package/logo/logo1.webp:Zone.Identifier +4 -0
- package/logo/social.png +0 -0
- package/logo/social.png:Zone.Identifier +4 -0
- package/package.json +1 -1
- package/regenerate-agent-voices.sh +79 -0
- package/src/installer.js +56 -0
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,2042 +1,160 @@
|
|
|
1
1
|
# π€ AgentVibes Release Notes
|
|
2
2
|
|
|
3
|
-
## π¦ v2.0
|
|
3
|
+
## π¦ v2.1.0 - Streamlined Installation & CI Improvements (2025-10-26)
|
|
4
4
|
|
|
5
5
|
### π― Overview
|
|
6
6
|
|
|
7
|
-
This
|
|
7
|
+
This minor release delivers **automated Piper TTS installation** and **improved CI/CD workflow**, making AgentVibes easier to install and maintain. Users selecting Piper no longer need manual binary installation - the installer handles everything automatically with human approval.
|
|
8
8
|
|
|
9
|
-
**Release Date:** October
|
|
10
|
-
**Git Tag:** v2.0
|
|
11
|
-
**
|
|
9
|
+
**Release Date:** October 26, 2025
|
|
10
|
+
**Git Tag:** v2.1.0
|
|
11
|
+
**Type:** Minor release (new features)
|
|
12
|
+
**Impact:** Significantly improved installation experience for Piper users
|
|
12
13
|
|
|
13
14
|
---
|
|
14
15
|
|
|
15
16
|
### β¨ New Features
|
|
16
17
|
|
|
17
|
-
- **
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
- "Testing speed change"
|
|
24
|
-
- "Speed test in progress"
|
|
25
|
-
- "Checking audio speed"
|
|
26
|
-
- "Speed configuration test"
|
|
27
|
-
- "Audio speed test"
|
|
18
|
+
- **Automatic Piper Installation** π
|
|
19
|
+
- Installer now auto-detects if Piper TTS binary is installed
|
|
20
|
+
- Prompts user to install Piper automatically when missing
|
|
21
|
+
- Runs `.claude/hooks/piper-installer.sh` seamlessly during setup
|
|
22
|
+
- Supports `--yes` flag for fully unattended installation
|
|
23
|
+
- Graceful fallback with clear manual instructions if declined
|
|
28
24
|
|
|
29
|
-
###
|
|
25
|
+
### π§ Improvements
|
|
30
26
|
|
|
31
|
-
- **
|
|
32
|
-
-
|
|
33
|
-
-
|
|
27
|
+
- **CI Workflow Cleanup**
|
|
28
|
+
- Removed deprecated `v1` branch from GitHub Actions test workflow
|
|
29
|
+
- Tests now only run on `master` branch and pull requests
|
|
30
|
+
- Cleaner workflow configuration with single source of truth
|
|
34
31
|
|
|
35
32
|
### π Files Changed
|
|
36
33
|
|
|
37
|
-
-
|
|
38
|
-
- `.
|
|
39
|
-
- `.claude/hooks/speed-manager.sh` - Replaced tongue twisters with simple messages
|
|
40
|
-
- `mcp-server/server.py` - Replaced tongue twisters with simple messages
|
|
41
|
-
- `test/unit/provider-manager.bats` - Fixed 2 failing tests
|
|
42
|
-
- `test/unit/speed-manager.bats` - Updated test assertions
|
|
43
|
-
- `package.json` - Added AGENTVIBES_TEST_MODE to test scripts
|
|
34
|
+
- `src/installer.js` - Added automatic Piper detection and installation (lines 605-659)
|
|
35
|
+
- `.github/workflows/test.yml` - Removed v1 branch references
|
|
44
36
|
|
|
45
37
|
### π User Impact
|
|
46
38
|
|
|
39
|
+
**For New Users Installing with Piper:**
|
|
40
|
+
- **Before**:
|
|
41
|
+
```bash
|
|
42
|
+
npx agentvibes install # Select Piper
|
|
43
|
+
# Then manually run:
|
|
44
|
+
.claude/hooks/piper-installer.sh
|
|
45
|
+
```
|
|
46
|
+
- **After**:
|
|
47
|
+
```bash
|
|
48
|
+
npx agentvibes install # Select Piper
|
|
49
|
+
# Installer automatically asks: "Install Piper now? [Y/n]"
|
|
50
|
+
# β
Done! Fully automated.
|
|
51
|
+
```
|
|
52
|
+
|
|
47
53
|
**For Developers:**
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
54
|
+
- CI workflow now only monitors `master` branch (v1 deprecated)
|
|
55
|
+
- Tests run on all PRs to master with 110 test coverage
|
|
56
|
+
- Cleaner GitHub Actions logs
|
|
51
57
|
|
|
52
|
-
**
|
|
53
|
-
|
|
54
|
-
|
|
58
|
+
**Technical Details:**
|
|
59
|
+
The installer now checks for Piper binary (`piper --version`) after provider selection. If not found, it prompts for installation and executes `piper-installer.sh` which handles:
|
|
60
|
+
1. pipx installation (if needed)
|
|
61
|
+
2. Piper TTS installation via pipx
|
|
62
|
+
3. Optional voice download
|
|
63
|
+
4. PATH configuration
|
|
55
64
|
|
|
56
|
-
###
|
|
65
|
+
### π€ AI Summary
|
|
57
66
|
|
|
58
|
-
-
|
|
59
|
-
- **0 tests failing**
|
|
60
|
-
- **Silent execution** when run via npm test
|
|
67
|
+
This release eliminates manual steps for Piper TTS users by auto-installing the binary during setup, and streamlines the CI workflow by removing deprecated branch references. Installation is now fully hands-off with human approval checkpoints.
|
|
61
68
|
|
|
62
69
|
---
|
|
63
70
|
|
|
64
|
-
|
|
65
|
-
## π¦ v2.0.17 - Major Feature Release (2025-10-17)
|
|
71
|
+
## π¦ v2.0.24 - Performance Optimization (2025-10-21)
|
|
66
72
|
|
|
67
73
|
### π― Overview
|
|
68
74
|
|
|
69
|
-
This release
|
|
70
|
-
|
|
71
|
-
**Release Date:** October 17, 2025
|
|
72
|
-
**Git Tag:** v2.0.17
|
|
73
|
-
**Commits Since v2.0.16:** 75 commits
|
|
74
|
-
|
|
75
|
-
---
|
|
76
|
-
|
|
77
|
-
## π **New Features**
|
|
78
|
-
|
|
79
|
-
### **1. Language Learning Mode (Breakthrough Feature)** π
|
|
80
|
-
|
|
81
|
-
Transform your coding sessions into language learning opportunities with dual-language TTS:
|
|
82
|
-
|
|
83
|
-
```bash
|
|
84
|
-
/agent-vibes:language english # Set your native language
|
|
85
|
-
/agent-vibes:target spanish # Set language to learn
|
|
86
|
-
/agent-vibes:learn # Enable learning mode
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
**Features:**
|
|
90
|
-
- Speaks acknowledgments in BOTH languages (English first, then Spanish)
|
|
91
|
-
- Direct translations with same personality/sentiment
|
|
92
|
-
- Sequential playback (no overlapping audio)
|
|
93
|
-
- Speech rate control (slow down target language for comprehension)
|
|
94
|
-
- Auto-selects appropriate voices based on provider
|
|
95
|
-
- Teacher greetings in target language
|
|
96
|
-
- Replay target language: `/agent-vibes:replay-target`
|
|
97
|
-
|
|
98
|
-
**Supported Languages:** Spanish, French, German, Italian, Portuguese, Chinese, Japanese, Korean, Russian, Arabic, Hindi, and 18+ more
|
|
99
|
-
|
|
100
|
-
**Mixed Provider Support:** Use ElevenLabs for English + Piper for Spanish
|
|
101
|
-
|
|
102
|
-
### **2. MCP Server Integration** π€
|
|
103
|
-
|
|
104
|
-
AgentVibes now works with **Claude Desktop AND Claude Code** via the Model Context Protocol (MCP):
|
|
105
|
-
|
|
106
|
-
```json
|
|
107
|
-
{
|
|
108
|
-
"mcpServers": {
|
|
109
|
-
"agentvibes": {
|
|
110
|
-
"command": "npx",
|
|
111
|
-
"args": ["-y", "agentvibes@latest", "agentvibes-mcp-server"]
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
```
|
|
116
|
-
|
|
117
|
-
**Benefits:**
|
|
118
|
-
- Natural language control: "Switch to pirate personality"
|
|
119
|
-
- Works in Claude Desktop, Claude Code (with MCP), and Warp
|
|
120
|
-
- No need to memorize slash commands
|
|
121
|
-
- Smart settings management (Claude Code: project-local, Claude Desktop: global)
|
|
122
|
-
- Cross-platform compatibility (Windows/WSL support)
|
|
123
|
-
|
|
124
|
-
### **3. Unified Speech Speed Control** β‘
|
|
125
|
-
|
|
126
|
-
Control playback speed across BOTH TTS providers with intuitive syntax:
|
|
127
|
-
|
|
128
|
-
```bash
|
|
129
|
-
/agent-vibes:set-speed 0.5x # Slower (half speed)
|
|
130
|
-
/agent-vibes:set-speed 1x # Normal speed
|
|
131
|
-
/agent-vibes:set-speed 2x # Faster (double speed)
|
|
132
|
-
/agent-vibes:set-speed 3x # Very fast (triple speed)
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
**Features:**
|
|
136
|
-
- Works with ElevenLabs AND Piper
|
|
137
|
-
- Separate controls for main and target language
|
|
138
|
-
- Automatic tongue twister demo after speed change
|
|
139
|
-
- Intuitive scale: **0.5x=slower, 1x=normal, 2x=faster, 3x=very fast**
|
|
140
|
-
- Auto-speaks confirmation in new speed
|
|
141
|
-
|
|
142
|
-
**Default for Language Learning:**
|
|
143
|
-
- Main voice: 1.0x (normal speed)
|
|
144
|
-
- Target language: 0.5x (slower for better comprehension)
|
|
145
|
-
|
|
146
|
-
### **4. SSH Audio Optimization** π
|
|
147
|
-
|
|
148
|
-
Perfect audio quality over remote SSH connections:
|
|
149
|
-
|
|
150
|
-
**Auto-detects:**
|
|
151
|
-
- VS Code Remote SSH sessions
|
|
152
|
-
- Regular SSH connections
|
|
153
|
-
- Cloud dev environments
|
|
154
|
-
|
|
155
|
-
**Automatic conversion:**
|
|
156
|
-
- 44.1kHz mono MP3 β 48kHz stereo WAV
|
|
157
|
-
- Prevents static and audio artifacts
|
|
158
|
-
- No manual configuration needed
|
|
159
|
-
|
|
160
|
-
### **5. Enhanced Multi-Provider Support** ποΈ
|
|
161
|
-
|
|
162
|
-
Seamless switching between TTS providers:
|
|
163
|
-
|
|
164
|
-
```bash
|
|
165
|
-
/agent-vibes:provider switch elevenlabs
|
|
166
|
-
/agent-vibes:provider switch piper
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
**Improvements:**
|
|
170
|
-
- Auto-resets voice to default when switching providers
|
|
171
|
-
- Auto-speaks confirmation in new provider's voice
|
|
172
|
-
- Non-interactive mode for MCP contexts
|
|
173
|
-
- Voice compatibility checks
|
|
174
|
-
- Mixed provider support (ElevenLabs + Piper)
|
|
175
|
-
|
|
176
|
-
---
|
|
177
|
-
|
|
178
|
-
## π **Bug Fixes**
|
|
75
|
+
This patch release delivers a **significant performance optimization** to the output style, reducing CLI overhead by consolidating multiple bash commands into a single efficient call. This makes TTS acknowledgments and completions faster and produces cleaner output.
|
|
179
76
|
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
- Fixed ElevenLabs preview static (force MP3 output format)
|
|
184
|
-
- Fixed overlapping audio in learning mode (sequential playback with locks)
|
|
185
|
-
- Fixed SSH audio tunnel format conversion (48kHz stereo)
|
|
186
|
-
|
|
187
|
-
### **Voice & Provider Management**
|
|
188
|
-
- Fixed voice/provider mismatches in output style
|
|
189
|
-
- Fixed voice compatibility when switching providers
|
|
190
|
-
- Fixed target voice not updating when switching providers
|
|
191
|
-
- Fixed MCP voice model compatibility (provider-aware voice selection)
|
|
192
|
-
- Fixed BMAD plugin with Piper provider (voice mapping)
|
|
193
|
-
|
|
194
|
-
### **Speed & Performance**
|
|
195
|
-
- Fixed speed scale to match intuition (higher values = faster)
|
|
196
|
-
- Fixed ElevenLabs API speed range (0.7-1.2, prevents clicking)
|
|
197
|
-
- Fixed speech rate persistence across sessions
|
|
198
|
-
|
|
199
|
-
### **MCP & Cross-Platform**
|
|
200
|
-
- Fixed Windows npx execution (Node.js launcher instead of bash)
|
|
201
|
-
- Fixed MCP non-interactive detection for provider switching
|
|
202
|
-
- Fixed project vs global directory detection in Claude Desktop
|
|
203
|
-
- Fixed environment variable propagation from Windows to WSL
|
|
204
|
-
|
|
205
|
-
### **JSON & API**
|
|
206
|
-
- Fixed JSON escaping in ElevenLabs API calls (special characters)
|
|
207
|
-
- Fixed agentvibes-mcp-server subcommand routing
|
|
208
|
-
|
|
209
|
-
---
|
|
210
|
-
|
|
211
|
-
## π **Documentation**
|
|
212
|
-
|
|
213
|
-
### **Restructured Documentation**
|
|
214
|
-
Created **10 separate documentation files** for better navigation:
|
|
215
|
-
|
|
216
|
-
- `docs/quick-start.md` - Installation guide
|
|
217
|
-
- `docs/language-learning-mode.md` - Full language learning tutorial
|
|
218
|
-
- `docs/mcp-setup.md` - Claude Desktop/Warp/Code setup
|
|
219
|
-
- `docs/providers.md` - Multi-provider support
|
|
220
|
-
- `docs/commands.md` - All slash commands reference
|
|
221
|
-
- `docs/personalities.md` - Personalities vs sentiments
|
|
222
|
-
- `docs/voice-library.md` - Complete voice catalog
|
|
223
|
-
- `docs/bmad-plugin.md` - BMAD integration
|
|
224
|
-
- `docs/advanced-features.md` - Power user features
|
|
225
|
-
- `docs/troubleshooting.md` - Common issues
|
|
226
|
-
|
|
227
|
-
### **Windows Setup Guide**
|
|
228
|
-
Complete rewrite of `mcp-server/WINDOWS_SETUP.md`:
|
|
229
|
-
|
|
230
|
-
- NPX-based installation (no git clone needed)
|
|
231
|
-
- Windows environment variables (%USERNAME%)
|
|
232
|
-
- Three-column instruction tables (Desktop | Code | Code with MCP)
|
|
233
|
-
- Piper (free) recommended over ElevenLabs (paid)
|
|
234
|
-
- WSL setup for Piper
|
|
235
|
-
- Clear prerequisite section
|
|
236
|
-
|
|
237
|
-
### **README Improvements**
|
|
238
|
-
- Reduced from 1,285 lines to 502 lines (60.9% reduction)
|
|
239
|
-
- Modular structure with clear navigation
|
|
240
|
-
- Language Learning Mode prominently featured
|
|
241
|
-
- Updated tagline: "Finally! Your agents can talk back!"
|
|
242
|
-
- All TOC links fixed (removed emojis for GitHub compatibility)
|
|
243
|
-
|
|
244
|
-
---
|
|
245
|
-
|
|
246
|
-
## ποΈ **Architecture & Infrastructure**
|
|
247
|
-
|
|
248
|
-
### **New Scripts & Tools**
|
|
249
|
-
- `speed-manager.sh` - Unified speed control across providers
|
|
250
|
-
- `learn-manager.sh` - Language learning state management
|
|
251
|
-
- `replay-target-audio.sh` - Replay target language audio
|
|
252
|
-
- `bin/mcp-server.js` - Cross-platform MCP launcher
|
|
253
|
-
- `bin/mcp-server.sh` - Unix MCP launcher
|
|
254
|
-
- `install-deps.js` - Automatic Python dependency installer
|
|
255
|
-
|
|
256
|
-
### **Configuration Files**
|
|
257
|
-
- `.claude/tts-learn-mode.txt` - Learning mode state
|
|
258
|
-
- `.claude/tts-language.txt` - Main language
|
|
259
|
-
- `.claude/tts-target-language.txt` - Target language
|
|
260
|
-
- `.claude/tts-target-voice.txt` - Target language voice
|
|
261
|
-
- `.claude/tts-speed.txt` - Main voice speed
|
|
262
|
-
- `.claude/tts-target-speed.txt` - Target voice speed
|
|
263
|
-
- `.claude/last-target-audio.txt` - Last target audio path
|
|
264
|
-
|
|
265
|
-
**Note:** Claude Code supports project-local settings (`.claude/` in project directory) with global fallback (`~/.claude/`). Claude Desktop uses global settings only.
|
|
266
|
-
|
|
267
|
-
### **Testing**
|
|
268
|
-
- Added comprehensive test coverage (110 tests total)
|
|
269
|
-
- New test suites: `speed-manager.bats`, `provider-manager.bats`
|
|
270
|
-
- Fixed architectural test failures (project-local config)
|
|
271
|
-
- All 110/110 tests passing β
|
|
272
|
-
|
|
273
|
-
---
|
|
274
|
-
|
|
275
|
-
## π¦ **Installation & Distribution**
|
|
276
|
-
|
|
277
|
-
### **NPM Package Updates**
|
|
278
|
-
- New subcommand: `npx agentvibes agentvibes-mcp-server`
|
|
279
|
-
- Cross-platform launcher (Node.js + bash)
|
|
280
|
-
- Automatic dependency installation
|
|
281
|
-
- Windows/WSL compatibility
|
|
282
|
-
|
|
283
|
-
### **File Changes**
|
|
284
|
-
- **72 files changed**
|
|
285
|
-
- **8,652 insertions**, **820 deletions**
|
|
286
|
-
- New directories: `docs/`, `mcp-server/`, `scripts/`
|
|
287
|
-
|
|
288
|
-
---
|
|
289
|
-
|
|
290
|
-
## π¨ **User Experience**
|
|
291
|
-
|
|
292
|
-
### **Output Style Improvements**
|
|
293
|
-
- Language Learning Mode protocol in output style
|
|
294
|
-
- Voice selection now respects active provider
|
|
295
|
-
- Auto-detects MCP vs interactive contexts
|
|
296
|
-
- Sequential playback prevents audio overlap
|
|
297
|
-
|
|
298
|
-
### **BMAD Plugin**
|
|
299
|
-
- Provider-aware voice mapping
|
|
300
|
-
- ElevenLabs β Piper voice translation
|
|
301
|
-
- Works seamlessly with both providers
|
|
302
|
-
|
|
303
|
-
---
|
|
304
|
-
|
|
305
|
-
## π§ **Breaking Changes**
|
|
306
|
-
|
|
307
|
-
### **None** - Fully backward compatible!
|
|
308
|
-
|
|
309
|
-
- Legacy config files automatically migrated
|
|
310
|
-
- Old commands still work
|
|
311
|
-
- Graceful fallbacks for missing settings
|
|
312
|
-
- Claude Code: Project-local settings (`.claude/`) take precedence over global (`~/.claude/`)
|
|
313
|
-
|
|
314
|
-
---
|
|
315
|
-
|
|
316
|
-
## π **Statistics**
|
|
317
|
-
|
|
318
|
-
- **Commits:** 75 commits since v2.0.16
|
|
319
|
-
- **Contributors:** Paul Preibisch with Claude AI
|
|
320
|
-
- **Lines of Code:** +8,652 insertions, -820 deletions
|
|
321
|
-
- **New Features:** 5 major features
|
|
322
|
-
- **Bug Fixes:** 20+ fixes
|
|
323
|
-
- **Documentation Files:** 10+ new docs
|
|
324
|
-
- **Test Coverage:** 110 tests (79 new tests)
|
|
325
|
-
|
|
326
|
-
---
|
|
327
|
-
|
|
328
|
-
## π¦ **Upgrade Instructions**
|
|
329
|
-
|
|
330
|
-
### For NPM Users:
|
|
331
|
-
```bash
|
|
332
|
-
npm update -g agentvibes
|
|
333
|
-
```
|
|
334
|
-
|
|
335
|
-
### For NPX Users:
|
|
336
|
-
```bash
|
|
337
|
-
# No action needed - npx always uses latest
|
|
338
|
-
npx agentvibes install
|
|
339
|
-
```
|
|
340
|
-
|
|
341
|
-
### For Claude Desktop MCP:
|
|
342
|
-
```bash
|
|
343
|
-
# Restart Claude Desktop to auto-update
|
|
344
|
-
# Or manually update config to use @latest
|
|
345
|
-
```
|
|
346
|
-
|
|
347
|
-
---
|
|
348
|
-
|
|
349
|
-
## π **Links**
|
|
350
|
-
|
|
351
|
-
- **Website:** https://agentvibes.org
|
|
352
|
-
- **Repository:** https://github.com/paulpreibisch/AgentVibes
|
|
353
|
-
- **Documentation:** https://github.com/paulpreibisch/AgentVibes/tree/master/docs
|
|
354
|
-
- **Issues:** https://github.com/paulpreibisch/AgentVibes/issues
|
|
355
|
-
- **License:** Apache-2.0
|
|
77
|
+
**Release Date:** October 21, 2025
|
|
78
|
+
**Git Tag:** v2.0.24
|
|
79
|
+
**Impact:** Performance improvement, cleaner CLI output
|
|
356
80
|
|
|
357
81
|
---
|
|
358
82
|
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
Please give a like to: [**AgentVibes: Your AI Coding Assistant Can Finally Talk Back!**](https://www.linkedin.com/pulse/agent-vibes-your-ai-coding-assistant-can-finally-talk-paul-preibisch-abhkc/)
|
|
362
|
-
|
|
363
|
-
Learn how AgentVibes transforms your AI coding experience with professional text-to-speech, language learning mode, and personality-driven voice interactions.
|
|
364
|
-
|
|
365
|
-
---
|
|
366
|
-
|
|
367
|
-
**Co-created by Paul Preibisch with Claude AI**
|
|
368
|
-
**Copyright Β© 2025 Paul Preibisch**
|
|
369
|
-
|
|
370
|
-
---
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
### π€ AI Summary
|
|
374
|
-
|
|
375
|
-
This patch release adds comprehensive documentation and automated setup scripts for running AgentVibes TTS on remote servers with local audio playback. Users can now easily configure PulseAudio to tunnel audio from their remote Linux servers (cloud VPS, home servers) to their local Windows speakers via SSH. Perfect for remote development workflows with VS Code Remote-SSH, this release includes interactive setup scripts for both Linux and Windows, complete with backups, validation, and troubleshooting guides.
|
|
376
|
-
|
|
377
|
-
### β¨ New Features
|
|
378
|
-
|
|
379
|
-
#### π Remote Audio Setup Documentation
|
|
380
|
-
- **Comprehensive guide** - Complete docs at `docs/remote-audio-setup.md`
|
|
381
|
-
- **Architecture explained** - Detailed breakdown: Server β SSH Tunnel β WSL β Windows Speakers
|
|
382
|
-
- **Manual & automatic setup** - Choose your path: scripts or manual configuration
|
|
383
|
-
- **Troubleshooting section** - Common issues with solutions
|
|
384
|
-
- **VS Code integration** - Works seamlessly with Remote-SSH extension
|
|
385
|
-
- **Security considerations** - Explains encrypted tunneling and port configuration
|
|
386
|
-
|
|
387
|
-
**What's Covered:**
|
|
388
|
-
```
|
|
389
|
-
- Prerequisites and system requirements
|
|
390
|
-
- Step-by-step manual setup (Linux + Windows)
|
|
391
|
-
- Automated scripts (see below)
|
|
392
|
-
- Port configuration (4713, 14713)
|
|
393
|
-
- Verification commands and testing
|
|
394
|
-
- Common issues and fixes
|
|
395
|
-
- Multiple server configurations
|
|
396
|
-
```
|
|
397
|
-
|
|
398
|
-
#### π§ Linux Setup Script (`setup-remote-audio.sh`)
|
|
399
|
-
- **Automated PulseAudio configuration** - Sets up network support automatically
|
|
400
|
-
- **Shell detection** - Auto-detects bash/zsh and configures appropriately
|
|
401
|
-
- **Environment variables** - Adds `PULSE_SERVER=tcp:localhost:14713`
|
|
402
|
-
- **Automatic backups** - Creates timestamped backups before any changes
|
|
403
|
-
- **Colorful CLI** - Beautiful progress indicators and clear messaging
|
|
404
|
-
- **Verification steps** - Shows commands to test audio after setup
|
|
405
|
-
- **Safe execution** - Validates prerequisites before making changes
|
|
83
|
+
### β‘ Performance Improvements
|
|
406
84
|
|
|
407
|
-
**
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
./setup-remote-audio.sh
|
|
412
|
-
```
|
|
85
|
+
- **Optimized Settings Check**: Reduced three separate bash commands (checking language, sentiment, and personality settings) into one efficient `eval` command
|
|
86
|
+
- **Before**: 3 separate `cat` commands for each setting file
|
|
87
|
+
- **After**: Single compound command that checks all three settings at once
|
|
88
|
+
- **Result**: Faster acknowledgment/completion responses, cleaner CLI output
|
|
413
89
|
|
|
414
|
-
|
|
415
|
-
- **SSH tunnel configuration** - Automatically adds RemoteForward to SSH config
|
|
416
|
-
- **WSL validation** - Checks for WSL2 with GUI support (WSLg)
|
|
417
|
-
- **OpenSSH detection** - Verifies OpenSSH Client is installed
|
|
418
|
-
- **Host alias creation** - Generates friendly SSH host names
|
|
419
|
-
- **Backup and safety** - Creates timestamped backups of SSH config
|
|
420
|
-
- **Connection testing** - Optional SSH connection test after setup
|
|
421
|
-
- **Parameter support** - Flexible options for users and ports
|
|
422
|
-
|
|
423
|
-
**Usage:**
|
|
424
|
-
```powershell
|
|
425
|
-
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/paulpreibisch/AgentVibes/master/scripts/setup-windows-audio.ps1" -OutFile "setup-windows-audio.ps1"
|
|
426
|
-
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
|
|
427
|
-
.\setup-windows-audio.ps1 -RemoteHost "192.168.1.100"
|
|
428
|
-
```
|
|
429
|
-
|
|
430
|
-
**Parameters:**
|
|
431
|
-
- `-RemoteHost` (required) - Server hostname or IP
|
|
432
|
-
- `-RemoteUser` (optional) - SSH username (defaults to current user)
|
|
433
|
-
- `-TunnelPort` (optional) - Audio tunnel port (default: 14713)
|
|
434
|
-
- `-SSHConfigPath` (optional) - Custom SSH config location
|
|
435
|
-
|
|
436
|
-
#### π Scripts Documentation
|
|
437
|
-
- **New scripts README** - Complete documentation at `scripts/README.md`
|
|
438
|
-
- **Usage examples** - Shows common workflows and scenarios
|
|
439
|
-
- **Troubleshooting guide** - Script-specific issues and solutions
|
|
440
|
-
- **Setup order** - Clear steps: Windows first, then Linux
|
|
441
|
-
- **Common issues** - Audio doesn't play, connection refused, etc.
|
|
442
|
-
|
|
443
|
-
### π Documentation Updates
|
|
444
|
-
|
|
445
|
-
#### Main README Enhancements
|
|
446
|
-
- **Remote Audio Setup section** - New major section with quick setup
|
|
447
|
-
- **Table of Contents update** - Added π Remote Audio Setup entry
|
|
448
|
-
- **Quick setup commands** - Copy-paste ready PowerShell and bash commands
|
|
449
|
-
- **Architecture visualization** - Clear diagram of audio flow
|
|
450
|
-
- **Resource links** - Links to detailed docs and script READMEs
|
|
451
|
-
|
|
452
|
-
**New README Section:**
|
|
453
|
-
```markdown
|
|
454
|
-
## π Remote Audio Setup
|
|
455
|
-
|
|
456
|
-
**Running AgentVibes on a remote server but want to hear TTS on your local machine?**
|
|
457
|
-
|
|
458
|
-
Perfect for:
|
|
459
|
-
- Remote development on cloud/VPS servers
|
|
460
|
-
- Home server with local audio playback
|
|
461
|
-
- VS Code Remote-SSH workflows
|
|
462
|
-
- Any SSH-based remote development
|
|
463
|
-
|
|
464
|
-
[Complete documentation, scripts, and setup guide included]
|
|
465
|
-
```
|
|
466
|
-
|
|
467
|
-
### π οΈ What Gets Configured
|
|
468
|
-
|
|
469
|
-
#### On Linux Server:
|
|
470
|
-
- **PulseAudio config** - `~/.config/pulse/default.pa` with network support
|
|
471
|
-
- **Environment variable** - `PULSE_SERVER=tcp:localhost:14713` in shell config
|
|
472
|
-
- **Automatic backups** - Preserves your existing configurations
|
|
473
|
-
- **Shell integration** - Works with bash or zsh automatically
|
|
474
|
-
|
|
475
|
-
#### On Windows Client:
|
|
476
|
-
- **SSH tunnel** - `RemoteForward 14713 localhost:14713` in SSH config
|
|
477
|
-
- **WSL compatibility** - Leverages WSLg for audio routing
|
|
478
|
-
- **Host configuration** - Clean SSH config entries with keep-alive
|
|
479
|
-
- **Backup safety** - Timestamps existing configs before changes
|
|
480
|
-
|
|
481
|
-
### π― Use Cases
|
|
482
|
-
|
|
483
|
-
**Perfect for:**
|
|
484
|
-
1. **Cloud Development** - Run AgentVibes on AWS/GCP/Azure, hear TTS locally
|
|
485
|
-
2. **Home Lab Servers** - Powerful remote server, convenient local audio
|
|
486
|
-
3. **VS Code Remote-SSH** - Seamless integration with Remote-SSH extension
|
|
487
|
-
4. **Team Environments** - Shared remote development with personal audio
|
|
488
|
-
5. **Resource-heavy Tasks** - Use remote CPU/RAM, enjoy local audio feedback
|
|
489
|
-
|
|
490
|
-
### π Files Added
|
|
491
|
-
|
|
492
|
-
**Documentation (2 files):**
|
|
493
|
-
- `docs/remote-audio-setup.md` (265 lines) - Complete setup guide
|
|
494
|
-
- `scripts/README.md` (117 lines) - Scripts documentation
|
|
495
|
-
|
|
496
|
-
**Setup Scripts (2 files):**
|
|
497
|
-
- `scripts/setup-remote-audio.sh` (214 lines) - Linux automation
|
|
498
|
-
- `scripts/setup-windows-audio.ps1` (274 lines) - Windows automation
|
|
499
|
-
|
|
500
|
-
**Main README:**
|
|
501
|
-
- Updated `README.md` (61 lines added) - Remote audio section
|
|
502
|
-
|
|
503
|
-
**Total Changes:** 931 insertions across 5 files
|
|
504
|
-
|
|
505
|
-
### π§ Technical Architecture
|
|
506
|
-
|
|
507
|
-
```
|
|
508
|
-
βββββββββββββββββββ
|
|
509
|
-
β Remote Linux β
|
|
510
|
-
β Server β
|
|
511
|
-
β β
|
|
512
|
-
β PulseAudio β
|
|
513
|
-
β Port 4713 β
|
|
514
|
-
ββββββββββ¬βββββββββ
|
|
515
|
-
β
|
|
516
|
-
β SSH Tunnel
|
|
517
|
-
β (RemoteForward 14713:localhost:14713)
|
|
518
|
-
β
|
|
519
|
-
ββββββββββΌβββββββββ
|
|
520
|
-
β Windows β
|
|
521
|
-
β Client β
|
|
522
|
-
β β
|
|
523
|
-
β WSL β Speakers β
|
|
524
|
-
βββββββββββββββββββ
|
|
525
|
-
```
|
|
526
|
-
|
|
527
|
-
**Key Components:**
|
|
528
|
-
- **Port 4713** - Standard PulseAudio TCP port on remote
|
|
529
|
-
- **Port 14713** - SSH tunnel port for forwarding
|
|
530
|
-
- **WSLg** - Windows Subsystem for Linux with GUI support
|
|
531
|
-
- **RemoteForward** - SSH reverse tunnel (server β client)
|
|
532
|
-
|
|
533
|
-
### π‘ Usage Examples
|
|
534
|
-
|
|
535
|
-
#### Quick Setup
|
|
536
|
-
```bash
|
|
537
|
-
# 1. On Windows (configure SSH tunnel)
|
|
538
|
-
.\setup-windows-audio.ps1 -RemoteHost "myserver.com"
|
|
539
|
-
|
|
540
|
-
# 2. On Linux server (configure PulseAudio)
|
|
541
|
-
./setup-remote-audio.sh
|
|
542
|
-
|
|
543
|
-
# 3. Reconnect via SSH
|
|
544
|
-
ssh myserver.com
|
|
545
|
-
|
|
546
|
-
# 4. Test audio
|
|
547
|
-
speaker-test -t sine -f 1000 -l 1
|
|
548
|
-
```
|
|
549
|
-
|
|
550
|
-
#### VS Code Remote-SSH
|
|
551
|
-
```bash
|
|
552
|
-
# Tunnel is automatically established by VS Code
|
|
553
|
-
# No manual SSH connection needed!
|
|
554
|
-
1. Open VS Code
|
|
555
|
-
2. Connect to remote host
|
|
556
|
-
3. Audio just works π΅
|
|
557
|
-
```
|
|
558
|
-
|
|
559
|
-
#### Verification Commands
|
|
560
|
-
```bash
|
|
561
|
-
# Check environment variable
|
|
562
|
-
echo $PULSE_SERVER
|
|
563
|
-
# Should show: tcp:localhost:14713
|
|
564
|
-
|
|
565
|
-
# Verify tunnel
|
|
566
|
-
ss -tlnp | grep :14713
|
|
567
|
-
# Should show listening socket
|
|
90
|
+
### π Files Changed
|
|
568
91
|
|
|
569
|
-
|
|
570
|
-
pactl info
|
|
571
|
-
# Should show server: tcp:localhost:14713
|
|
572
|
-
```
|
|
92
|
+
- `.claude/output-styles/agent-vibes.md` - Optimized settings check from 3 commands to 1
|
|
573
93
|
|
|
574
|
-
###
|
|
94
|
+
### π User Impact
|
|
575
95
|
|
|
576
96
|
**For All Users:**
|
|
577
|
-
-
|
|
578
|
-
-
|
|
579
|
-
-
|
|
580
|
-
- Remote audio setup is optional and opt-in
|
|
581
|
-
|
|
582
|
-
**To Use Remote Audio:**
|
|
583
|
-
1. Follow the guide at `docs/remote-audio-setup.md`
|
|
584
|
-
2. Run automated scripts or configure manually
|
|
585
|
-
3. Reconnect via SSH and test audio
|
|
586
|
-
|
|
587
|
-
**Requirements:**
|
|
588
|
-
- Remote Linux server with PulseAudio
|
|
589
|
-
- Local Windows machine with WSL2
|
|
590
|
-
- SSH access to remote server
|
|
591
|
-
- Internet connection for initial setup
|
|
592
|
-
|
|
593
|
-
### π Credits
|
|
594
|
-
|
|
595
|
-
This feature was developed based on a working remote audio configuration. Special thanks to the community members who shared their setups and helped test the automation scripts!
|
|
596
|
-
|
|
597
|
-
### π Additional Resources
|
|
598
|
-
|
|
599
|
-
- [Remote Audio Setup Guide](docs/remote-audio-setup.md) - Complete documentation
|
|
600
|
-
- [Scripts README](scripts/README.md) - Script usage and troubleshooting
|
|
601
|
-
- [AgentVibes Website](https://agentvibes.org) - Main documentation
|
|
602
|
-
|
|
603
|
-
---
|
|
604
|
-
|
|
605
|
-
## π¦ v2.0.15 - BMAD Plugin Auto-Enable Fix (2025-10-12)
|
|
606
|
-
|
|
607
|
-
### π€ AI Summary
|
|
608
|
-
|
|
609
|
-
This patch release fixes a critical bug where the BMAD voice plugin was not automatically enabled during installation, even when BMAD was detected. Users installing AgentVibes with BMAD present would find plugin files created but the plugin non-functional because the crucial `.claude/activation-instructions` file was missing and the plugin wasn't enabled. Now, when BMAD is detected, the installer automatically creates activation instructions, enables the plugin, and sets everything up to work out of the box.
|
|
610
|
-
|
|
611
|
-
### π Bug Fixes
|
|
612
|
-
|
|
613
|
-
#### BMAD Plugin Auto-Enable Not Working
|
|
614
|
-
- **Fixed**: Plugin not enabled when BMAD detected during installation
|
|
615
|
-
- **Fixed**: Missing `.claude/activation-instructions` file prevented BMAD agents from creating context
|
|
616
|
-
- **Root Cause**: Installer created plugin files but never enabled the plugin or created activation instructions
|
|
617
|
-
- **Impact**: BMAD voice integration was non-functional after fresh installs
|
|
618
|
-
- **Solution**: Auto-enable plugin and create activation-instructions when BMAD detected
|
|
619
|
-
|
|
620
|
-
**What Was Broken:**
|
|
621
|
-
```bash
|
|
622
|
-
# Before: Plugin files created but not actually working
|
|
623
|
-
npx agentvibes install # (with BMAD present)
|
|
624
|
-
# β Created .claude/plugins/bmad-voices.md
|
|
625
|
-
# β No .claude/plugins/bmad-voices-enabled.flag (plugin disabled!)
|
|
626
|
-
# β No .claude/activation-instructions (agents don't know what to do!)
|
|
627
|
-
|
|
628
|
-
# Result: BMAD agents don't speak, voice switching doesn't work
|
|
629
|
-
```
|
|
630
|
-
|
|
631
|
-
**After Fix:**
|
|
632
|
-
```bash
|
|
633
|
-
# After: Plugin fully configured and working
|
|
634
|
-
npx agentvibes install # (with BMAD present)
|
|
635
|
-
# β Created .claude/plugins/bmad-voices.md
|
|
636
|
-
# β Created .claude/plugins/bmad-voices-enabled.flag (auto-enabled!)
|
|
637
|
-
# β Created .claude/activation-instructions (agents know what to do!)
|
|
638
|
-
# π€ Auto-enabled BMAD voice plugin
|
|
639
|
-
|
|
640
|
-
# Result: BMAD agents speak automatically with assigned voices!
|
|
641
|
-
```
|
|
642
|
-
|
|
643
|
-
#### Missing Activation Instructions
|
|
644
|
-
- **Fixed**: `.claude/activation-instructions` not created by installer
|
|
645
|
-
- **Fixed**: Manual `/agent-vibes:bmad enable` also didn't create instructions
|
|
646
|
-
- **Impact**: BMAD agents couldn't create `.bmad-agent-context` file
|
|
647
|
-
- **Solution**: Both installer and manual enable now create comprehensive activation instructions
|
|
648
|
-
|
|
649
|
-
**Why This File Matters:**
|
|
650
|
-
|
|
651
|
-
The `.claude/activation-instructions` file tells BMAD agents to:
|
|
652
|
-
1. Create `.bmad-agent-context` file with agent ID when activating
|
|
653
|
-
2. Clean up the context file when exiting
|
|
654
|
-
3. This allows AgentVibes to detect which agent is active and switch voices
|
|
655
|
-
|
|
656
|
-
Without this file, agents never create the context file, so AgentVibes can't detect them and voice switching fails silently.
|
|
657
|
-
|
|
658
|
-
### π Technical Changes
|
|
659
|
-
|
|
660
|
-
**Modified: `src/installer.js`** (Lines 668-743)
|
|
661
|
-
- Added auto-enable logic when BMAD detected
|
|
662
|
-
- Creates `.claude/plugins/bmad-voices-enabled.flag` automatically
|
|
663
|
-
- Creates `.claude/activation-instructions` with full BMAD agent instructions
|
|
664
|
-
- Updates success message to reflect auto-enable status
|
|
665
|
-
- Fixed command examples in BMAD detection box (was `/agent-vibes-bmad`, now `/agent-vibes:bmad`)
|
|
666
|
-
|
|
667
|
-
**Modified: `.claude/hooks/bmad-voice-manager.sh`** (Lines 106-168)
|
|
668
|
-
- Added automatic creation of `.claude/activation-instructions` when enabling
|
|
669
|
-
- Uses heredoc to embed full activation instructions
|
|
670
|
-
- Only creates file if it doesn't exist (preserves customizations)
|
|
671
|
-
- Shows confirmation message when file created
|
|
672
|
-
|
|
673
|
-
**Added: `templates/activation-instructions-bmad.md`**
|
|
674
|
-
- Template file documenting the activation instructions
|
|
675
|
-
- Reference for what gets created by the system
|
|
676
|
-
- Explains why the file is critical for BMAD integration
|
|
677
|
-
|
|
678
|
-
### π― User Impact
|
|
679
|
-
|
|
680
|
-
**Before v2.0.15:**
|
|
681
|
-
- Fresh AgentVibes install with BMAD: Voice integration didn't work
|
|
682
|
-
- Users had to manually debug why BMAD agents weren't speaking
|
|
683
|
-
- Required manual creation of activation-instructions file
|
|
684
|
-
- Plugin appeared "enabled" but wasn't actually functional
|
|
685
|
-
|
|
686
|
-
**After v2.0.15:**
|
|
687
|
-
- Fresh install with BMAD: Everything works immediately
|
|
688
|
-
- BMAD agents speak automatically with assigned voices
|
|
689
|
-
- Voice switching works out of the box
|
|
690
|
-
- No manual configuration needed
|
|
691
|
-
|
|
692
|
-
### π Opt-Out Design
|
|
693
|
-
|
|
694
|
-
**Philosophy: Auto-enable with easy opt-out**
|
|
695
|
-
- If you have BMAD installed, you probably want voice integration
|
|
696
|
-
- Better to work by default than require manual setup
|
|
697
|
-
- Users can easily disable with `/agent-vibes:bmad disable` if unwanted
|
|
97
|
+
- Faster TTS acknowledgments and completions
|
|
98
|
+
- Cleaner CLI output with less visual noise
|
|
99
|
+
- No behavioral changes - all features work exactly the same
|
|
698
100
|
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
**Modified (2 files):**
|
|
702
|
-
- `src/installer.js` (87 lines added, 6 lines removed)
|
|
703
|
-
- `.claude/hooks/bmad-voice-manager.sh` (63 lines added)
|
|
704
|
-
|
|
705
|
-
**Added (1 file):**
|
|
706
|
-
- `templates/activation-instructions-bmad.md` (54 lines)
|
|
707
|
-
|
|
708
|
-
**Total Changes:** 204 insertions, 6 deletions across 3 files
|
|
709
|
-
|
|
710
|
-
### π Migration Notes
|
|
711
|
-
|
|
712
|
-
**For New Users:**
|
|
713
|
-
- No action needed - BMAD plugin auto-enables and works immediately
|
|
714
|
-
- Just run `npx agentvibes install` in directory with BMAD
|
|
715
|
-
|
|
716
|
-
**For Existing Users (v2.0.14 and earlier):**
|
|
717
|
-
|
|
718
|
-
If you previously installed AgentVibes and found BMAD voice integration not working:
|
|
719
|
-
|
|
720
|
-
```bash
|
|
721
|
-
# Update AgentVibes
|
|
722
|
-
/agent-vibes:update
|
|
723
|
-
|
|
724
|
-
# The plugin will auto-enable on next install if BMAD detected
|
|
725
|
-
# Or manually enable:
|
|
726
|
-
/agent-vibes:bmad enable
|
|
727
|
-
```
|
|
728
|
-
|
|
729
|
-
**To Disable BMAD Plugin (if unwanted):**
|
|
730
|
-
```bash
|
|
731
|
-
/agent-vibes:bmad disable
|
|
732
|
-
```
|
|
733
|
-
|
|
734
|
-
### π‘ What Gets Created
|
|
735
|
-
|
|
736
|
-
When BMAD is detected during installation, the system creates:
|
|
737
|
-
|
|
738
|
-
1. **`.claude/plugins/bmad-voices.md`** - Voice-to-agent mappings
|
|
739
|
-
2. **`.claude/plugins/bmad-voices-enabled.flag`** - Enables the plugin
|
|
740
|
-
3. **`.claude/activation-instructions`** - Instructions for BMAD agents
|
|
741
|
-
|
|
742
|
-
**Sample Activation Instructions:**
|
|
743
|
-
```markdown
|
|
744
|
-
## STEP 3.5a: Create BMAD Context File (CRITICAL)
|
|
745
|
-
|
|
746
|
-
**IMMEDIATELY after agent identification, create the context file:**
|
|
747
|
-
|
|
748
|
-
```bash
|
|
749
|
-
echo "$AGENT_ID" > .bmad-agent-context
|
|
750
|
-
```
|
|
751
|
-
|
|
752
|
-
This allows AgentVibes to:
|
|
753
|
-
1. Detect which BMAD agent is active
|
|
754
|
-
2. Look up the correct voice mapping
|
|
755
|
-
3. Automatically speak questions using the agent's assigned voice
|
|
756
|
-
```
|
|
757
|
-
|
|
758
|
-
### π Credits
|
|
759
|
-
|
|
760
|
-
Thanks to the user who reported this issue in the md-presentations directory! This led to discovering that the BMAD plugin setup was incomplete for all fresh installations.
|
|
101
|
+
**Technical Details:**
|
|
102
|
+
The optimization uses bash `eval` to combine three sequential file reads into a single compound operation, reducing the number of bash tool calls visible in the Claude Code CLI from 3 to 1 per acknowledgment/completion.
|
|
761
103
|
|
|
762
104
|
---
|
|
763
105
|
|
|
764
|
-
## π¦ v2.0.
|
|
765
|
-
|
|
766
|
-
### π€ AI Summary
|
|
767
|
-
|
|
768
|
-
This patch release updates the npm package's README to display the correct version numbers. Since v2.0.13 was published before the README was corrected, the npm website displayed outdated version information. This release ensures users see v2.0.14 everywhere.
|
|
769
|
-
|
|
770
|
-
### π Bug Fixes
|
|
771
|
-
|
|
772
|
-
#### npm README Version Display
|
|
773
|
-
- **Fixed**: npm package page now shows correct version (v2.0.14)
|
|
774
|
-
- **Root Cause**: v2.0.13 was published with uncorrected README
|
|
775
|
-
- **Impact**: Users visiting npmjs.com/package/agentvibes now see accurate version info
|
|
776
|
-
- **Solution**: Republish with corrected README
|
|
777
|
-
|
|
778
|
-
### π What Changed
|
|
779
|
-
|
|
780
|
-
**Modified: `README.md`**
|
|
781
|
-
- Author line now shows v2.0.14
|
|
782
|
-
- Latest Release section shows v2.0.14
|
|
106
|
+
## π¦ v2.0.21 - Test Suite & Quality Improvements (2025-10-22)
|
|
783
107
|
|
|
784
|
-
|
|
785
|
-
- Bumped version from 2.0.13 to 2.0.14
|
|
108
|
+
### π― Overview
|
|
786
109
|
|
|
787
|
-
|
|
110
|
+
This patch release focuses on **test reliability** and **user experience improvements**, making the testing process completely silent and replacing distracting tongue twisters with simple test messages.
|
|
788
111
|
|
|
789
|
-
**
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
- All features from v2.0.13 are identical
|
|
112
|
+
**Release Date:** October 22, 2025
|
|
113
|
+
**Git Tag:** v2.0.21
|
|
114
|
+
**NPM tests:** All 110 tests passing β
|
|
793
115
|
|
|
794
116
|
---
|
|
795
117
|
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
### π€ AI Summary
|
|
118
|
+
### β¨ New Features
|
|
799
119
|
|
|
800
|
-
|
|
120
|
+
- **Silent Test Mode**: Tests now run completely silently when `AGENTVIBES_TEST_MODE=true` is set
|
|
801
121
|
|
|
802
122
|
### π Bug Fixes
|
|
803
123
|
|
|
804
|
-
|
|
805
|
-
- **
|
|
806
|
-
-
|
|
807
|
-
-
|
|
124
|
+
- **Fixed provider-manager tests**: Updated 2 failing tests that expected "voice reset to default" but code outputs "voice set to: [voice_name]"
|
|
125
|
+
- **Removed tongue twisters**: Replaced distracting tongue twisters with simple test messages:
|
|
126
|
+
- "Testing speed change"
|
|
127
|
+
- "Speed test in progress"
|
|
128
|
+
- "Checking audio speed"
|
|
129
|
+
- "Speed configuration test"
|
|
130
|
+
- "Audio speed test"
|
|
808
131
|
|
|
809
|
-
|
|
810
|
-
- **Skipped v2.0.11/v2.0.12** - These versions included experimental remote TTS forwarding features
|
|
811
|
-
- **Based on v2.0.10** - This is a clean release from the stable master branch
|
|
812
|
-
- **No breaking changes** - All existing functionality from v2.0.10 is preserved
|
|
132
|
+
### π§ͺ Testing Improvements
|
|
813
133
|
|
|
814
|
-
|
|
134
|
+
- **Test configuration**: `npm test` now automatically sets `AGENTVIBES_TEST_MODE=true` for silent execution
|
|
135
|
+
- **Audio playback control**: Both Piper and ElevenLabs TTS scripts now respect `AGENTVIBES_TEST_MODE` flag
|
|
136
|
+
- **Updated test assertions**: Speed manager tests now check for simple messages instead of tongue twisters
|
|
815
137
|
|
|
816
|
-
|
|
817
|
-
- Updated sed pattern from exact "Release Notes" match to flexible `[^\]]*` pattern
|
|
818
|
-
- Improved pattern to match any title format in release section header
|
|
819
|
-
- Added comment explaining the flexible matching approach
|
|
138
|
+
### π Files Changed
|
|
820
139
|
|
|
821
|
-
|
|
822
|
-
-
|
|
140
|
+
- `.claude/hooks/play-tts-piper.sh` - Added AGENTVIBES_TEST_MODE check
|
|
141
|
+
- `.claude/hooks/play-tts-elevenlabs.sh` - Added AGENTVIBES_TEST_MODE check
|
|
142
|
+
- `.claude/hooks/speed-manager.sh` - Replaced tongue twisters with simple messages
|
|
143
|
+
- `mcp-server/server.py` - Replaced tongue twisters with simple messages
|
|
144
|
+
- `test/unit/provider-manager.bats` - Fixed 2 failing tests
|
|
145
|
+
- `test/unit/speed-manager.bats` - Updated test assertions
|
|
146
|
+
- `package.json` - Added AGENTVIBES_TEST_MODE to test scripts
|
|
823
147
|
|
|
824
|
-
###
|
|
148
|
+
### π User Impact
|
|
825
149
|
|
|
826
|
-
**For
|
|
827
|
-
-
|
|
828
|
-
-
|
|
829
|
-
-
|
|
150
|
+
**For Developers:**
|
|
151
|
+
- Running `npm test` is now completely silent - no more disruptive audio during test runs
|
|
152
|
+
- Clearer test output without tongue twister noise
|
|
153
|
+
- More reliable test suite (all 110 tests passing)
|
|
830
154
|
|
|
831
|
-
**
|
|
832
|
-
-
|
|
833
|
-
-
|
|
155
|
+
**For Users:**
|
|
156
|
+
- Speed changes still announce themselves during normal use
|
|
157
|
+
- Test mode only affects automated testing, not regular usage
|
|
158
|
+
- No changes to normal TTS behavior
|
|
834
159
|
|
|
835
160
|
---
|
|
836
|
-
|
|
837
|
-
## π¦ v2.0.10 - GitHub Star Reminder & Provider Fixes (2025-01-10)
|
|
838
|
-
|
|
839
|
-
### π€ AI Summary
|
|
840
|
-
|
|
841
|
-
This patch release adds a gentle daily GitHub star reminder system and fixes critical bugs in provider switching and output style commands. Users can now be reminded to star the project (once per day, easily disabled), the ElevenLabs provider switching now works correctly with proper language support for 30+ languages, and all documentation now shows the correct output style command `Agent Vibes` instead of the lowercase `agent-vibes`.
|
|
842
|
-
|
|
843
|
-
### β¨ New Features
|
|
844
|
-
|
|
845
|
-
#### Daily GitHub Star Reminder System
|
|
846
|
-
- **Gentle reminders** - Shows once per day when using TTS
|
|
847
|
-
- **Easy to disable** - Run `echo "disabled" > .claude/github-star-reminder.txt`
|
|
848
|
-
- **Non-intrusive** - Beautiful formatted message with clear instructions
|
|
849
|
-
- **Community support** - Encourages users to support the project
|
|
850
|
-
- **Smart tracking** - Date-based reminder system prevents spam
|
|
851
|
-
|
|
852
|
-
**Example Reminder:**
|
|
853
|
-
```
|
|
854
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
855
|
-
β Enjoying AgentVibes?
|
|
856
|
-
|
|
857
|
-
If you find this project helpful, please consider giving us
|
|
858
|
-
a star on GitHub! It helps others discover AgentVibes and
|
|
859
|
-
motivates us to keep improving it.
|
|
860
|
-
|
|
861
|
-
π https://github.com/paulpreibisch/AgentVibes
|
|
862
|
-
|
|
863
|
-
Thank you for your support! π
|
|
864
|
-
|
|
865
|
-
π‘ To disable these reminders, run:
|
|
866
|
-
echo "disabled" > .claude/github-star-reminder.txt
|
|
867
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
868
|
-
```
|
|
869
|
-
|
|
870
|
-
#### Piper TTS Installer Script
|
|
871
|
-
- **Automated installation** - Created `.claude/hooks/piper-installer.sh`
|
|
872
|
-
- **Platform detection** - Checks for WSL/Linux compatibility
|
|
873
|
-
- **Dependency management** - Installs pipx automatically if needed
|
|
874
|
-
- **Voice downloads** - Offers to download voice models after installation
|
|
875
|
-
- **Clear instructions** - Provides next steps and usage guide
|
|
876
|
-
|
|
877
|
-
### π Bug Fixes
|
|
878
|
-
|
|
879
|
-
#### Provider Switching Function Fixes
|
|
880
|
-
- **Fixed function name mismatch** - `get_current_language()` β `get_language_code()` in provider-commands.sh:102
|
|
881
|
-
- **Fixed ElevenLabs language support** - `get_current_language()` β `get_language_code()` in play-tts-elevenlabs.sh:52
|
|
882
|
-
- **Added language validation** - New `is_language_supported()` function validates provider/language compatibility
|
|
883
|
-
- **Implemented language mapping** - Full 30+ language code mapping (spanishβes, frenchβfr, etc.)
|
|
884
|
-
- **Provider switching works** - Users can now switch between ElevenLabs and Piper without errors
|
|
885
|
-
|
|
886
|
-
**What Was Broken:**
|
|
887
|
-
```bash
|
|
888
|
-
# Before: Provider switching failed with "command not found" error
|
|
889
|
-
/agent-vibes:provider switch elevenlabs
|
|
890
|
-
# .claude/hooks/provider-commands.sh: line 102: get_current_language: command not found
|
|
891
|
-
|
|
892
|
-
# After: Works perfectly
|
|
893
|
-
/agent-vibes:provider switch elevenlabs
|
|
894
|
-
# β Provider switched to: elevenlabs
|
|
895
|
-
```
|
|
896
|
-
|
|
897
|
-
#### Output Style Command Correction
|
|
898
|
-
- **Fixed installer** - Updated `src/installer.js` (2 locations)
|
|
899
|
-
- **Fixed hooks** - Updated check-output-style.sh, personality-manager.sh, voice-manager.sh
|
|
900
|
-
- **Correct command** - Changed `/output-style agent-vibes` β `/output-style Agent Vibes`
|
|
901
|
-
- **Consistent docs** - All documentation now shows the correct command
|
|
902
|
-
|
|
903
|
-
**Why This Matters:**
|
|
904
|
-
The output style name is case-sensitive in Claude Code. The incorrect lowercase command would fail silently, preventing users from enabling TTS narration.
|
|
905
|
-
|
|
906
|
-
### π§ Technical Changes
|
|
907
|
-
|
|
908
|
-
#### GitHub Star Reminder Implementation
|
|
909
|
-
**New Files:**
|
|
910
|
-
- `.claude/hooks/github-star-reminder.sh` - Main reminder script with disable support
|
|
911
|
-
- `.claude/github-star-reminder.txt` - Tracks last reminder date
|
|
912
|
-
|
|
913
|
-
**Integration:**
|
|
914
|
-
- Added to `play-tts.sh` router (runs before TTS playback)
|
|
915
|
-
- Silent errors (2>/dev/null || true) prevent disruption
|
|
916
|
-
- Project-local or global config support
|
|
917
|
-
|
|
918
|
-
**Disable Options:**
|
|
919
|
-
1. Echo "disabled" to reminder file
|
|
920
|
-
2. Create `.claude/github-star-reminder-disabled.flag`
|
|
921
|
-
3. Create `~/.claude/github-star-reminder-disabled.flag`
|
|
922
|
-
|
|
923
|
-
#### Provider Command Fixes
|
|
924
|
-
**Modified Functions:**
|
|
925
|
-
- `provider-commands.sh`:
|
|
926
|
-
- Added `is_language_supported()` function (lines 15-42)
|
|
927
|
-
- Fixed `get_current_language()` call to `get_language_code()` (line 131)
|
|
928
|
-
|
|
929
|
-
- `play-tts-elevenlabs.sh`:
|
|
930
|
-
- Fixed `get_current_language()` call to `get_language_code()` (line 52)
|
|
931
|
-
- Replaced `get_language_code_for_name()` with full case statement (lines 56-83)
|
|
932
|
-
- Supports all 30+ languages with ISO 639-1 codes
|
|
933
|
-
|
|
934
|
-
**Language Code Mapping:**
|
|
935
|
-
```bash
|
|
936
|
-
case "$CURRENT_LANGUAGE" in
|
|
937
|
-
spanish) LANGUAGE_CODE="es" ;;
|
|
938
|
-
french) LANGUAGE_CODE="fr" ;;
|
|
939
|
-
german) LANGUAGE_CODE="de" ;;
|
|
940
|
-
italian) LANGUAGE_CODE="it" ;;
|
|
941
|
-
# ... 26 more languages
|
|
942
|
-
english|*) LANGUAGE_CODE="en" ;;
|
|
943
|
-
esac
|
|
944
|
-
```
|
|
945
|
-
|
|
946
|
-
#### Output Style Updates
|
|
947
|
-
**Files Modified:**
|
|
948
|
-
- `src/installer.js` - Lines 588, 614
|
|
949
|
-
- `.claude/hooks/check-output-style.sh` - Line 45
|
|
950
|
-
- `.claude/hooks/personality-manager.sh` - Line 197
|
|
951
|
-
- `.claude/hooks/voice-manager.sh` - Line 248
|
|
952
|
-
|
|
953
|
-
All now correctly reference `/output-style Agent Vibes` instead of the incorrect lowercase version.
|
|
954
|
-
|
|
955
|
-
### π― User Impact
|
|
956
|
-
|
|
957
|
-
**Before v2.0.10:**
|
|
958
|
-
- Provider switching failed with cryptic "command not found" errors
|
|
959
|
-
- Users couldn't switch between ElevenLabs and Piper
|
|
960
|
-
- Documentation showed wrong output style command
|
|
961
|
-
- No gentle reminder to support the project
|
|
962
|
-
|
|
963
|
-
**After v2.0.10:**
|
|
964
|
-
- Provider switching works seamlessly
|
|
965
|
-
- Full 30+ language support with ElevenLabs
|
|
966
|
-
- Correct output style command everywhere
|
|
967
|
-
- Optional daily star reminder (easily disabled)
|
|
968
|
-
- Piper TTS installer for easy setup
|
|
969
|
-
|
|
970
|
-
### π Files Changed
|
|
971
|
-
|
|
972
|
-
**Added (3 files):**
|
|
973
|
-
- `.claude/hooks/github-star-reminder.sh` (94 lines)
|
|
974
|
-
- `.claude/hooks/piper-installer.sh` (144 lines)
|
|
975
|
-
- `.claude/github-star-reminder.txt` (1 line)
|
|
976
|
-
|
|
977
|
-
**Modified (8 files):**
|
|
978
|
-
- `.claude/hooks/check-output-style.sh` (4 lines changed)
|
|
979
|
-
- `.claude/hooks/personality-manager.sh` (4 lines changed)
|
|
980
|
-
- `.claude/hooks/play-tts-elevenlabs.sh` (33 lines added)
|
|
981
|
-
- `.claude/hooks/play-tts.sh` (3 lines added)
|
|
982
|
-
- `.claude/hooks/provider-commands.sh` (31 lines added)
|
|
983
|
-
- `.claude/hooks/voice-manager.sh` (4 lines changed)
|
|
984
|
-
- `README.md` (4 lines changed)
|
|
985
|
-
- `src/installer.js` (4 lines changed)
|
|
986
|
-
|
|
987
|
-
**Test Updates (3 files):**
|
|
988
|
-
- `test/helpers/test-helper.bash` (6 lines changed)
|
|
989
|
-
- `test/unit/personality-manager.bats` (20 lines changed)
|
|
990
|
-
- `test/unit/personality-voice-mapping.bats` (21 lines changed)
|
|
991
|
-
- `test/unit/play-tts.bats` (9 lines removed)
|
|
992
|
-
|
|
993
|
-
**Total Changes:** 347 insertions, 35 deletions across 15 files
|
|
994
|
-
|
|
995
|
-
### π Migration Notes
|
|
996
|
-
|
|
997
|
-
**For All Users:**
|
|
998
|
-
- Update via `/agent-vibes:update` or `npx agentvibes update`
|
|
999
|
-
- No breaking changes - all existing settings preserved
|
|
1000
|
-
- GitHub star reminder shows once per day (easily disabled)
|
|
1001
|
-
- Provider switching now works correctly
|
|
1002
|
-
|
|
1003
|
-
**To Disable GitHub Star Reminders:**
|
|
1004
|
-
```bash
|
|
1005
|
-
echo "disabled" > .claude/github-star-reminder.txt
|
|
1006
|
-
```
|
|
1007
|
-
|
|
1008
|
-
**To Install Piper TTS:**
|
|
1009
|
-
```bash
|
|
1010
|
-
.claude/hooks/piper-installer.sh
|
|
1011
|
-
```
|
|
1012
|
-
|
|
1013
|
-
### π‘ What's Next
|
|
1014
|
-
|
|
1015
|
-
The next release (v2.1.0) will focus on:
|
|
1016
|
-
- Enhanced Piper TTS voice management
|
|
1017
|
-
- Improved multilingual voice selection
|
|
1018
|
-
- Additional personality styles
|
|
1019
|
-
- BMAD plugin enhancements
|
|
1020
|
-
|
|
1021
|
-
### π Commits in This Release
|
|
1022
|
-
|
|
1023
|
-
```
|
|
1024
|
-
869b1e8 feat: Add Piper TTS installer and improve GitHub star reminders
|
|
1025
|
-
a9f3b0b feat: Add daily GitHub star reminder system
|
|
1026
|
-
18c389e fix: Update output style command and provider switching functions
|
|
1027
|
-
07ee376 test: Remove flaky API key test
|
|
1028
|
-
5a1a78b test: Skip flaky API key test in CI environments
|
|
1029
|
-
4ff1075 Merge branch 'master' of github.com:paulpreibisch/AgentVibes
|
|
1030
|
-
73d8303 test: Update tests for provider-aware personality system
|
|
1031
|
-
ec21c34 docs: Update README to version v2.0.9 [skip ci]
|
|
1032
|
-
```
|
|
1033
|
-
|
|
1034
|
-
### π Credits
|
|
1035
|
-
|
|
1036
|
-
- Thanks to users who reported the provider switching issues
|
|
1037
|
-
- Special appreciation to the community for supporting AgentVibes
|
|
1038
|
-
- ElevenLabs team for their excellent multilingual API
|
|
1039
|
-
|
|
1040
|
-
---
|
|
1041
|
-
|
|
1042
|
-
π€ Generated with [Claude Code](https://claude.com/claude-code)
|
|
1043
|
-
|
|
1044
|
-
Co-Authored-By: Claude <noreply@anthropic.com>
|
|
1045
|
-
|
|
1046
|
-
---
|
|
1047
|
-
|
|
1048
|
-
# π€ AgentVibes Release Notes
|
|
1049
|
-
|
|
1050
|
-
## π¦ v2.0.9 - Installer Release Notes Fix (2025-01-07)
|
|
1051
|
-
|
|
1052
|
-
### π€ AI Summary
|
|
1053
|
-
|
|
1054
|
-
This patch release fixes a critical bug where the installer and updater commands were showing outdated v1.1.x commit messages instead of the current v2.0.8+ release notes. The commands now correctly read from RELEASE_NOTES.md which is included in the npm package.
|
|
1055
|
-
|
|
1056
|
-
### π Bug Fixes
|
|
1057
|
-
|
|
1058
|
-
#### Installer Release Notes Display
|
|
1059
|
-
- **Fixed install command** - Now reads from RELEASE_NOTES.md instead of git log
|
|
1060
|
-
- **Fixed update command** - Now shows actual v2.0.x release notes instead of v1.1.x commits
|
|
1061
|
-
- **npm package compatibility** - Works correctly when installed via `npx agentvibes` (not a git repo)
|
|
1062
|
-
- **Consistent display** - Both install and update show the same latest release information
|
|
1063
|
-
|
|
1064
|
-
### π― User Impact
|
|
1065
|
-
|
|
1066
|
-
**Before:** Running `npx agentvibes update` showed confusing old commit messages from v1.1.2 era.
|
|
1067
|
-
|
|
1068
|
-
**After:** Both `install` and `update` commands show the correct latest release notes from v2.0.9, including the provider-aware personalities feature and all recent improvements.
|
|
1069
|
-
|
|
1070
|
-
### π Files Changed
|
|
1071
|
-
- Modified: src/installer.js (57 insertions, 31 deletions)
|
|
1072
|
-
|
|
1073
|
-
## π¦ v2.0.8 - Provider-Aware Personalities (2025-01-07)
|
|
1074
|
-
|
|
1075
|
-
### π€ AI Summary
|
|
1076
|
-
|
|
1077
|
-
This patch release makes the personality system fully provider-aware, fixing a critical issue where personality switching would fail to play TTS acknowledgments when using Piper TTS. Users can now seamlessly switch personalities regardless of which TTS provider they're using, with each personality automatically selecting the appropriate voice for the active provider.
|
|
1078
|
-
|
|
1079
|
-
### β¨ New Features
|
|
1080
|
-
|
|
1081
|
-
#### Provider-Aware Personality Voice Switching
|
|
1082
|
-
- **Dual voice mappings** - All 19 personality files now include both `elevenlabs_voice` and `piper_voice` fields
|
|
1083
|
-
- **Automatic voice selection** - Personality manager detects active TTS provider and switches to appropriate voice automatically
|
|
1084
|
-
- **Piper voice mappings**:
|
|
1085
|
-
- Female personalities (sarcastic, flirty, sassy, dramatic) β `en_US-amy-medium`
|
|
1086
|
-
- Male casual (funny, pirate, surfer-dude, crass) β `en_US-joe-medium`
|
|
1087
|
-
- Professional (professional, normal, dry-humor, poetic, zen) β `en_US-lessac-medium`
|
|
1088
|
-
- Energetic (angry, annoying, robot) β `en_US-ryan-high`
|
|
1089
|
-
- Character voices (grandpa, moody) β `en_US-libritts-high`
|
|
1090
|
-
|
|
1091
|
-
#### Output Style Detection Helper
|
|
1092
|
-
- **New check-output-style.sh** - Helper script for future output style detection features
|
|
1093
|
-
- **User-friendly tips** - Voice and personality commands now show helpful tip about enabling agent-vibes output style
|
|
1094
|
-
- **Better UX** - Users are guided to `/output-style agent-vibes` when needed
|
|
1095
|
-
|
|
1096
|
-
### π Bug Fixes
|
|
1097
|
-
|
|
1098
|
-
#### Whoami Command Provider Detection
|
|
1099
|
-
- **Fixed provider display** - `/agent-vibes:whoami` now correctly shows active provider (Piper TTS or ElevenLabs)
|
|
1100
|
-
- **Updated command description** - Metadata now mentions both providers instead of hardcoding "ElevenLabs"
|
|
1101
|
-
- **Accurate information** - Users see "Provider: Piper TTS (Free, Offline)" when using Piper
|
|
1102
|
-
|
|
1103
|
-
#### Voice Manager Provider Support
|
|
1104
|
-
- **Piper model name recognition** - Voice manager now accepts Piper voice model names (e.g., `en_US-amy-medium`)
|
|
1105
|
-
- **Provider-aware validation** - Skips ElevenLabs voice validation when using Piper with Piper model names
|
|
1106
|
-
- **Smart voice ID display** - Only shows ElevenLabs voice ID when actually using ElevenLabs
|
|
1107
|
-
|
|
1108
|
-
#### Piper TTS Voice File Reading
|
|
1109
|
-
- **Fixed voice file lookup** - `play-tts-piper.sh` now correctly reads voice from `.claude/tts-voice.txt`
|
|
1110
|
-
- **Project-local support** - Checks project-local `.claude/tts-voice.txt` first, then global `~/.claude/tts-voice.txt`
|
|
1111
|
-
- **Piper model detection** - Validates voice names contain underscore and dash pattern for Piper models
|
|
1112
|
-
|
|
1113
|
-
### π§ Technical Changes
|
|
1114
|
-
|
|
1115
|
-
#### Personality Manager Improvements
|
|
1116
|
-
- **Provider detection** - Reads `tts-provider.txt` to determine active provider
|
|
1117
|
-
- **Conditional voice selection** - Uses `piper_voice` field when Piper is active, `elevenlabs_voice` for ElevenLabs
|
|
1118
|
-
- **Fallback voice** - Defaults to `en_US-lessac-medium` if no Piper voice specified
|
|
1119
|
-
- **New field support** - Added `piper_voice` field extraction to `get_personality_data` function
|
|
1120
|
-
|
|
1121
|
-
#### Voice Manager Refactoring
|
|
1122
|
-
- **Provider-aware switch logic** - Detects Piper model names and bypasses ElevenLabs validation
|
|
1123
|
-
- **Pattern matching** - Uses `*"_"*"-"*` pattern to identify Piper voice model names
|
|
1124
|
-
- **Cleaner output** - Removed voice ID display for Piper voices since they don't use IDs
|
|
1125
|
-
|
|
1126
|
-
#### Personality File Structure
|
|
1127
|
-
- **Clearer naming** - Renamed `voice:` to `elevenlabs_voice:` in all personality frontmatter
|
|
1128
|
-
- **Dual provider support** - Every personality now has both ElevenLabs and Piper voice assignments
|
|
1129
|
-
- **Consistency** - Standardized field naming across all 19 personality files
|
|
1130
|
-
|
|
1131
|
-
### π― User Impact
|
|
1132
|
-
|
|
1133
|
-
**Before:** Setting a personality like `/agent-vibes:personality sarcastic` while using Piper TTS would try to use an ElevenLabs voice name that doesn't exist in Piper, resulting in no audio playback for acknowledgments/completions.
|
|
1134
|
-
|
|
1135
|
-
**After:** Personality switching seamlessly works with both providers:
|
|
1136
|
-
- Using Piper? Gets `en_US-amy-medium` for sarcastic personality
|
|
1137
|
-
- Using ElevenLabs? Gets "Jessica Anne Bogart" voice
|
|
1138
|
-
- Always hear proper TTS acknowledgments and completions!
|
|
1139
|
-
|
|
1140
|
-
### π Files Changed
|
|
1141
|
-
- Modified: 3 hook scripts (personality-manager.sh, voice-manager.sh, play-tts-piper.sh)
|
|
1142
|
-
- Modified: 19 personality files (all now have dual voice mappings)
|
|
1143
|
-
- Modified: 1 command file (whoami.md)
|
|
1144
|
-
- Added: 1 new helper script (check-output-style.sh)
|
|
1145
|
-
|
|
1146
|
-
**Total Changes:** 247 insertions, 69 deletions across 25 files
|
|
1147
|
-
|
|
1148
|
-
## π¦ v2.0.7 - Bug Fixes & UX Improvements (2025-01-07)
|
|
1149
|
-
|
|
1150
|
-
### π€ AI Summary
|
|
1151
|
-
|
|
1152
|
-
This patch release fixes critical issues with the voice preview command and significantly improves the installer UX. The `/agent-vibes:preview` command now correctly handles provider-specific voices and provides helpful guidance when users try to preview voices from the wrong provider. The installer adds interactive provider selection with automatic API key setup and shell configuration, making first-time setup much smoother.
|
|
1153
|
-
|
|
1154
|
-
### π Bug Fixes
|
|
1155
|
-
|
|
1156
|
-
#### Voice Preview Command Fixed
|
|
1157
|
-
- **Fixed provider-aware voice previewing** - The `/agent-vibes:preview` command now correctly routes through the provider system instead of directly calling ElevenLabs-specific code
|
|
1158
|
-
- **Intelligent voice detection** - Detects when you try to preview an ElevenLabs voice (like "Antoni") while using Piper and provides helpful guidance with alternatives
|
|
1159
|
-
- **Support for specific voice previews** - Can now preview individual Piper voices by model name (e.g., `/agent-vibes:preview en_US-lessac-medium`)
|
|
1160
|
-
- **Fixed language-manager error** - Resolved issue where sourcing `language-manager.sh` would trigger unwanted command handler execution showing "AgentVibes Language Manager" usage text
|
|
1161
|
-
- **Fixed function name mismatch** - Corrected `get_current_language` to `get_language_code` in play-tts-piper.sh
|
|
1162
|
-
|
|
1163
|
-
#### Provider Routing Improvements
|
|
1164
|
-
- **Simplified play-tts.sh router** - Streamlined routing logic for cleaner provider delegation
|
|
1165
|
-
- **Fixed provider routing** - Ensures TTS requests always route to the active provider correctly
|
|
1166
|
-
- **Better error handling** - Clear, helpful messages when voice/provider mismatch occurs
|
|
1167
|
-
|
|
1168
|
-
### β¨ Installer UX Enhancements
|
|
1169
|
-
|
|
1170
|
-
#### Interactive Provider Selection
|
|
1171
|
-
- **Provider choice prompt** - Installer now asks which TTS provider you want (Piper or ElevenLabs) with clear descriptions
|
|
1172
|
-
- **Automatic API key setup** - Detects your shell (bash/zsh) and offers to add ELEVENLABS_API_KEY to shell config file
|
|
1173
|
-
- **Shell detection** - Intelligently detects whether you're using bash or zsh and configures the correct file
|
|
1174
|
-
- **Multiple setup paths** - Choose between automatic shell config, manual setup, or skip API key configuration
|
|
1175
|
-
- **Piper voices path configuration** - Added prompt for custom Piper voice storage location
|
|
1176
|
-
|
|
1177
|
-
#### Clearer Installation Messaging
|
|
1178
|
-
- **Better location explanation** - Clear explanation of why AgentVibes installs in `.claude/` directory (Claude Code auto-discovery)
|
|
1179
|
-
- **Removed confusing prompts** - Simplified installation directory selection to avoid confusion
|
|
1180
|
-
- **Better confirmation flow** - Two-step confirmation: location first, then provider/installation
|
|
1181
|
-
- **Installation summary** - Shows exactly what will be installed before proceeding
|
|
1182
|
-
|
|
1183
|
-
### π§ Update Command Improvements
|
|
1184
|
-
|
|
1185
|
-
- **Fixed version display** - Update command now correctly shows v2.0.x instead of v1.1.3
|
|
1186
|
-
- **Synced with install command** - Both install and update commands now show identical release notes and formatting
|
|
1187
|
-
- **Directory filtering** - Properly filters out directories when counting hooks and personalities
|
|
1188
|
-
- **Consistent formatting** - Matches install command's beautiful display style
|
|
1189
|
-
|
|
1190
|
-
### π οΈ Code Quality
|
|
1191
|
-
|
|
1192
|
-
- **Fixed undefined variable** - Replaced `srcPersonalityFiles` with correct variable name
|
|
1193
|
-
- **Proper scope management** - Moved `piperVoicesPath` declaration to correct scope to avoid undefined errors
|
|
1194
|
-
- **Command handler isolation** - Wrapped language-manager.sh case statement to only run when executed directly, not when sourced
|
|
1195
|
-
|
|
1196
|
-
---
|
|
1197
|
-
|
|
1198
|
-
### π Changes Summary
|
|
1199
|
-
|
|
1200
|
-
**Files Modified:** 8 files
|
|
1201
|
-
- `.claude/commands/agent-vibes/preview.md` - Provider-aware routing
|
|
1202
|
-
- `.claude/hooks/language-manager.sh` - Command handler isolation fix
|
|
1203
|
-
- `.claude/hooks/play-tts-piper.sh` - Function name correction
|
|
1204
|
-
- `.claude/hooks/play-tts.sh` - Simplified router
|
|
1205
|
-
- `.claude/hooks/provider-commands.sh` - Enhanced Piper preview support
|
|
1206
|
-
- `src/installer.js` - Interactive setup & UX improvements
|
|
1207
|
-
- `.claude/commands/release.md` - Documentation update
|
|
1208
|
-
- `.claude/piper-voices-dir.txt` - Storage config
|
|
1209
|
-
|
|
1210
|
-
**Lines Changed:**
|
|
1211
|
-
- Added: 275 lines
|
|
1212
|
-
- Removed: 354 lines
|
|
1213
|
-
- Net: -79 lines (cleaner codebase!)
|
|
1214
|
-
|
|
1215
|
-
---
|
|
1216
|
-
|
|
1217
|
-
### π― What's Improved
|
|
1218
|
-
|
|
1219
|
-
#### For New Users
|
|
1220
|
-
- **Much easier setup** - Interactive prompts guide you through provider selection and API key configuration
|
|
1221
|
-
- **Clearer explanations** - Better messaging about where files are installed and why (Claude Code auto-discovery)
|
|
1222
|
-
- **Faster onboarding** - Shell detection and automatic config file modification save manual steps
|
|
1223
|
-
|
|
1224
|
-
#### For Existing Users
|
|
1225
|
-
- **Preview command works correctly** - No more language-manager errors when previewing voices
|
|
1226
|
-
- **Provider switching is seamless** - Better error messages when voice/provider mismatch occurs
|
|
1227
|
-
- **Update command is accurate** - Shows correct version and release notes instead of old v1.1.3
|
|
1228
|
-
|
|
1229
|
-
#### For Developers
|
|
1230
|
-
- **Cleaner codebase** - Removed 79 lines of unnecessary code
|
|
1231
|
-
- **Better separation of concerns** - Command handlers only run when appropriate
|
|
1232
|
-
- **Improved maintainability** - More consistent code patterns across scripts
|
|
1233
|
-
|
|
1234
|
-
---
|
|
1235
|
-
|
|
1236
|
-
### π§ Technical Details
|
|
1237
|
-
|
|
1238
|
-
#### Provider Preview Architecture
|
|
1239
|
-
The preview command now uses a three-tier detection system:
|
|
1240
|
-
|
|
1241
|
-
1. **ElevenLabs Provider**: Routes to `voice-manager.sh preview` for ElevenLabs voice listing
|
|
1242
|
-
2. **Piper Provider with voice arg**:
|
|
1243
|
-
- Detects Piper voice format (`en_US-*-medium`)
|
|
1244
|
-
- Detects ElevenLabs voice names (shows helpful error with alternatives)
|
|
1245
|
-
- Validates voice model exists before previewing
|
|
1246
|
-
3. **Piper Provider without args**: Shows first 3 sample voices (Lessac, Amy, Joe)
|
|
1247
|
-
|
|
1248
|
-
#### Language Manager Fix
|
|
1249
|
-
The `language-manager.sh` script now checks if it's being executed directly vs sourced:
|
|
1250
|
-
|
|
1251
|
-
```bash
|
|
1252
|
-
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
|
|
1253
|
-
# Only run command handler when executed directly
|
|
1254
|
-
case "${1:-}" in
|
|
1255
|
-
set|get|code|check-voice|best-voice|list)
|
|
1256
|
-
# Handle commands
|
|
1257
|
-
;;
|
|
1258
|
-
esac
|
|
1259
|
-
fi
|
|
1260
|
-
```
|
|
1261
|
-
|
|
1262
|
-
This prevents the case statement from executing when the script is sourced by other scripts like `play-tts-piper.sh`.
|
|
1263
|
-
|
|
1264
|
-
#### Installer Flow
|
|
1265
|
-
```
|
|
1266
|
-
1. Show installation details and location
|
|
1267
|
-
2. Provider selection (Piper/ElevenLabs)
|
|
1268
|
-
ββ If ElevenLabs: Check for API key
|
|
1269
|
-
β ββ Detect shell (bash/zsh)
|
|
1270
|
-
β ββ Offer to add to shell config
|
|
1271
|
-
β ββ Manual setup option
|
|
1272
|
-
β ββ Skip option
|
|
1273
|
-
ββ If Piper: Ask for voice storage path
|
|
1274
|
-
3. Explain .claude/ installation location with reasoning
|
|
1275
|
-
4. Confirm installation location
|
|
1276
|
-
5. Show installation summary
|
|
1277
|
-
6. Final confirmation
|
|
1278
|
-
7. Install all files
|
|
1279
|
-
8. Show success summary with next steps
|
|
1280
|
-
```
|
|
1281
|
-
|
|
1282
|
-
---
|
|
1283
|
-
|
|
1284
|
-
### π‘ Usage Examples
|
|
1285
|
-
|
|
1286
|
-
#### Preview Commands
|
|
1287
|
-
```bash
|
|
1288
|
-
# Preview with Piper (no args = first 3 voices)
|
|
1289
|
-
/agent-vibes:preview
|
|
1290
|
-
|
|
1291
|
-
# Preview specific Piper voice
|
|
1292
|
-
/agent-vibes:preview en_US-lessac-medium
|
|
1293
|
-
|
|
1294
|
-
# Try to preview ElevenLabs voice while using Piper
|
|
1295
|
-
/agent-vibes:preview Antoni
|
|
1296
|
-
# β 'Antoni' appears to be an ElevenLabs voice
|
|
1297
|
-
# You're currently using Piper TTS (free provider).
|
|
1298
|
-
# Options:
|
|
1299
|
-
# 1. Run /agent-vibes:list to see available Piper voices
|
|
1300
|
-
# 2. Switch to ElevenLabs: /agent-vibes:provider switch elevenlabs
|
|
1301
|
-
```
|
|
1302
|
-
|
|
1303
|
-
#### Installer Provider Selection
|
|
1304
|
-
```bash
|
|
1305
|
-
npx agentvibes install
|
|
1306
|
-
|
|
1307
|
-
# π Choose Your TTS Provider:
|
|
1308
|
-
# ? Which TTS provider would you like to use?
|
|
1309
|
-
# π Piper TTS (Free, Offline) - 50+ neural voices, no API key needed
|
|
1310
|
-
# π€ ElevenLabs (Premium) - 150+ AI voices, requires API key
|
|
1311
|
-
```
|
|
1312
|
-
|
|
1313
|
-
---
|
|
1314
|
-
|
|
1315
|
-
### π¦ Upgrade Notes
|
|
1316
|
-
|
|
1317
|
-
**From v2.0.6:**
|
|
1318
|
-
```bash
|
|
1319
|
-
npm update -g agentvibes
|
|
1320
|
-
# or
|
|
1321
|
-
/agent-vibes:update
|
|
1322
|
-
```
|
|
1323
|
-
|
|
1324
|
-
**No breaking changes** - This is a pure bug fix and UX improvement release. All existing configurations, voices, personalities, and settings are preserved.
|
|
1325
|
-
|
|
1326
|
-
---
|
|
1327
|
-
|
|
1328
|
-
### π Credits
|
|
1329
|
-
|
|
1330
|
-
- **Voice Preview Fix**: Resolved GitHub issue reported by users experiencing language-manager errors
|
|
1331
|
-
- **Provider Architecture**: Multi-provider system improvements continue to mature
|
|
1332
|
-
- **Installer UX**: Community feedback on first-time setup experience led to these improvements
|
|
1333
|
-
|
|
1334
|
-
---
|
|
1335
|
-
|
|
1336
|
-
### π Resources
|
|
1337
|
-
|
|
1338
|
-
- **Documentation**: https://agentvibes.org
|
|
1339
|
-
- **GitHub**: https://github.com/paulpreibisch/AgentVibes
|
|
1340
|
-
- **Issues**: https://github.com/paulpreibisch/AgentVibes/issues
|
|
1341
|
-
|
|
1342
|
-
---
|
|
1343
|
-
|
|
1344
|
-
π€ Generated with [Claude Code](https://claude.com/claude-code)
|
|
1345
|
-
|
|
1346
|
-
Co-Authored-By: Claude <noreply@anthropic.com>
|
|
1347
|
-
|
|
1348
|
-
---
|
|
1349
|
-
|
|
1350
|
-
## π¦ v1.1.3 - Symlink Support & Audio Fixes (2025-10-04)
|
|
1351
|
-
|
|
1352
|
-
### π€ AI Summary
|
|
1353
|
-
|
|
1354
|
-
This patch release fixes critical issues with symlinked `.claude/hooks` directories and adds WSL audio static prevention. Users who share hooks across multiple projects via symlinks (common in team environments) will now have proper project-local settings isolation. Additionally, WSL users experiencing audio static at the beginning of TTS playback now get automatic silence padding to eliminate the issue.
|
|
1355
|
-
|
|
1356
|
-
### π Bug Fixes
|
|
1357
|
-
|
|
1358
|
-
#### Symlinked Hooks Directory Support
|
|
1359
|
-
- **Fixed**: Settings interference when `.claude/hooks` is a symlink
|
|
1360
|
-
- **Root Cause**: Scripts used physical path resolution which broke project isolation
|
|
1361
|
-
- **Impact**: Multiple projects sharing symlinked hooks now maintain separate voices/personalities
|
|
1362
|
-
- **Solution**: Use logical paths (`pwd` without `-P`) to preserve symlink structure
|
|
1363
|
-
- **Benefit**: Works seamlessly for both normal and symlinked installations
|
|
1364
|
-
|
|
1365
|
-
**What Was Broken:**
|
|
1366
|
-
```bash
|
|
1367
|
-
# Before: Projects sharing symlinked hooks interfered with each other
|
|
1368
|
-
Project A: .claude/hooks -> /shared/hooks (uses Project B's voice!)
|
|
1369
|
-
Project B: .claude/hooks -> /shared/hooks (correct)
|
|
1370
|
-
|
|
1371
|
-
# After: Each project maintains independent settings
|
|
1372
|
-
Project A: Uses .claude/tts-voice.txt (correct!)
|
|
1373
|
-
Project B: Uses .claude/tts-voice.txt (correct!)
|
|
1374
|
-
```
|
|
1375
|
-
|
|
1376
|
-
#### WSL Audio Static Prevention
|
|
1377
|
-
- **Fixed**: Static/pop at beginning of TTS audio in WSL environments
|
|
1378
|
-
- **Root Cause**: Audio driver initialization delay
|
|
1379
|
-
- **Solution**: Add 200ms silence padding before audio playback using ffmpeg
|
|
1380
|
-
- **Benefit**: Clean, static-free audio playback
|
|
1381
|
-
|
|
1382
|
-
### π§ Technical Changes
|
|
1383
|
-
|
|
1384
|
-
**Modified Files:**
|
|
1385
|
-
- `.claude/hooks/voice-manager.sh` - Fixed path resolution for symlinks
|
|
1386
|
-
- `.claude/hooks/personality-manager.sh` - Fixed path resolution for symlinks
|
|
1387
|
-
- `.claude/hooks/sentiment-manager.sh` - Fixed path resolution for symlinks
|
|
1388
|
-
- `.claude/hooks/language-manager.sh` - Fixed path resolution for symlinks
|
|
1389
|
-
- `.claude/hooks/play-tts.sh` - Added ffmpeg silence padding
|
|
1390
|
-
|
|
1391
|
-
**Path Resolution Changes:**
|
|
1392
|
-
```bash
|
|
1393
|
-
# Before (broken with symlinks):
|
|
1394
|
-
PROJECT_ROOT="$SCRIPT_DIR/../.."
|
|
1395
|
-
VOICE_FILE="$PROJECT_ROOT/.claude/tts-voice.txt"
|
|
1396
|
-
|
|
1397
|
-
# After (works with and without symlinks):
|
|
1398
|
-
SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
1399
|
-
CLAUDE_DIR="$(dirname "$SCRIPT_PATH")"
|
|
1400
|
-
VOICE_FILE="$CLAUDE_DIR/tts-voice.txt"
|
|
1401
|
-
```
|
|
1402
|
-
|
|
1403
|
-
**Audio Padding Implementation:**
|
|
1404
|
-
```bash
|
|
1405
|
-
# Add 200ms silence at start to prevent static
|
|
1406
|
-
if command -v ffmpeg &> /dev/null; then
|
|
1407
|
-
ffmpeg -f lavfi -i anullsrc=r=44100:cl=stereo:d=0.2 \
|
|
1408
|
-
-i "${TEMP_FILE}" -filter_complex "[0:a][1:a]concat=n=2:v=0:a=1[out]" \
|
|
1409
|
-
-map "[out]" -y "${PADDED_FILE}"
|
|
1410
|
-
fi
|
|
1411
|
-
```
|
|
1412
|
-
|
|
1413
|
-
### π‘ Use Cases Now Supported
|
|
1414
|
-
|
|
1415
|
-
**Team Environments with Shared Hooks:**
|
|
1416
|
-
```bash
|
|
1417
|
-
# Share hooks across team projects
|
|
1418
|
-
team-9/SageDev/.claude/hooks -> /shared/team-hooks
|
|
1419
|
-
team-10/production/.claude/hooks -> /shared/team-hooks
|
|
1420
|
-
|
|
1421
|
-
# Each project maintains independent settings
|
|
1422
|
-
team-9/SageDev/.claude/tts-voice.txt = "Sarcastic Voice"
|
|
1423
|
-
team-10/production/.claude/tts-voice.txt = "Professional Voice"
|
|
1424
|
-
```
|
|
1425
|
-
|
|
1426
|
-
**WSL Audio Users:**
|
|
1427
|
-
- No more static/pop sounds at audio start
|
|
1428
|
-
- Smooth, professional TTS playback
|
|
1429
|
-
- Works automatically if ffmpeg is installed
|
|
1430
|
-
|
|
1431
|
-
### π Release Stats
|
|
1432
|
-
|
|
1433
|
-
- **5 files changed**: All manager scripts updated for symlink support
|
|
1434
|
-
- **1 audio enhancement**: Silence padding for WSL
|
|
1435
|
-
- **2 critical bugs fixed**
|
|
1436
|
-
- **0 breaking changes**
|
|
1437
|
-
- **100% backward compatible**: Normal installations unaffected
|
|
1438
|
-
|
|
1439
|
-
### π Migration Notes
|
|
1440
|
-
|
|
1441
|
-
**For Existing Users:**
|
|
1442
|
-
- If you don't use symlinks: No action needed, everything works as before
|
|
1443
|
-
- If you use symlinked hooks: Update via `/agent-vibes:update` to fix settings isolation
|
|
1444
|
-
- WSL users: Install ffmpeg for static-free audio (`sudo apt-get install ffmpeg`)
|
|
1445
|
-
|
|
1446
|
-
**For New Users:**
|
|
1447
|
-
- Symlinks work out of the box
|
|
1448
|
-
- No special configuration needed
|
|
1449
|
-
|
|
1450
|
-
---
|
|
1451
|
-
|
|
1452
|
-
## π Recent Commits
|
|
1453
|
-
|
|
1454
|
-
```
|
|
1455
|
-
2044dc5 chore: Bump version to 1.1.2
|
|
1456
|
-
8460977 fix: Installer now uses correct directory when run via npx
|
|
1457
|
-
2ce7910 docs: Update version to v1.1.1 [skip ci]
|
|
1458
|
-
5dc3ed1 docs: Update README to version v1.1.1 [skip ci]
|
|
1459
|
-
2a46ab9 feat: Release v1.1.1 - Enhanced update display
|
|
1460
|
-
```
|
|
1461
|
-
|
|
1462
|
-
---
|
|
1463
|
-
|
|
1464
|
-
## π¦ v1.1.2 - NPX Installation Fix (2025-10-04)
|
|
1465
|
-
|
|
1466
|
-
### π€ AI Summary
|
|
1467
|
-
|
|
1468
|
-
This patch release fixes a critical bug where `npx agentvibes install` incorrectly installed files to the npm cache directory instead of the user's actual project directory. The installer now properly detects the original working directory when run via npx by using the `INIT_CWD` environment variable, ensuring files are installed in the correct location every time.
|
|
1469
|
-
|
|
1470
|
-
### π Bug Fixes
|
|
1471
|
-
|
|
1472
|
-
#### NPX Installation Directory Bug
|
|
1473
|
-
- **Fixed**: Installer using wrong directory when run via `npx agentvibes install`
|
|
1474
|
-
- **Root Cause**: `process.cwd()` returns npm cache location during npx execution
|
|
1475
|
-
- **Impact**: Files were installed to `/home/user/.npm/_npx/...` instead of project directory
|
|
1476
|
-
- **Solution**: Use `process.env.INIT_CWD` (set by npm/npx) to get actual user's working directory
|
|
1477
|
-
- **Benefit**: Installations now work correctly in all scenarios
|
|
1478
|
-
|
|
1479
|
-
**What Was Broken:**
|
|
1480
|
-
```bash
|
|
1481
|
-
$ cd /my/project
|
|
1482
|
-
$ npx agentvibes install
|
|
1483
|
-
|
|
1484
|
-
# Before: Installed to /home/user/.npm/_npx/.../node_modules/agentvibes/.claude/
|
|
1485
|
-
# After: Installs to /my/project/.claude/ β
|
|
1486
|
-
```
|
|
1487
|
-
|
|
1488
|
-
### π§ Technical Changes
|
|
1489
|
-
|
|
1490
|
-
**Modified Files:**
|
|
1491
|
-
- `src/installer.js` - Fixed directory detection in all 3 command handlers
|
|
1492
|
-
|
|
1493
|
-
**Implementation:**
|
|
1494
|
-
```javascript
|
|
1495
|
-
// Before (broken):
|
|
1496
|
-
const currentDir = process.cwd();
|
|
1497
|
-
|
|
1498
|
-
// After (fixed):
|
|
1499
|
-
const currentDir = process.env.INIT_CWD || process.cwd();
|
|
1500
|
-
```
|
|
1501
|
-
|
|
1502
|
-
**Commands Fixed:**
|
|
1503
|
-
- `install` command (line 70)
|
|
1504
|
-
- `update` command (line 428)
|
|
1505
|
-
- `status` command (line 855)
|
|
1506
|
-
|
|
1507
|
-
### π‘ Why INIT_CWD?
|
|
1508
|
-
|
|
1509
|
-
When you run `npx agentvibes install`:
|
|
1510
|
-
1. npm downloads package to cache: `/home/user/.npm/_npx/...`
|
|
1511
|
-
2. npm sets `INIT_CWD` to your original directory: `/my/project`
|
|
1512
|
-
3. npm runs the script from cache directory
|
|
1513
|
-
4. `process.cwd()` returns cache directory (wrong!)
|
|
1514
|
-
5. `process.env.INIT_CWD` returns your project directory (correct!)
|
|
1515
|
-
|
|
1516
|
-
### π Release Stats
|
|
1517
|
-
|
|
1518
|
-
- **1 file changed**: src/installer.js
|
|
1519
|
-
- **3 functions fixed**: install, update, status
|
|
1520
|
-
- **6 lines added**: Comments explaining the fix
|
|
1521
|
-
- **1 critical bug fixed**
|
|
1522
|
-
- **0 breaking changes**
|
|
1523
|
-
|
|
1524
|
-
---
|
|
1525
|
-
|
|
1526
|
-
## π Recent Commits
|
|
1527
|
-
|
|
1528
|
-
```
|
|
1529
|
-
2ce7910 docs: Update version to v1.1.1 [skip ci]
|
|
1530
|
-
5dc3ed1 docs: Update README to version v1.1.1 [skip ci]
|
|
1531
|
-
2a46ab9 feat: Release v1.1.1 - Enhanced update display
|
|
1532
|
-
c07d3fe feat: Enhance update display with both release notes and commit messages
|
|
1533
|
-
047accd docs: Update version to v1.1.0 [skip ci]
|
|
1534
|
-
```
|
|
1535
|
-
|
|
1536
|
-
---
|
|
1537
|
-
|
|
1538
|
-
## π¦ v1.1.1 - Enhanced Update Display (2025-01-04)
|
|
1539
|
-
|
|
1540
|
-
### π€ AI Summary
|
|
1541
|
-
|
|
1542
|
-
This patch release improves the update experience by displaying both the AI-generated release summary AND the 5 latest commit messages. Users now see the high-level "what changed" from release notes plus the detailed commit history with hashes and titles. This provides better transparency during updates and helps users understand exactly what's being installed.
|
|
1543
|
-
|
|
1544
|
-
### β¨ Improvements
|
|
1545
|
-
|
|
1546
|
-
**Dual Information Display:**
|
|
1547
|
-
- **π° Latest Release** - Shows AI summary from RELEASE_NOTES.md with version
|
|
1548
|
-
- **π Latest Commit Messages** - Shows 5 most recent commits with hashes and titles
|
|
1549
|
-
- Applies to both pre-update confirmation screen and post-update summary
|
|
1550
|
-
- Text wrapping at 80 characters for better readability
|
|
1551
|
-
|
|
1552
|
-
**What You See Now:**
|
|
1553
|
-
```
|
|
1554
|
-
π° Latest Release (v1.1.0):
|
|
1555
|
-
|
|
1556
|
-
This minor release introduces self-update capabilities to AgentVibes!
|
|
1557
|
-
Users can now update directly from Claude Code with...
|
|
1558
|
-
|
|
1559
|
-
π Latest Commit Messages:
|
|
1560
|
-
|
|
1561
|
-
047accd docs: Update version to v1.1.0 [skip ci]
|
|
1562
|
-
f972e54 docs: Update version to v1.1.0 [skip ci]
|
|
1563
|
-
fa6dcf6 chore: Bump version to 1.1.0
|
|
1564
|
-
4a83777 feat: Add self-update system with commands
|
|
1565
|
-
75b1cf8 docs: Update version to v1.0.23 [skip ci]
|
|
1566
|
-
```
|
|
1567
|
-
|
|
1568
|
-
### π§ Technical Changes
|
|
1569
|
-
|
|
1570
|
-
**Modified Files:**
|
|
1571
|
-
- `src/installer.js` - Enhanced both pre-update and post-update display sections
|
|
1572
|
-
|
|
1573
|
-
**Implementation:**
|
|
1574
|
-
- Extracts AI summary from RELEASE_NOTES.md first (priority)
|
|
1575
|
-
- Falls back to git log for commit messages
|
|
1576
|
-
- If git unavailable, reads commits from RELEASE_NOTES.md
|
|
1577
|
-
- Word-wraps long summaries for terminal display
|
|
1578
|
-
|
|
1579
|
-
### π‘ Benefits
|
|
1580
|
-
|
|
1581
|
-
1. **Context**: See the big picture (release summary) AND the details (commits)
|
|
1582
|
-
2. **Transparency**: Know exactly what commits you're getting
|
|
1583
|
-
3. **Traceability**: Commit hashes let you review changes on GitHub
|
|
1584
|
-
4. **Better UX**: No more choosing between commits OR summary - get both!
|
|
1585
|
-
|
|
1586
|
-
---
|
|
1587
|
-
|
|
1588
|
-
## π Recent Commits
|
|
1589
|
-
|
|
1590
|
-
```
|
|
1591
|
-
c07d3fe feat: Enhance update display with both release notes and commit messages
|
|
1592
|
-
047accd docs: Update version to v1.1.0 [skip ci]
|
|
1593
|
-
f972e54 docs: Update version to v1.1.0 [skip ci]
|
|
1594
|
-
fa6dcf6 chore: Bump version to 1.1.0
|
|
1595
|
-
4a83777 feat: Add self-update system with commands
|
|
1596
|
-
```
|
|
1597
|
-
|
|
1598
|
-
---
|
|
1599
|
-
|
|
1600
|
-
## π¦ v1.1.0 - Self-Update & Version Management (2025-01-04)
|
|
1601
|
-
|
|
1602
|
-
### π€ AI Summary
|
|
1603
|
-
|
|
1604
|
-
This minor release introduces self-update capabilities to AgentVibes! Users can now update directly from Claude Code with `/agent-vibes:update` and check their version with `/agent-vibes:version`. The update process includes a beautiful confirmation screen with ASCII art, shows recent changes and release notes, and preserves all custom settings. This eliminates the need for manual npm/git commands and provides full transparency into what's changing during updates.
|
|
1605
|
-
|
|
1606
|
-
### β¨ New Features
|
|
1607
|
-
|
|
1608
|
-
#### Self-Update System
|
|
1609
|
-
- **`/agent-vibes:version`** - Check installed version instantly
|
|
1610
|
-
- **`/agent-vibes:update`** - Update to latest version with one command
|
|
1611
|
-
- Beautiful confirmation screen with two-tone ASCII art
|
|
1612
|
-
- Shows recent changes and release notes (from git or RELEASE_NOTES.md)
|
|
1613
|
-
- Preserves all custom settings, voices, and configurations
|
|
1614
|
-
- Works from npx, npm global, or source installations
|
|
1615
|
-
- Optional `--yes` flag for non-interactive updates
|
|
1616
|
-
|
|
1617
|
-
#### Quick Update Workflow
|
|
1618
|
-
```bash
|
|
1619
|
-
/agent-vibes:version # Check current version
|
|
1620
|
-
/agent-vibes:update # Update with confirmation
|
|
1621
|
-
/agent-vibes:update --yes # Update without prompts
|
|
1622
|
-
```
|
|
1623
|
-
|
|
1624
|
-
### π Documentation Improvements
|
|
1625
|
-
|
|
1626
|
-
- **Enhanced README**: Added "System Commands" section with version and update commands
|
|
1627
|
-
- **Better Update Instructions**: Reorganized update section with clearer methods
|
|
1628
|
-
- **Version Checking Guide**: Documented how to check and verify versions
|
|
1629
|
-
- **Release Notes Display**: Updates now show what's changed in the latest version
|
|
1630
|
-
- **Quick Update Section**: Highlighted fastest update method at top of section
|
|
1631
|
-
|
|
1632
|
-
### π§ Technical Changes
|
|
1633
|
-
|
|
1634
|
-
**New Command Files:**
|
|
1635
|
-
- `.claude/commands/agent-vibes/update.md` - Update command definition with examples
|
|
1636
|
-
- `.claude/commands/agent-vibes/version.md` - Version command definition
|
|
1637
|
-
|
|
1638
|
-
**Documentation Updates:**
|
|
1639
|
-
- Updated README.md with system commands table
|
|
1640
|
-
- Improved update documentation flow
|
|
1641
|
-
- Added "Quick Update (From Claude Code)" section
|
|
1642
|
-
- Enhanced "What Gets Updated" list with release notes item
|
|
1643
|
-
|
|
1644
|
-
**Implementation Details:**
|
|
1645
|
-
- Update command wraps existing `npx agentvibes update` installer function
|
|
1646
|
-
- Version command wraps `npx agentvibes --version` for consistent output
|
|
1647
|
-
- Both commands work seamlessly from within Claude Code sessions
|
|
1648
|
-
|
|
1649
|
-
### π― Why This Matters
|
|
1650
|
-
|
|
1651
|
-
**Before v1.1.0:**
|
|
1652
|
-
Users had to exit Claude Code and manually run:
|
|
1653
|
-
```bash
|
|
1654
|
-
npm update -g agentvibes
|
|
1655
|
-
# or
|
|
1656
|
-
cd ~/AgentVibes && git pull && npm install
|
|
1657
|
-
```
|
|
1658
|
-
|
|
1659
|
-
**After v1.1.0:**
|
|
1660
|
-
Users can update directly from Claude Code:
|
|
1661
|
-
```bash
|
|
1662
|
-
/agent-vibes:update
|
|
1663
|
-
```
|
|
1664
|
-
|
|
1665
|
-
The update process now includes:
|
|
1666
|
-
- β
Visual confirmation with package version
|
|
1667
|
-
- β
Recent changes from git log or RELEASE_NOTES.md
|
|
1668
|
-
- β
File-by-file update progress with counts
|
|
1669
|
-
- β
Summary of what was updated
|
|
1670
|
-
- β
Preservation of all custom configurations
|
|
1671
|
-
|
|
1672
|
-
### π What Gets Updated
|
|
1673
|
-
|
|
1674
|
-
When you run `/agent-vibes:update`, these components are refreshed:
|
|
1675
|
-
- β
All slash commands (11+ commands)
|
|
1676
|
-
- β
TTS scripts and hooks (6+ scripts)
|
|
1677
|
-
- β
Personality templates (new ones added, existing updated)
|
|
1678
|
-
- β
Output styles (agent-vibes.md)
|
|
1679
|
-
- β
BMAD plugin configurations
|
|
1680
|
-
- β
Voice configuration mappings
|
|
1681
|
-
|
|
1682
|
-
**Safe Updates**: Your voice settings, custom personalities, sentiment preferences, language settings, and all user configurations are always preserved!
|
|
1683
|
-
|
|
1684
|
-
### π Release Stats
|
|
1685
|
-
|
|
1686
|
-
- **3 files changed**: 2 new command files, 1 README update
|
|
1687
|
-
- **2 new commands**: `/agent-vibes:version`, `/agent-vibes:update`
|
|
1688
|
-
- **1 documentation section** enhanced: "π Updating"
|
|
1689
|
-
- **0 breaking changes**
|
|
1690
|
-
|
|
1691
|
-
### π‘ User Experience Improvements
|
|
1692
|
-
|
|
1693
|
-
1. **Convenience**: Update without leaving Claude Code
|
|
1694
|
-
2. **Transparency**: See what's changing before confirming
|
|
1695
|
-
3. **Safety**: Settings and customizations always preserved
|
|
1696
|
-
4. **Visibility**: Version command helps troubleshooting
|
|
1697
|
-
5. **Consistency**: Same update experience across all install methods
|
|
1698
|
-
|
|
1699
|
-
---
|
|
1700
|
-
|
|
1701
|
-
## π Recent Commits
|
|
1702
|
-
|
|
1703
|
-
```
|
|
1704
|
-
75b1cf8 docs: Update version to v1.0.23 [skip ci]
|
|
1705
|
-
```
|
|
1706
|
-
|
|
1707
|
-
---
|
|
1708
|
-
|
|
1709
|
-
# Release v1.0.20
|
|
1710
|
-
|
|
1711
|
-
## π€ AI Summary
|
|
1712
|
-
|
|
1713
|
-
This patch release improves the user experience when installing or updating via npx by adding a fallback to display release notes from RELEASE_NOTES.md when git is unavailable. Users running `npx agentvibes update` will now see the latest release summary instead of git errors, making it clear what's new in each version.
|
|
1714
|
-
|
|
1715
|
-
## π Bug Fixes
|
|
1716
|
-
|
|
1717
|
-
### Installer Release Notes Fallback
|
|
1718
|
-
- **Fixed**: Update/install commands showing "fatal: not a git repository" error
|
|
1719
|
-
- **Root Cause**: npx cache doesn't include .git directory
|
|
1720
|
-
- **Impact**: Users now see release notes even when git is unavailable
|
|
1721
|
-
- **Solution**: Added fallback to read RELEASE_NOTES.md and extract latest release summary
|
|
1722
|
-
- **Benefit**: Better transparency about what's being installed/updated
|
|
1723
|
-
|
|
1724
|
-
## π Technical Changes
|
|
1725
|
-
|
|
1726
|
-
### Modified Files
|
|
1727
|
-
|
|
1728
|
-
**src/installer.js** (+56 lines)
|
|
1729
|
-
- Added RELEASE_NOTES.md fallback for both install and update commands
|
|
1730
|
-
- Extracts latest release header and AI summary
|
|
1731
|
-
- Displays formatted release notes when git log fails
|
|
1732
|
-
- Graceful degradation when neither git nor release notes available
|
|
1733
|
-
|
|
1734
|
-
### Key Implementation Details
|
|
1735
|
-
|
|
1736
|
-
**Release Notes Fallback:**
|
|
1737
|
-
```javascript
|
|
1738
|
-
try {
|
|
1739
|
-
// Try git log first
|
|
1740
|
-
const gitLog = execSync('git log --oneline --no-decorate -5', {...});
|
|
1741
|
-
// ... show git commits
|
|
1742
|
-
} catch (error) {
|
|
1743
|
-
// Fallback to RELEASE_NOTES.md
|
|
1744
|
-
const releaseNotes = await fs.readFile('RELEASE_NOTES.md', 'utf8');
|
|
1745
|
-
// Extract and display latest release summary
|
|
1746
|
-
console.log(chalk.cyan(`π° ${releaseHeader}`));
|
|
1747
|
-
console.log(chalk.white(` ${summaryText}`));
|
|
1748
|
-
}
|
|
1749
|
-
```
|
|
1750
|
-
|
|
1751
|
-
## π Migration Notes
|
|
1752
|
-
|
|
1753
|
-
### For Users
|
|
1754
|
-
|
|
1755
|
-
**No action required** - This is an installer improvement:
|
|
1756
|
-
- Next time you run `npx agentvibes update` you'll see release notes
|
|
1757
|
-
- Works even when installing from npm cache without git
|
|
1758
|
-
- Shows latest release summary automatically
|
|
1759
|
-
|
|
1760
|
-
### For Package Maintainers
|
|
1761
|
-
|
|
1762
|
-
**Benefits:**
|
|
1763
|
-
- Users always see what's new, even via npx
|
|
1764
|
-
- RELEASE_NOTES.md now serves as fallback documentation
|
|
1765
|
-
- Better user experience for npm package installations
|
|
1766
|
-
|
|
1767
|
-
## π Recent Commits
|
|
1768
|
-
|
|
1769
|
-
```
|
|
1770
|
-
456abb0 docs: Update version to v1.0.21 [skip ci]
|
|
1771
|
-
3dfdcb5 fix: Include RELEASE_NOTES.md in npm package for installer fallback
|
|
1772
|
-
96f8a9b docs: Update README and RELEASE_NOTES to v1.0.20 [skip ci]
|
|
1773
|
-
5e2e3cc chore: Bump version to 1.0.20 for npm publish
|
|
1774
|
-
1636b14 feat: Show release notes from RELEASE_NOTES.md when git is unavailable
|
|
1775
|
-
```
|
|
1776
|
-
|
|
1777
|
-
## π Release Stats
|
|
1778
|
-
|
|
1779
|
-
- **5 commits** since v1.0.19
|
|
1780
|
-
- **3 files changed**: .npmignore, README.md, RELEASE_NOTES.md
|
|
1781
|
-
- **10 insertions**, **4 deletions**
|
|
1782
|
-
- **1 bug fix**: RELEASE_NOTES.md now included in npm package
|
|
1783
|
-
- **0 breaking changes**
|
|
1784
|
-
|
|
1785
|
-
## π― User Experience Improvements
|
|
1786
|
-
|
|
1787
|
-
1. **Transparency**: See what's new even when installing via npx
|
|
1788
|
-
2. **No Errors**: Graceful fallback instead of git errors
|
|
1789
|
-
3. **Consistent**: Same release info whether from git or npm
|
|
1790
|
-
4. **Informative**: Latest release summary shown in all scenarios
|
|
1791
|
-
|
|
1792
|
-
## π‘ Example Output
|
|
1793
|
-
|
|
1794
|
-
When running `npx agentvibes update`:
|
|
1795
|
-
|
|
1796
|
-
**Before (v1.0.19):**
|
|
1797
|
-
```
|
|
1798
|
-
β¨ Update complete!
|
|
1799
|
-
fatal: not a git repository (or any of the parent directories): .git
|
|
1800
|
-
π‘ Changes will take effect immediately!
|
|
1801
|
-
```
|
|
1802
|
-
|
|
1803
|
-
**After (v1.0.20):**
|
|
1804
|
-
```
|
|
1805
|
-
β¨ Update complete!
|
|
1806
|
-
|
|
1807
|
-
π° Release v1.0.19
|
|
1808
|
-
|
|
1809
|
-
This release brings powerful multilingual support to AgentVibes! Users can now make Claude speak in 30+ languages including Spanish, French, German, Italian, Portuguese, Chinese, Japanese, and many more...
|
|
1810
|
-
|
|
1811
|
-
π‘ Changes will take effect immediately!
|
|
1812
|
-
```
|
|
1813
|
-
|
|
1814
|
-
## π Credits
|
|
1815
|
-
|
|
1816
|
-
Thanks to users who reported the confusing git error messages when updating via npx!
|
|
1817
|
-
|
|
1818
|
-
---
|
|
1819
|
-
|
|
1820
|
-
# Release v1.0.19
|
|
1821
|
-
|
|
1822
|
-
## π€ AI Summary
|
|
1823
|
-
|
|
1824
|
-
This release brings powerful multilingual support to AgentVibes! Users can now make Claude speak in 30+ languages including Spanish, French, German, Italian, Portuguese, Chinese, Japanese, and many more. The system automatically selects optimal multilingual voices and seamlessly integrates with existing personalities and the BMAD plugin. Additionally, this release includes critical bug fixes for slash command discovery and comprehensive documentation updates.
|
|
1825
|
-
|
|
1826
|
-
## β¨ New Features
|
|
1827
|
-
|
|
1828
|
-
### π Multilingual Language Support
|
|
1829
|
-
|
|
1830
|
-
**Speak in 30+ Languages**
|
|
1831
|
-
- Added `/agent-vibes:set-language <language>` command
|
|
1832
|
-
- Support for Spanish, French, German, Italian, Portuguese, Chinese, Japanese, Korean, and 20+ more languages
|
|
1833
|
-
- Automatic multilingual voice selection based on language
|
|
1834
|
-
- Works seamlessly with personalities and BMAD plugin
|
|
1835
|
-
- Language settings persist across sessions
|
|
1836
|
-
|
|
1837
|
-
**Language Manager System**
|
|
1838
|
-
- New `language-manager.sh` script handles language switching
|
|
1839
|
-
- Intelligent voice recommendations per language:
|
|
1840
|
-
- Spanish β Antoni/Matilda
|
|
1841
|
-
- French β Rachel/Charlotte
|
|
1842
|
-
- German β Domi/Charlotte
|
|
1843
|
-
- Italian β Bella
|
|
1844
|
-
- Portuguese β Matilda
|
|
1845
|
-
- Stores language preference in `.claude/tts-language.txt`
|
|
1846
|
-
|
|
1847
|
-
**New Multilingual Voices Added**
|
|
1848
|
-
- **Antoni** - Optimized for Spanish, general multilingual (30+ languages)
|
|
1849
|
-
- **Rachel** - Optimized for French, professional multilingual
|
|
1850
|
-
- **Domi** - Optimized for German, strong confident voice
|
|
1851
|
-
- **Bella** - Optimized for Italian, soft engaging voice
|
|
1852
|
-
- **Charlotte** - European languages specialist
|
|
1853
|
-
- **Matilda** - Latin languages specialist
|
|
1854
|
-
|
|
1855
|
-
### π Documentation Enhancements
|
|
1856
|
-
|
|
1857
|
-
**Updated README**
|
|
1858
|
-
- Added comprehensive "Change Language" section with examples
|
|
1859
|
-
- New "Language Commands" table in Commands Reference
|
|
1860
|
-
- Added "π Multilingual Support" to Table of Contents
|
|
1861
|
-
- Documented all 30+ supported languages
|
|
1862
|
-
- Included multilingual voice recommendations and usage tips
|
|
1863
|
-
|
|
1864
|
-
**New Language Command Documentation**
|
|
1865
|
-
- Created `.claude/commands/agent-vibes/set-language.md`
|
|
1866
|
-
- Detailed usage examples and language list
|
|
1867
|
-
- Explains how language system works
|
|
1868
|
-
- Voice recommendations per language
|
|
1869
|
-
|
|
1870
|
-
## π Bug Fixes
|
|
1871
|
-
|
|
1872
|
-
### Slash Command Discovery Fix
|
|
1873
|
-
- **Fixed**: Commands in `.claude/commands/agent-vibes/` were not appearing in autocomplete
|
|
1874
|
-
- **Root Cause**: Missing `commands.json` registration file
|
|
1875
|
-
- **Impact**: All `/agent-vibes:*` subcommands are now discoverable
|
|
1876
|
-
- **Added**: Proper `commands.json` with all 13 subcommands registered:
|
|
1877
|
-
- list, preview, switch, whoami, sample, replay
|
|
1878
|
-
- personality, sentiment, set-pretext, set-language
|
|
1879
|
-
- add, get
|
|
1880
|
-
|
|
1881
|
-
### Installer File Filtering
|
|
1882
|
-
- **Fixed**: Project-specific files being included in installer
|
|
1883
|
-
- **Impact**: Cleaner installations without unnecessary local files
|
|
1884
|
-
- **Changed**: Added filters to exclude `.claude/tts-*.txt` and other session files
|
|
1885
|
-
|
|
1886
|
-
## π Technical Changes
|
|
1887
|
-
|
|
1888
|
-
### New Files Added
|
|
1889
|
-
|
|
1890
|
-
**Language Management System**
|
|
1891
|
-
- `.claude/commands/agent-vibes/set-language.md` - Command documentation
|
|
1892
|
-
- `.claude/hooks/language-manager.sh` - Language switching logic
|
|
1893
|
-
- `.claude/commands/agent-vibes/commands.json` - Command registration
|
|
1894
|
-
|
|
1895
|
-
**Voice Configuration**
|
|
1896
|
-
- Added 6 multilingual voices to `voices-config.sh`:
|
|
1897
|
-
- Antoni (ErXwobaYiN019PkySvjV)
|
|
1898
|
-
- Rachel (21m00Tcm4TlvDq8ikWAM)
|
|
1899
|
-
- Domi (AZnzlk1XvdvUeBnXmlld)
|
|
1900
|
-
- Bella (EXAVITQu4vr4xnSDxMaL)
|
|
1901
|
-
- Charlotte (XB0fDUnXU5powFXDhCwa)
|
|
1902
|
-
- Matilda (XrExE9yKIg1WjnnlVkGX)
|
|
1903
|
-
|
|
1904
|
-
### Modified Files
|
|
1905
|
-
|
|
1906
|
-
**Output Style Updates** (`agent-vibes.md`)
|
|
1907
|
-
- Enhanced language detection logic
|
|
1908
|
-
- Added multilingual voice fallback system
|
|
1909
|
-
- Priority order: Language β Sentiment β Personality β Default
|
|
1910
|
-
- Improved BMAD integration with language support
|
|
1911
|
-
|
|
1912
|
-
**Installer Improvements** (`src/installer.js`)
|
|
1913
|
-
- Enhanced file filtering to exclude session-specific files
|
|
1914
|
-
- Better validation of ElevenLabs voice IDs
|
|
1915
|
-
- Improved installation messaging
|
|
1916
|
-
|
|
1917
|
-
### Key Implementation Details
|
|
1918
|
-
|
|
1919
|
-
**Language Priority System:**
|
|
1920
|
-
```bash
|
|
1921
|
-
# Check order:
|
|
1922
|
-
1. Language setting (.claude/tts-language.txt)
|
|
1923
|
-
2. Sentiment setting (.claude/tts-sentiment.txt)
|
|
1924
|
-
3. Personality setting (.claude/tts-personality.txt)
|
|
1925
|
-
4. Default voice
|
|
1926
|
-
```
|
|
1927
|
-
|
|
1928
|
-
**Multilingual Voice Mapping:**
|
|
1929
|
-
```bash
|
|
1930
|
-
declare -A LANGUAGE_VOICES=(
|
|
1931
|
-
["spanish"]="Antoni"
|
|
1932
|
-
["french"]="Rachel"
|
|
1933
|
-
["german"]="Domi"
|
|
1934
|
-
["italian"]="Bella"
|
|
1935
|
-
# ... 20+ more languages
|
|
1936
|
-
)
|
|
1937
|
-
```
|
|
1938
|
-
|
|
1939
|
-
**BMAD + Language Integration:**
|
|
1940
|
-
- When BMAD agent is active AND language is set:
|
|
1941
|
-
- Tries agent's assigned voice first
|
|
1942
|
-
- Falls back to multilingual voice if agent's voice doesn't support language
|
|
1943
|
-
- Maintains agent's personality style in chosen language
|
|
1944
|
-
|
|
1945
|
-
## π Migration Notes
|
|
1946
|
-
|
|
1947
|
-
### For Users
|
|
1948
|
-
|
|
1949
|
-
**To Start Using Multilingual Features:**
|
|
1950
|
-
```bash
|
|
1951
|
-
# Set your preferred language
|
|
1952
|
-
/agent-vibes:set-language spanish
|
|
1953
|
-
|
|
1954
|
-
# Claude will now speak in Spanish!
|
|
1955
|
-
# To go back to English:
|
|
1956
|
-
/agent-vibes:set-language english
|
|
1957
|
-
```
|
|
1958
|
-
|
|
1959
|
-
**Recommended Voices for Languages:**
|
|
1960
|
-
- Use `/agent-vibes:set-language list` to see all supported languages
|
|
1961
|
-
- System auto-selects best voice for your language
|
|
1962
|
-
- Can manually switch voices with `/agent-vibes:switch <voice>`
|
|
1963
|
-
|
|
1964
|
-
### For Existing AgentVibes Users
|
|
1965
|
-
|
|
1966
|
-
**No Breaking Changes:**
|
|
1967
|
-
- Existing voice/personality settings preserved
|
|
1968
|
-
- Language defaults to English
|
|
1969
|
-
- All previous commands work exactly the same
|
|
1970
|
-
- New language feature is opt-in
|
|
1971
|
-
|
|
1972
|
-
## π Release Stats
|
|
1973
|
-
|
|
1974
|
-
- **7 commits** since v1.0.18
|
|
1975
|
-
- **8 files changed**:
|
|
1976
|
-
- 3 new files (set-language.md, language-manager.sh, commands.json)
|
|
1977
|
-
- 5 modified files (README.md, agent-vibes.md, voices-config.sh, installer.js)
|
|
1978
|
-
- **467 insertions**, **45 deletions**
|
|
1979
|
-
- **2 major features**: Multilingual support, Command registration fix
|
|
1980
|
-
- **2 bug fixes**: Slash commands, Installer filtering
|
|
1981
|
-
- **0 breaking changes**
|
|
1982
|
-
|
|
1983
|
-
## π― User Experience Improvements
|
|
1984
|
-
|
|
1985
|
-
1. **Global Language Support**: Speak with Claude in your native language
|
|
1986
|
-
2. **Automatic Voice Selection**: System picks best multilingual voice
|
|
1987
|
-
3. **Seamless Integration**: Works with all existing features
|
|
1988
|
-
4. **Better Discovery**: All commands now show in autocomplete
|
|
1989
|
-
5. **Comprehensive Docs**: Complete guide to using languages
|
|
1990
|
-
|
|
1991
|
-
## π‘ Usage Examples
|
|
1992
|
-
|
|
1993
|
-
### Basic Language Switching
|
|
1994
|
-
```bash
|
|
1995
|
-
# Switch to Spanish
|
|
1996
|
-
/agent-vibes:set-language spanish
|
|
1997
|
-
|
|
1998
|
-
# Claude responds in Spanish
|
|
1999
|
-
"Β‘Voy a hacer esa tarea para ti!"
|
|
2000
|
-
|
|
2001
|
-
# Switch back to English
|
|
2002
|
-
/agent-vibes:set-language english
|
|
2003
|
-
```
|
|
2004
|
-
|
|
2005
|
-
### Language + Personality
|
|
2006
|
-
```bash
|
|
2007
|
-
# Set language to French
|
|
2008
|
-
/agent-vibes:set-language french
|
|
2009
|
-
|
|
2010
|
-
# Use pirate personality
|
|
2011
|
-
/agent-vibes:personality pirate
|
|
2012
|
-
|
|
2013
|
-
# Get French pirate responses!
|
|
2014
|
-
"Arr, je vais conquΓ©rir ce code pour toi, moussaillon!"
|
|
2015
|
-
```
|
|
2016
|
-
|
|
2017
|
-
### Language + BMAD
|
|
2018
|
-
```bash
|
|
2019
|
-
# Set language to German
|
|
2020
|
-
/agent-vibes:set-language german
|
|
2021
|
-
|
|
2022
|
-
# Activate BMAD PM agent
|
|
2023
|
-
/BMad:agents:pm
|
|
2024
|
-
|
|
2025
|
-
# PM speaks in German with professional voice
|
|
2026
|
-
"Ich werde diese Anforderungen fΓΌr Sie analysieren"
|
|
2027
|
-
```
|
|
2028
|
-
|
|
2029
|
-
## π Supported Languages
|
|
2030
|
-
|
|
2031
|
-
**Complete List (30+ languages):**
|
|
2032
|
-
Spanish, French, German, Italian, Portuguese, Chinese, Japanese, Korean, Polish, Dutch, Turkish, Russian, Arabic, Hindi, Swedish, Danish, Norwegian, Finnish, Czech, Romanian, Ukrainian, Greek, Bulgarian, Croatian, Slovak, and more!
|
|
2033
|
-
|
|
2034
|
-
## π Credits
|
|
2035
|
-
|
|
2036
|
-
Special thanks to the ElevenLabs team for their amazing multilingual voice technology! The new Multilingual v2 model makes it possible to provide natural-sounding TTS in 30+ languages.
|
|
2037
|
-
|
|
2038
|
-
---
|
|
2039
|
-
|
|
2040
|
-
# Release v1.0.18
|
|
2041
|
-
|
|
2042
|
-
[Previous release notes preserved below...]
|