agentvibes 1.1.2 → 2.0.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.
Files changed (119) hide show
  1. package/.claude/commands/agent-vibes/provider.md +54 -0
  2. package/.claude/hooks/language-manager.sh +7 -2
  3. package/.claude/hooks/personality-manager.sh +7 -3
  4. package/.claude/hooks/piper-download-voices.sh +133 -0
  5. package/.claude/hooks/piper-voice-manager.sh +194 -0
  6. package/.claude/hooks/play-tts-elevenlabs.sh +201 -0
  7. package/.claude/hooks/play-tts-piper.sh +175 -0
  8. package/.claude/hooks/play-tts.sh +18 -1
  9. package/.claude/hooks/play-tts.sh.backup-20251005-163851 +138 -0
  10. package/.claude/hooks/provider-commands.sh +374 -0
  11. package/.claude/hooks/provider-manager.sh +196 -0
  12. package/.claude/hooks/sentiment-manager.sh +7 -3
  13. package/.claude/hooks/voice-manager.sh +11 -5
  14. package/.claude/language-voices.yaml +372 -0
  15. package/.claude/personalities/backups/angry.md.backup-20251005 +16 -0
  16. package/.claude/personalities/backups/annoying.md.backup-20251005 +16 -0
  17. package/.claude/personalities/backups/crass.md.backup-20251005 +16 -0
  18. package/.claude/personalities/backups/dramatic.md.backup-20251005 +16 -0
  19. package/.claude/personalities/backups/dry-humor.md.backup-20251005 +52 -0
  20. package/.claude/personalities/backups/flirty.md.backup-20251005 +22 -0
  21. package/.claude/personalities/backups/funny.md.backup-20251005 +16 -0
  22. package/.claude/personalities/backups/grandpa.md.backup-20251005 +34 -0
  23. package/.claude/personalities/backups/millennial.md.backup-20251005 +16 -0
  24. package/.claude/personalities/backups/moody.md.backup-20251005 +16 -0
  25. package/.claude/personalities/backups/normal.md.backup-20251005 +18 -0
  26. package/.claude/personalities/backups/pirate.md.backup-20251005 +16 -0
  27. package/.claude/personalities/backups/poetic.md.backup-20251005 +16 -0
  28. package/.claude/personalities/backups/professional.md.backup-20251005 +16 -0
  29. package/.claude/personalities/backups/robot.md.backup-20251005 +16 -0
  30. package/.claude/personalities/backups/sarcastic.md.backup-20251005 +40 -0
  31. package/.claude/personalities/backups/sassy.md.backup-20251005 +16 -0
  32. package/.claude/personalities/backups/surfer-dude.md.backup-20251005 +16 -0
  33. package/.claude/personalities/backups/zen.md.backup-20251005 +16 -0
  34. package/.claude/piper-voices/en_US-lessac-medium.onnx +0 -0
  35. package/.claude/piper-voices/en_US-lessac-medium.onnx.json +493 -0
  36. package/.mcp-minimal.json +53 -0
  37. package/README.md +229 -28
  38. package/RELEASE_NOTES.md +114 -0
  39. package/RELEASE_NOTES_V2.md +482 -0
  40. package/agentvibes.org/.mcp-minimal.json +60 -0
  41. package/agentvibes.org/CHANGELOG.md +56 -0
  42. package/agentvibes.org/README.md +93 -0
  43. package/agentvibes.org/app/(auth)/layout.tsx +15 -0
  44. package/agentvibes.org/app/(auth)/reset-password/page.tsx +45 -0
  45. package/agentvibes.org/app/(auth)/signin/page.tsx +82 -0
  46. package/agentvibes.org/app/(auth)/signup/page.tsx +104 -0
  47. package/agentvibes.org/app/(default)/layout.tsx +31 -0
  48. package/agentvibes.org/app/(default)/page.tsx +20 -0
  49. package/agentvibes.org/app/api/hello/route.ts +3 -0
  50. package/agentvibes.org/app/css/additional-styles/theme.css +82 -0
  51. package/agentvibes.org/app/css/additional-styles/utility-patterns.css +55 -0
  52. package/agentvibes.org/app/css/style.css +100 -0
  53. package/agentvibes.org/app/layout.tsx +63 -0
  54. package/agentvibes.org/components/cta.tsx +58 -0
  55. package/agentvibes.org/components/features.tsx +256 -0
  56. package/agentvibes.org/components/hero-home.tsx +97 -0
  57. package/agentvibes.org/components/modal-video.tsx +137 -0
  58. package/agentvibes.org/components/page-illustration.tsx +55 -0
  59. package/agentvibes.org/components/spotlight.tsx +77 -0
  60. package/agentvibes.org/components/testimonials.tsx +282 -0
  61. package/agentvibes.org/components/ui/footer.tsx +82 -0
  62. package/agentvibes.org/components/ui/header.tsx +44 -0
  63. package/agentvibes.org/components/ui/logo.tsx +10 -0
  64. package/agentvibes.org/components/workflows.tsx +176 -0
  65. package/agentvibes.org/next.config.js +4 -0
  66. package/agentvibes.org/package-lock.json +1974 -0
  67. package/agentvibes.org/package.json +30 -0
  68. package/agentvibes.org/pnpm-lock.yaml +1141 -0
  69. package/agentvibes.org/postcss.config.js +5 -0
  70. package/agentvibes.org/public/audio/02-sarcastic.mp3 +0 -0
  71. package/agentvibes.org/public/audio/03-angry.mp3 +0 -0
  72. package/agentvibes.org/public/audio/04-grandpa.mp3 +0 -0
  73. package/agentvibes.org/public/audio/05-sarcastic-example2.mp3 +0 -0
  74. package/agentvibes.org/public/audio/french-rachel.mp3 +0 -0
  75. package/agentvibes.org/public/audio/spanish-antoni.mp3 +0 -0
  76. package/agentvibes.org/public/favicon.ico +0 -0
  77. package/agentvibes.org/public/fonts/nacelle-italic.woff2 +0 -0
  78. package/agentvibes.org/public/fonts/nacelle-regular.woff2 +0 -0
  79. package/agentvibes.org/public/fonts/nacelle-semibold.woff2 +0 -0
  80. package/agentvibes.org/public/fonts/nacelle-semibolditalic.woff2 +0 -0
  81. package/agentvibes.org/public/images/blurred-shape-gray.svg +1 -0
  82. package/agentvibes.org/public/images/blurred-shape.svg +1 -0
  83. package/agentvibes.org/public/images/client-logo-01.svg +1 -0
  84. package/agentvibes.org/public/images/client-logo-02.svg +1 -0
  85. package/agentvibes.org/public/images/client-logo-03.svg +1 -0
  86. package/agentvibes.org/public/images/client-logo-04.svg +1 -0
  87. package/agentvibes.org/public/images/client-logo-05.svg +1 -0
  88. package/agentvibes.org/public/images/client-logo-06.svg +1 -0
  89. package/agentvibes.org/public/images/client-logo-07.svg +1 -0
  90. package/agentvibes.org/public/images/client-logo-08.svg +1 -0
  91. package/agentvibes.org/public/images/client-logo-09.svg +1 -0
  92. package/agentvibes.org/public/images/features.png +0 -0
  93. package/agentvibes.org/public/images/footer-illustration.svg +1 -0
  94. package/agentvibes.org/public/images/hero-image-01.jpg +0 -0
  95. package/agentvibes.org/public/images/logo.svg +1 -0
  96. package/agentvibes.org/public/images/page-illustration.svg +1 -0
  97. package/agentvibes.org/public/images/secondary-illustration.svg +1 -0
  98. package/agentvibes.org/public/images/testimonial-01.jpg +0 -0
  99. package/agentvibes.org/public/images/testimonial-02.jpg +0 -0
  100. package/agentvibes.org/public/images/testimonial-03.jpg +0 -0
  101. package/agentvibes.org/public/images/testimonial-04.jpg +0 -0
  102. package/agentvibes.org/public/images/testimonial-05.jpg +0 -0
  103. package/agentvibes.org/public/images/testimonial-06.jpg +0 -0
  104. package/agentvibes.org/public/images/testimonial-07.jpg +0 -0
  105. package/agentvibes.org/public/images/testimonial-08.jpg +0 -0
  106. package/agentvibes.org/public/images/testimonial-09.jpg +0 -0
  107. package/agentvibes.org/public/images/workflow-01.png +0 -0
  108. package/agentvibes.org/public/images/workflow-02.png +0 -0
  109. package/agentvibes.org/public/images/workflow-03.png +0 -0
  110. package/agentvibes.org/public/videos/video.mp4 +0 -0
  111. package/agentvibes.org/tsconfig.json +28 -0
  112. package/agentvibes.org/utils/useMasonry.tsx +67 -0
  113. package/agentvibes.org/utils/useMousePosition.tsx +27 -0
  114. package/docs/ai-optimized-documentation-standards.md +306 -0
  115. package/docs/architecture/provider-system.md +574 -0
  116. package/docs/voice-mapping-format.md +218 -0
  117. package/package.json +3 -2
  118. package/scripts/piper-voice/README.md +145 -0
  119. package/scripts/piper-voice/wsl-install.sh +193 -0
package/README.md CHANGED
@@ -2,14 +2,16 @@
2
2
 
3
3
  > **Bring your Claude Code sessions to life with voice!**
4
4
  >
5
- > Professional text-to-speech narration powered by ElevenLabs AI
5
+ > 🌐 **[agentvibes.org](https://agentvibes.org)**
6
+ >
7
+ > Professional text-to-speech narration with multi-provider support - **ElevenLabs AI** or **Piper TTS (Free!)**
6
8
 
7
9
  [![npm version](https://badge.fury.io/js/agentvibes.svg)](https://badge.fury.io/js/agentvibes)
8
10
  [![Test Suite](https://github.com/paulpreibisch/AgentVibes/actions/workflows/test.yml/badge.svg)](https://github.com/paulpreibisch/AgentVibes/actions/workflows/test.yml)
9
11
  [![Publish](https://github.com/paulpreibisch/AgentVibes/actions/workflows/publish.yml/badge.svg)](https://github.com/paulpreibisch/AgentVibes/actions/workflows/publish.yml)
10
12
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
11
13
 
12
- **Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v1.1.2
14
+ **Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.0.0
13
15
 
14
16
  ---
15
17
 
@@ -43,11 +45,18 @@
43
45
 
44
46
  ## 📰 Latest Release
45
47
 
46
- **[v1.1.2 - Release Notes](https://github.com/paulpreibisch/AgentVibes/releases/tag/v1.1.2)** 📋
48
+ **[v2.0.0 - The Multi-Provider Revolution](https://github.com/paulpreibisch/AgentVibes/releases/tag/v2.0.0)** 🎉
49
+
50
+ The biggest update ever! **Multi-provider TTS support** (ElevenLabs + Piper TTS), **30+ languages**, expanded voice library (27+ voices), advanced sentiment system, enhanced BMAD integration, and comprehensive multilingual support. Choose between premium ElevenLabs voices or free offline Piper TTS!
47
51
 
48
- Enhanced update display! The update command now shows both the AI-generated release summary AND the 5 latest commit messages with hashes. See the big picture and the details - better transparency during updates.
52
+ **Key highlights:**
53
+ - 🎭 Multi-Provider Support - Switch between ElevenLabs (150+ voices) and Piper TTS (50+ free voices)
54
+ - 🌍 30+ Languages - Speak in Spanish, French, German, Chinese, Japanese, and more
55
+ - 🎤 27+ Professional Voices - Expanded voice library with multilingual support
56
+ - 💬 Advanced Sentiment System - Apply personality styles to ANY voice
57
+ - 🔌 Enhanced BMAD Plugin - Multilingual agent voices with personality mapping
49
58
 
50
- [→ View All Releases](https://github.com/paulpreibisch/AgentVibes/releases)
59
+ [→ View Full Release Notes](RELEASE_NOTES_V2.md) | [→ View All Releases](https://github.com/paulpreibisch/AgentVibes/releases)
51
60
 
52
61
  ---
53
62
 
@@ -59,13 +68,15 @@ Imagine Claude speaking to you with different voices and personalities as you co
59
68
 
60
69
  ### 🎯 Key Features
61
70
 
62
- - 🎙️ **17+ Professional AI Voices** - Character voices, accents, and unique personalities
71
+ - 🎭 **Multi-Provider Support** - Choose ElevenLabs (150+ premium voices) or Piper TTS (50+ free voices)
72
+ - 🌍 **30+ Languages** - Multilingual support with native voice quality
73
+ - 🎙️ **27+ Professional AI Voices** - Character voices, accents, and unique personalities
63
74
  - 🎭 **19 Built-in Personalities** - From sarcastic to flirty, pirate to dry humor
64
- - 💬 **Sentiment System** - Apply personality styles to ANY voice
65
- - 🔌 **BMAD Plugin** - Auto voice switching for BMAD agents
66
- - 🔊 **Live Audio Feedback** - Hear task acknowledgments and completions
67
- - 🎵 **Voice Preview** - Listen before you choose
68
- - 🔄 **Audio Replay** - Replay the last 10 TTS messages
75
+ - 💬 **Advanced Sentiment System** - Apply personality styles to ANY voice without changing it
76
+ - 🔌 **Enhanced BMAD Plugin** - Auto voice switching for BMAD agents with multilingual support
77
+ - 🔊 **Live Audio Feedback** - Hear task acknowledgments and completions in any language
78
+ - 🎵 **Voice Preview & Replay** - Listen before you choose, replay last 10 TTS messages
79
+ - 🆓 **Free Option Available** - Use Piper TTS with no API key required
69
80
  - ⚡ **One-Command Install** - Get started in seconds
70
81
 
71
82
  [↑ Back to top](#-table-of-contents)
@@ -100,9 +111,34 @@ npm install
100
111
  node bin/agent-vibes install
101
112
  ```
102
113
 
103
- ### Step 2: Get Your ElevenLabs API Key
114
+ ### Step 2: Choose Your TTS Provider
115
+
116
+ AgentVibes supports two TTS providers - pick the one that fits your needs:
117
+
118
+ #### **Option A: Piper TTS (Free, Recommended for Getting Started)** 🆓
119
+
120
+ **No setup required!** Piper TTS works out of the box with zero configuration.
121
+
122
+ - ✅ Completely free, no API key needed
123
+ - ✅ Works offline (perfect for Windows, WSL, Linux)
124
+ - ✅ 50+ neural voices
125
+ - ✅ 18 languages supported
126
+ - ✅ Privacy-focused local processing
127
+
128
+ **To use:** Just install AgentVibes and you're done! The installer will set Piper as default if no ElevenLabs key is detected.
104
129
 
105
- 1. Sign up at [elevenlabs.io](https://elevenlabs.io/) (free tier available!)
130
+ #### **Option B: ElevenLabs (Premium AI Voices)** 🎤
131
+
132
+ **Best for production and variety.** Requires API key but offers 150+ premium voices.
133
+
134
+ - ✅ 150+ professional AI voices
135
+ - ✅ 30+ languages with multilingual v2
136
+ - ✅ Studio-quality audio with emotional range
137
+ - ✅ Character voices and unique personalities
138
+
139
+ **Setup steps:**
140
+
141
+ 1. Sign up at [elevenlabs.io](https://elevenlabs.io/) (free tier: 10,000 chars/month)
106
142
  2. Copy your API key from the dashboard
107
143
  3. Add it to your environment:
108
144
 
@@ -112,6 +148,8 @@ echo 'export ELEVENLABS_API_KEY="your-api-key-here"' >> ~/.bashrc
112
148
  source ~/.bashrc
113
149
  ```
114
150
 
151
+ **Switch providers anytime:** `/agent-vibes:provider switch`
152
+
115
153
  ### Step 3: Enable Voice in Claude Code
116
154
 
117
155
  ```bash
@@ -124,6 +162,117 @@ source ~/.bashrc
124
162
 
125
163
  ---
126
164
 
165
+ ## 🎭 Multi-Provider Support
166
+
167
+ AgentVibes v2.0 introduces **multi-provider TTS support** - choose between premium ElevenLabs AI voices or free offline Piper TTS!
168
+
169
+ ### 🎤 ElevenLabs (Premium AI Voices)
170
+
171
+ **Features:**
172
+ - 150+ professional AI voices
173
+ - 30+ languages with multilingual v2 model
174
+ - Studio-quality audio with emotional range
175
+ - Character voices, accents, and unique personalities
176
+ - Voices include: Aria, Archer, Cowboy Bob, Pirate Marshal, Grandpa Spuds, Jessica Anne Bogart, and more!
177
+
178
+ **Requirements:**
179
+ - ElevenLabs API key (get free tier at [elevenlabs.io](https://elevenlabs.io))
180
+ - Internet connection for API calls
181
+
182
+ **Pricing (2025):**
183
+ - Free: 10,000 chars/month (light use)
184
+ - Starter: $5/month - 30,000 chars
185
+ - Creator: $22/month - 100,000 chars
186
+ - Pro: $99/month - 500,000 chars
187
+
188
+ ### 🆓 Piper TTS (Free, Offline)
189
+
190
+ **Features:**
191
+ - 50+ neural voices, completely free
192
+ - 18 languages supported
193
+ - No API key required
194
+ - Works offline (perfect for Windows, WSL, and Linux)
195
+ - Privacy-focused local processing
196
+ - Cross-platform support (Windows, macOS, Linux)
197
+
198
+ **Requirements:**
199
+ - None! Works out of the box
200
+ - Automatic voice download on first use
201
+ - Native Windows support - no additional setup needed
202
+
203
+ ### Provider Commands
204
+
205
+ ```bash
206
+ # View current provider
207
+ /agent-vibes:provider info
208
+
209
+ # List available providers
210
+ /agent-vibes:provider list
211
+
212
+ # Switch providers instantly
213
+ /agent-vibes:provider switch
214
+
215
+ # Test provider functionality
216
+ /agent-vibes:provider test
217
+ ```
218
+
219
+ ### Switching Between Providers
220
+
221
+ **During Installation:**
222
+ The installer asks which provider you prefer and sets it up automatically.
223
+
224
+ **After Installation:**
225
+ ```bash
226
+ # Switch to Piper TTS (free)
227
+ /agent-vibes:provider switch
228
+ # Select: piper
229
+
230
+ # Switch to ElevenLabs (premium)
231
+ /agent-vibes:provider switch
232
+ # Select: elevenlabs
233
+ ```
234
+
235
+ **Automatic Fallback:**
236
+ If ElevenLabs API key is missing, AgentVibes automatically falls back to Piper TTS.
237
+
238
+ ### Provider Comparison
239
+
240
+ | Feature | ElevenLabs | Piper TTS |
241
+ |---------|-----------|-----------|
242
+ | **Voices** | 150+ premium AI | 50+ neural voices |
243
+ | **Cost** | $0-99/month | Free forever |
244
+ | **Quality** | Studio-grade | High-quality neural |
245
+ | **Languages** | 30+ with multilingual v2 | 18 languages |
246
+ | **Offline** | ❌ Requires internet | ✅ Works offline |
247
+ | **API Key** | ✅ Required | ❌ Not needed |
248
+ | **Emotional Range** | ✅ Advanced | ⚠️ Limited |
249
+ | **Character Voices** | ✅ Extensive library | ⚠️ Standard voices |
250
+ | **Platform Support** | All platforms | Windows, macOS, Linux, WSL |
251
+ | **Best For** | Production, demos, variety | Development, privacy, Windows users |
252
+
253
+ ### Which Provider Should I Choose?
254
+
255
+ **Choose ElevenLabs if:**
256
+ - You want premium studio-quality voices
257
+ - You need extensive character voice variety
258
+ - You're creating demos or production content
259
+ - You want advanced emotional range
260
+ - You have a budget for API costs
261
+
262
+ **Choose Piper TTS if:**
263
+ - You want completely free TTS (especially great for Windows!)
264
+ - You prefer offline/local processing
265
+ - You're on Windows, WSL, or Linux
266
+ - You value privacy and data control
267
+ - You're in development/testing phase
268
+ - You don't want to manage API keys or billing
269
+
270
+ **Pro Tip:** Use Piper for development and ElevenLabs for production/demos!
271
+
272
+ [↑ Back to top](#-table-of-contents)
273
+
274
+ ---
275
+
127
276
  ## 🎤 Commands Reference
128
277
 
129
278
  All commands are prefixed with `/agent-vibes:`
@@ -391,28 +540,46 @@ When you set a language, AgentVibes intelligently selects the best voice:
391
540
  your-project/
392
541
  └── .claude/
393
542
  ├── commands/
394
- │ ├── agent-vibes/ # Voice commands
543
+ │ ├── agent-vibes/ # 15 voice commands
395
544
  │ └── agent-vibes-bmad.md # BMAD plugin command
396
545
  ├── hooks/
546
+ │ ├── play-tts.sh # Main TTS (provider-aware)
547
+ │ ├── play-tts-elevenlabs.sh # ElevenLabs implementation
548
+ │ ├── play-tts-piper.sh # Piper implementation
549
+ │ ├── provider-manager.sh # Provider switching
550
+ │ ├── provider-commands.sh # Provider CLI
551
+ │ ├── language-manager.sh # Language system
397
552
  │ ├── voice-manager.sh # Voice switching
398
553
  │ ├── personality-manager.sh # Personality system
399
554
  │ ├── sentiment-manager.sh # Sentiment system
400
- │ ├── bmad-voice-manager.sh # BMAD plugin
401
- │ ├── play-tts.sh # TTS playback
402
- └── voices-config.sh # Voice ID mappings
403
- ├── personalities/ # 19 personality templates
555
+ │ ├── bmad-voice-manager.sh # BMAD integration
556
+ │ ├── piper-voice-manager.sh # Piper voices
557
+ ├── piper-download-voices.sh # Piper downloader
558
+ │ └── voices-config.sh # Voice ID mappings
559
+ ├── personalities/ # 19 personality templates
404
560
  ├── plugins/
405
- │ └── bmad-voices.md # BMAD voice mappings
561
+ │ └── bmad-voices.md # BMAD voice mappings
406
562
  ├── output-styles/
407
- │ └── agent-vibes.md # Voice output style
408
- └── audio/ # Generated TTS files
563
+ │ └── agent-vibes.md # Voice output style
564
+ └── audio/ # Generated TTS files
409
565
  ```
410
566
 
411
567
  ### Voice Settings Storage
412
568
 
413
- - **Current Voice**: `~/.claude/tts-voice.txt`
414
- - **Current Personality**: `~/.claude/tts-personality.txt`
415
- - **Current Sentiment**: `~/.claude/tts-sentiment.txt`
569
+ **Project-Local Settings** (`.claude/` in project):
570
+ - **Current Provider**: `tts-provider.txt` - Active TTS provider (elevenlabs/piper)
571
+ - **Current Voice**: `tts-voice.txt` - Selected voice name
572
+ - **Current Personality**: `tts-personality.txt` - Active personality
573
+ - **Current Sentiment**: `tts-sentiment.txt` - Active sentiment
574
+ - **Current Language**: `tts-language.txt` - Selected language
575
+
576
+ **Global Fallback** (`~/.claude/`):
577
+ Settings fall back to global config if project-local doesn't exist.
578
+
579
+ **How it works:**
580
+ 1. AgentVibes checks `.claude/` in current project first
581
+ 2. Falls back to `~/.claude/` if project setting doesn't exist
582
+ 3. This allows different voices/personalities per project!
416
583
 
417
584
  Settings persist across Claude Code sessions!
418
585
 
@@ -687,6 +854,38 @@ The update command will:
687
854
 
688
855
  ---
689
856
 
857
+ ## ⚠️ Important Disclaimers
858
+
859
+ **API Costs & Usage:**
860
+ - ElevenLabs usage may incur charges based on your subscription tier and character usage
861
+ - Users are solely responsible for their own API costs and usage
862
+ - Free tier: 10,000 characters/month | Paid plans: $5-99/month
863
+ - See [ElevenLabs Pricing](https://elevenlabs.io/pricing) for current rates
864
+
865
+ **Third-Party Services:**
866
+ - This project integrates with ElevenLabs (TTS API) and Piper TTS (local processing)
867
+ - We are **not affiliated with, endorsed by, or officially connected** to ElevenLabs, Anthropic, or Claude
868
+ - ElevenLabs and Piper TTS are subject to their respective terms of service
869
+
870
+ **Privacy & Data:**
871
+ - **ElevenLabs**: Your text prompts are sent to ElevenLabs servers for processing
872
+ - **Piper TTS**: All processing happens locally on your machine, no external data transmission
873
+ - Review [ElevenLabs Privacy Policy](https://elevenlabs.io/privacy) for their data handling
874
+
875
+ **Software License:**
876
+ - Provided "as-is" under Apache 2.0 License without warranty of any kind
877
+ - See [LICENSE](LICENSE) file for full terms
878
+ - No liability for data loss, bugs, service interruptions, or any damages
879
+
880
+ **Use at Your Own Risk:**
881
+ - This is open-source software maintained by the community
882
+ - Always test in development before production use
883
+ - Monitor your API usage and costs regularly
884
+
885
+ [↑ Back to top](#-table-of-contents)
886
+
887
+ ---
888
+
690
889
  ## 🙏 Credits
691
890
 
692
891
  **Built with ❤️ by [Paul Preibisch](https://github.com/paulpreibisch)**
@@ -696,12 +895,14 @@ The update command will:
696
895
  - 🌐 GitHub: [paulpreibisch](https://github.com/paulpreibisch)
697
896
 
698
897
  **Powered by:**
699
- - [ElevenLabs](https://elevenlabs.io/) AI voices
700
- - [Claude Code](https://claude.com/claude-code)
898
+ - [ElevenLabs](https://elevenlabs.io/) - Premium AI voices
899
+ - [Piper TTS](https://github.com/rhasspy/piper) - Free neural voices
900
+ - [Claude Code](https://claude.com/claude-code) - AI coding assistant
701
901
  - Licensed under Apache 2.0
702
902
 
703
- **Inspired by:**
704
- - 💡 [Claude Code Hooks Mastery](https://github.com/disler/claude-code-hooks-mastery) by [@disler](https://github.com/disler)
903
+ **Special Thanks:**
904
+ - 💡 [Claude Code Hooks Mastery](https://github.com/disler/claude-code-hooks-mastery) by [@disler](https://github.com/disler) - Hooks inspiration
905
+ - 🤖 [BMAD METHOD](https://github.com/bmad-code-org/BMAD-METHOD) - Multi-agent framework with auto voice switching integration
705
906
 
706
907
  [↑ Back to top](#-table-of-contents)
707
908
 
package/RELEASE_NOTES.md CHANGED
@@ -1,5 +1,119 @@
1
1
  # 🎤 AgentVibes Release Notes
2
2
 
3
+ ## 📦 v1.1.3 - Symlink Support & Audio Fixes (2025-10-04)
4
+
5
+ ### 🤖 AI Summary
6
+
7
+ 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.
8
+
9
+ ### 🐛 Bug Fixes
10
+
11
+ #### Symlinked Hooks Directory Support
12
+ - **Fixed**: Settings interference when `.claude/hooks` is a symlink
13
+ - **Root Cause**: Scripts used physical path resolution which broke project isolation
14
+ - **Impact**: Multiple projects sharing symlinked hooks now maintain separate voices/personalities
15
+ - **Solution**: Use logical paths (`pwd` without `-P`) to preserve symlink structure
16
+ - **Benefit**: Works seamlessly for both normal and symlinked installations
17
+
18
+ **What Was Broken:**
19
+ ```bash
20
+ # Before: Projects sharing symlinked hooks interfered with each other
21
+ Project A: .claude/hooks -> /shared/hooks (uses Project B's voice!)
22
+ Project B: .claude/hooks -> /shared/hooks (correct)
23
+
24
+ # After: Each project maintains independent settings
25
+ Project A: Uses .claude/tts-voice.txt (correct!)
26
+ Project B: Uses .claude/tts-voice.txt (correct!)
27
+ ```
28
+
29
+ #### WSL Audio Static Prevention
30
+ - **Fixed**: Static/pop at beginning of TTS audio in WSL environments
31
+ - **Root Cause**: Audio driver initialization delay
32
+ - **Solution**: Add 200ms silence padding before audio playback using ffmpeg
33
+ - **Benefit**: Clean, static-free audio playback
34
+
35
+ ### 🔧 Technical Changes
36
+
37
+ **Modified Files:**
38
+ - `.claude/hooks/voice-manager.sh` - Fixed path resolution for symlinks
39
+ - `.claude/hooks/personality-manager.sh` - Fixed path resolution for symlinks
40
+ - `.claude/hooks/sentiment-manager.sh` - Fixed path resolution for symlinks
41
+ - `.claude/hooks/language-manager.sh` - Fixed path resolution for symlinks
42
+ - `.claude/hooks/play-tts.sh` - Added ffmpeg silence padding
43
+
44
+ **Path Resolution Changes:**
45
+ ```bash
46
+ # Before (broken with symlinks):
47
+ PROJECT_ROOT="$SCRIPT_DIR/../.."
48
+ VOICE_FILE="$PROJECT_ROOT/.claude/tts-voice.txt"
49
+
50
+ # After (works with and without symlinks):
51
+ SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
52
+ CLAUDE_DIR="$(dirname "$SCRIPT_PATH")"
53
+ VOICE_FILE="$CLAUDE_DIR/tts-voice.txt"
54
+ ```
55
+
56
+ **Audio Padding Implementation:**
57
+ ```bash
58
+ # Add 200ms silence at start to prevent static
59
+ if command -v ffmpeg &> /dev/null; then
60
+ ffmpeg -f lavfi -i anullsrc=r=44100:cl=stereo:d=0.2 \
61
+ -i "${TEMP_FILE}" -filter_complex "[0:a][1:a]concat=n=2:v=0:a=1[out]" \
62
+ -map "[out]" -y "${PADDED_FILE}"
63
+ fi
64
+ ```
65
+
66
+ ### 💡 Use Cases Now Supported
67
+
68
+ **Team Environments with Shared Hooks:**
69
+ ```bash
70
+ # Share hooks across team projects
71
+ team-9/SageDev/.claude/hooks -> /shared/team-hooks
72
+ team-10/production/.claude/hooks -> /shared/team-hooks
73
+
74
+ # Each project maintains independent settings
75
+ team-9/SageDev/.claude/tts-voice.txt = "Sarcastic Voice"
76
+ team-10/production/.claude/tts-voice.txt = "Professional Voice"
77
+ ```
78
+
79
+ **WSL Audio Users:**
80
+ - No more static/pop sounds at audio start
81
+ - Smooth, professional TTS playback
82
+ - Works automatically if ffmpeg is installed
83
+
84
+ ### 📊 Release Stats
85
+
86
+ - **5 files changed**: All manager scripts updated for symlink support
87
+ - **1 audio enhancement**: Silence padding for WSL
88
+ - **2 critical bugs fixed**
89
+ - **0 breaking changes**
90
+ - **100% backward compatible**: Normal installations unaffected
91
+
92
+ ### 🔄 Migration Notes
93
+
94
+ **For Existing Users:**
95
+ - If you don't use symlinks: No action needed, everything works as before
96
+ - If you use symlinked hooks: Update via `/agent-vibes:update` to fix settings isolation
97
+ - WSL users: Install ffmpeg for static-free audio (`sudo apt-get install ffmpeg`)
98
+
99
+ **For New Users:**
100
+ - Symlinks work out of the box
101
+ - No special configuration needed
102
+
103
+ ---
104
+
105
+ ## 📝 Recent Commits
106
+
107
+ ```
108
+ 2044dc5 chore: Bump version to 1.1.2
109
+ 8460977 fix: Installer now uses correct directory when run via npx
110
+ 2ce7910 docs: Update version to v1.1.1 [skip ci]
111
+ 5dc3ed1 docs: Update README to version v1.1.1 [skip ci]
112
+ 2a46ab9 feat: Release v1.1.1 - Enhanced update display
113
+ ```
114
+
115
+ ---
116
+
3
117
  ## 📦 v1.1.2 - NPX Installation Fix (2025-10-04)
4
118
 
5
119
  ### 🤖 AI Summary