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
@@ -0,0 +1,482 @@
1
+ **Release Date:** October 2025
2
+ **Breaking Changes:** None - Fully backward compatible!
3
+
4
+ ---
5
+
6
+ ## 🚀 Major Features
7
+
8
+ ### 🎭 Multi-Provider TTS System
9
+
10
+ The biggest update in AgentVibes history! **Choose your TTS provider** and switch seamlessly without reconfiguring.
11
+
12
+ #### **Two Provider Options:**
13
+
14
+ **🎤 ElevenLabs (Premium AI Voices)**
15
+ - 150+ professional AI voices
16
+ - 30+ languages with multilingual v2 model
17
+ - Studio-quality audio with emotional range
18
+ - Character voices, accents, and personalities
19
+ - Voices: Aria, Archer, Cowboy Bob, Pirate Marshal, Grandpa Spuds, Jessica Anne Bogart, and more!
20
+
21
+ **🆓 Piper TTS (Free, Offline)**
22
+ - 50+ neural voices, completely free
23
+ - 18 languages supported
24
+ - No API key required
25
+ - Works offline (perfect for WSL/Linux)
26
+ - Privacy-focused local processing
27
+
28
+ #### **New Provider Commands:**
29
+
30
+ ```bash
31
+ # View current provider
32
+ /agent-vibes:provider info
33
+
34
+ # List available providers
35
+ /agent-vibes:provider list
36
+
37
+ # Switch providers instantly
38
+ /agent-vibes:provider switch
39
+
40
+ # Test provider functionality
41
+ /agent-vibes:provider test
42
+ ```
43
+
44
+ #### **Intelligent Provider Selection:**
45
+ - **Interactive installer** asks which provider you prefer
46
+ - **Automatic fallback** if API key missing
47
+ - **Voice compatibility** - automatically maps voices to provider capabilities
48
+ - **Persistent settings** - your choice is saved across sessions
49
+
50
+ ---
51
+
52
+ ### 🌍 Advanced Multilingual Support (30+ Languages)
53
+
54
+ AgentVibes now speaks **30+ languages** with native voice quality!
55
+
56
+ #### **Supported Languages:**
57
+ - 🇪🇸 Spanish, 🇫🇷 French, 🇩🇪 German, 🇮🇹 Italian, 🇵🇹 Portuguese
58
+ - 🇨🇳 Chinese, 🇯🇵 Japanese, 🇰🇷 Korean, 🇮🇳 Hindi, 🇸🇦 Arabic
59
+ - 🇵🇱 Polish, 🇳🇱 Dutch, 🇹🇷 Turkish, 🇸🇪 Swedish, 🇷🇺 Russian
60
+ - And 15+ more!
61
+
62
+ #### **New Language Commands:**
63
+
64
+ ```bash
65
+ # Set language for TTS
66
+ /agent-vibes:set-language spanish
67
+ /agent-vibes:set-language french
68
+ /agent-vibes:set-language german
69
+
70
+ # List all supported languages
71
+ /agent-vibes:set-language list
72
+
73
+ # Check current language
74
+ /agent-vibes:whoami
75
+
76
+ # Reset to English
77
+ /agent-vibes:set-language english
78
+ ```
79
+
80
+ #### **Smart Voice Selection:**
81
+ - **Language-optimized voices** - Auto-switches to Antoni (Spanish), Rachel (French), Domi (German), Bella (Italian)
82
+ - **BMAD integration** - Agents speak in your chosen language
83
+ - **Personality support** - All 19 personalities work in any language
84
+ - **Provider-aware** - Works with both ElevenLabs and Piper TTS
85
+
86
+ #### **Language Priority System:**
87
+ 1. BMAD Agent + Language Set → Uses multilingual version of agent voice
88
+ 2. BMAD Agent only → Uses agent's default voice (English)
89
+ 3. Language Set only → Switches to language-optimized voice
90
+ 4. Neither → Uses current voice/personality
91
+
92
+ ---
93
+
94
+ ### 🎤 Expanded Voice Library (27+ Voices)
95
+
96
+ **New multilingual voices added:**
97
+
98
+ | Voice | Character | Languages | Best For |
99
+ |-------|-----------|-----------|----------|
100
+ | **Antoni** | Well-balanced | 30+ | Spanish, International |
101
+ | **Rachel** | Clear, professional | 30+ | French, Global communication |
102
+ | **Domi** | Strong, confident | 30+ | German, Leadership |
103
+ | **Bella** | Soft, engaging | 30+ | Italian, Friendly |
104
+ | **Charlotte** | Expressive | 30+ | French, German, Spanish |
105
+ | **Matilda** | Warm | 30+ | Spanish, Portuguese |
106
+
107
+ **Enhanced English character voices:**
108
+ - Juniper, Tiffany, Tom (Team coordination)
109
+ - Ralf Eisend (International)
110
+ - Amy (Chinese accent)
111
+ - Lutz Laugh (Jovial)
112
+ - Burt Reynolds (Smooth baritone)
113
+ - Demon Monster (Dramatic)
114
+
115
+ ---
116
+
117
+ ### 💭 Advanced Sentiment System
118
+
119
+ **Apply personality styles to ANY voice** without changing it!
120
+
121
+ #### **How It Works:**
122
+ - **Personality** = Voice + Style (e.g., Pirate Marshal + pirate speak)
123
+ - **Sentiment** = Your Voice + Style (e.g., Aria + sarcasm)
124
+
125
+ #### **New Sentiment Commands:**
126
+
127
+ ```bash
128
+ # Apply sentiment to current voice
129
+ /agent-vibes:sentiment sarcastic
130
+ /agent-vibes:sentiment flirty
131
+ /agent-vibes:sentiment zen
132
+
133
+ # List all sentiments
134
+ /agent-vibes:sentiment list
135
+
136
+ # Check current sentiment
137
+ /agent-vibes:sentiment get
138
+
139
+ # Remove sentiment
140
+ /agent-vibes:sentiment clear
141
+
142
+ # Combine voice + sentiment
143
+ /agent-vibes:switch Aria --sentiment sarcastic
144
+ ```
145
+
146
+ #### **All 19 Sentiments Available:**
147
+ sarcastic, flirty, pirate, grandpa, dry-humor, angry, robot, zen, professional, dramatic, millennial, surfer-dude, sassy, poetic, moody, funny, annoying, crass, normal, random
148
+
149
+ ---
150
+
151
+ ### 🔌 Enhanced BMAD Plugin Integration
152
+
153
+ **Auto-voice switching for multi-agent workflows** - now with language support!
154
+
155
+ #### **What's New:**
156
+
157
+ **🌍 Multilingual BMAD Agents:**
158
+ - Set language, activate agent → Agent speaks in that language
159
+ - Intelligent voice fallback if agent's voice doesn't support language
160
+ - All 10 BMAD agents work in 30+ languages
161
+
162
+ **🎭 Per-Agent Personality:**
163
+ ```bash
164
+ # Set agent with custom personality
165
+ /agent-vibes-bmad set pm "Jessica Anne Bogart" zen
166
+ /agent-vibes-bmad set dev "Matthew Schmitz" sarcastic
167
+ ```
168
+
169
+ **📊 Enhanced Status Display:**
170
+ ```bash
171
+ /agent-vibes-bmad status # Shows all mappings + current language
172
+ ```
173
+
174
+ #### **Default BMAD Voice Mappings:**
175
+
176
+ | Agent | Role | Voice | Personality |
177
+ |-------|------|-------|-------------|
178
+ | pm | Product Manager | Jessica Anne Bogart | professional |
179
+ | dev | Developer | Matthew Schmitz | normal |
180
+ | qa | QA Engineer | Burt Reynolds | professional |
181
+ | architect | Architect | Michael | normal |
182
+ | po | Product Owner | Tiffany | professional |
183
+ | analyst | Analyst | Ralf Eisend | normal |
184
+ | sm | Scrum Master | Ms. Walker | professional |
185
+ | ux-expert | UX Expert | Aria | normal |
186
+ | bmad-master | BMAD Master | Archer | zen |
187
+ | bmad-orchestrator | Orchestrator | Tom | professional |
188
+
189
+ ---
190
+
191
+ ### 🎵 Audio Management Features
192
+
193
+ #### **Voice Preview System:**
194
+ ```bash
195
+ /agent-vibes:preview # Hear first 3 voices
196
+ /agent-vibes:preview 10 # Hear first 10
197
+ /agent-vibes:preview last 5 # Hear last 5
198
+ ```
199
+
200
+ #### **Audio Replay:**
201
+ ```bash
202
+ /agent-vibes:replay # Replay last message
203
+ /agent-vibes:replay 3 # Replay 3rd-to-last
204
+ ```
205
+
206
+ #### **Voice Testing:**
207
+ ```bash
208
+ /agent-vibes:sample Aria # Test specific voice
209
+ /agent-vibes:sample "Cowboy Bob" # Test with custom text
210
+ ```
211
+
212
+ ---
213
+
214
+ ### ⚙️ Enhanced Installation & Updates
215
+
216
+ #### **Interactive Installer:**
217
+ - **Provider selection** during install
218
+ - **API key detection** and setup guidance
219
+ - **Piper TTS option** with automatic voice download
220
+ - **Visual progress** with ora spinners
221
+ - **Release notes display** showing latest changes
222
+
223
+ #### **Self-Update System:**
224
+ ```bash
225
+ /agent-vibes:update # Update with confirmation
226
+ /agent-vibes:update --yes # Auto-confirm update
227
+ /agent-vibes:version # Check installed version
228
+ ```
229
+
230
+ #### **Update Features:**
231
+ - ✅ Updates all commands and hooks
232
+ - ✅ Adds new personalities (preserves custom ones)
233
+ - ✅ Shows release notes and commit history
234
+ - ✅ Preserves your settings and configurations
235
+ - ✅ Provider-aware (updates both ElevenLabs & Piper files)
236
+
237
+ ---
238
+
239
+ ### 🛠️ System Improvements
240
+
241
+ #### **Symlink Support:**
242
+ - Share hooks across projects via symlinks
243
+ - Maintain independent settings per project
244
+ - Project-local `.claude/` takes precedence over symlinks
245
+
246
+ #### **WSL Audio Fixes:**
247
+ - Automatic silence padding prevents audio static
248
+ - Enhanced audio playback for WSL2 users
249
+ - Cross-platform audio improvements
250
+
251
+ #### **GitHub Actions Integration:**
252
+ - Automated release creation
253
+ - Categorized release notes (feat/fix/chore)
254
+ - README auto-updates on release
255
+ - Comprehensive changelog generation
256
+
257
+ ---
258
+
259
+ ## 📦 What's Included
260
+
261
+ ### Installation Structure:
262
+ ```
263
+ .claude/
264
+ ├── commands/agent-vibes/ # 15 slash commands
265
+ ├── hooks/
266
+ │ ├── play-tts.sh # Main TTS (provider-aware)
267
+ │ ├── play-tts-elevenlabs.sh # ElevenLabs implementation
268
+ │ ├── play-tts-piper.sh # Piper implementation
269
+ │ ├── provider-manager.sh # Provider switching
270
+ │ ├── provider-commands.sh # Provider CLI
271
+ │ ├── language-manager.sh # Language system
272
+ │ ├── voice-manager.sh # Voice switching
273
+ │ ├── personality-manager.sh # Personality system
274
+ │ ├── sentiment-manager.sh # Sentiment system
275
+ │ ├── bmad-voice-manager.sh # BMAD integration
276
+ │ ├── piper-voice-manager.sh # Piper voices
277
+ │ └── piper-download-voices.sh # Piper downloader
278
+ ├── personalities/ # 19 personality templates
279
+ ├── plugins/
280
+ │ └── bmad-voices.md # BMAD mappings
281
+ ├── output-styles/
282
+ │ └── agent-vibes.md # Voice output style
283
+ └── audio/ # Generated TTS files
284
+ ```
285
+
286
+ ### Settings Storage:
287
+ - `tts-provider.txt` - Active provider (elevenlabs/piper)
288
+ - `tts-voice.txt` - Current voice
289
+ - `tts-personality.txt` - Active personality
290
+ - `tts-sentiment.txt` - Active sentiment
291
+ - `tts-language.txt` - Selected language
292
+
293
+ ---
294
+
295
+ ## 🎯 Complete Command Reference
296
+
297
+ ### Voice Commands:
298
+ - `/agent-vibes:list` - Show all voices
299
+ - `/agent-vibes:switch <voice>` - Change voice
300
+ - `/agent-vibes:whoami` - Show current setup
301
+ - `/agent-vibes:preview [N]` - Preview voices
302
+ - `/agent-vibes:sample <voice>` - Test voice
303
+ - `/agent-vibes:add <name> <id>` - Add custom voice
304
+ - `/agent-vibes:replay [N]` - Replay audio
305
+ - `/agent-vibes:get` - Get current voice
306
+
307
+ ### Provider Commands:
308
+ - `/agent-vibes:provider switch` - Change TTS provider
309
+ - `/agent-vibes:provider info` - Show current provider
310
+ - `/agent-vibes:provider list` - List all providers
311
+ - `/agent-vibes:provider test` - Test provider
312
+
313
+ ### Language Commands:
314
+ - `/agent-vibes:set-language <lang>` - Set TTS language
315
+ - `/agent-vibes:set-language list` - Show languages
316
+ - `/agent-vibes:set-language english` - Reset to English
317
+
318
+ ### Personality Commands:
319
+ - `/agent-vibes:personality <name>` - Set personality
320
+ - `/agent-vibes:personality list` - Show all
321
+ - `/agent-vibes:personality add <name>` - Create custom
322
+ - `/agent-vibes:personality edit <name>` - Edit file
323
+ - `/agent-vibes:personality get` - Show current
324
+ - `/agent-vibes:personality reset` - Reset to normal
325
+
326
+ ### Sentiment Commands:
327
+ - `/agent-vibes:sentiment <name>` - Apply sentiment
328
+ - `/agent-vibes:sentiment list` - Show all
329
+ - `/agent-vibes:sentiment get` - Show current
330
+ - `/agent-vibes:sentiment clear` - Remove sentiment
331
+
332
+ ### BMAD Plugin Commands:
333
+ - `/agent-vibes-bmad status` - Show plugin status
334
+ - `/agent-vibes-bmad enable` - Enable plugin
335
+ - `/agent-vibes-bmad disable` - Disable plugin
336
+ - `/agent-vibes-bmad list` - List agent mappings
337
+ - `/agent-vibes-bmad set <agent> <voice> [personality]` - Update mapping
338
+ - `/agent-vibes-bmad edit` - Edit configuration
339
+
340
+ ### System Commands:
341
+ - `/agent-vibes:version` - Show version
342
+ - `/agent-vibes:update [--yes]` - Update to latest
343
+
344
+ ---
345
+
346
+ ## 🔄 Migration Guide
347
+
348
+ ### From v1.x to v2.0:
349
+
350
+ **No breaking changes!** v2.0 is fully backward compatible.
351
+
352
+ **Recommended steps:**
353
+
354
+ 1. **Update AgentVibes:**
355
+ ```bash
356
+ /agent-vibes:update
357
+ ```
358
+
359
+ 2. **Choose your provider:**
360
+ - If you have ElevenLabs API key → Keep using ElevenLabs
361
+ - Want free/offline → Switch to Piper TTS:
362
+ ```bash
363
+ /agent-vibes:provider switch
364
+ ```
365
+
366
+ 3. **Try multilingual:**
367
+ ```bash
368
+ /agent-vibes:set-language spanish
369
+ ```
370
+
371
+ 4. **Explore sentiments:**
372
+ ```bash
373
+ /agent-vibes:sentiment sarcastic
374
+ ```
375
+
376
+ **Your existing settings are preserved:**
377
+ - ✅ Current voice
378
+ - ✅ Personality preferences
379
+ - ✅ Custom voices
380
+ - ✅ BMAD mappings
381
+
382
+ ---
383
+
384
+ ## 💰 Pricing & Cost Management
385
+
386
+ ### ElevenLabs Pricing (2025):
387
+ - **Free:** $0/month - 10,000 chars (light use)
388
+ - **Starter:** $5/month - 30,000 chars (casual)
389
+ - **Creator:** $22/month - 100,000 chars (regular)
390
+ - **Pro:** $99/month - 500,000 chars (heavy)
391
+
392
+ ### Piper TTS:
393
+ - **Completely FREE** - No limits, no API key
394
+ - Offline processing
395
+ - Privacy-focused
396
+ - Great for development and testing
397
+
398
+ ### Cost-Saving Tips:
399
+ 1. Use Piper TTS for development
400
+ 2. Use ElevenLabs for demos/production
401
+ 3. Switch providers with one command:
402
+ ```bash
403
+ /agent-vibes:provider switch
404
+ ```
405
+
406
+ ---
407
+
408
+ ## 🐛 Bug Fixes
409
+
410
+ - Fixed symlink support for shared hooks
411
+ - Fixed WSL audio static with silence padding
412
+ - Fixed installer directory detection for npx
413
+ - Fixed release notes display in installer
414
+ - Enhanced provider detection and fallback
415
+ - Improved error handling for missing API keys
416
+ - Better voice compatibility checking
417
+
418
+ ---
419
+
420
+ ## 📊 Statistics
421
+
422
+ **v2.0.0 by the numbers:**
423
+ - 🎤 **200+ voices** across both providers
424
+ - 🌍 **30+ languages** supported
425
+ - 🎭 **19 personalities** included
426
+ - 💭 **19 sentiments** available
427
+ - 📝 **15 slash commands** total
428
+ - 🔧 **12 hook scripts** installed
429
+ - 🔌 **2 TTS providers** available
430
+ - 🤖 **10 BMAD agents** with voice mapping
431
+
432
+ ---
433
+
434
+ ## 🙏 Credits
435
+
436
+ **Built with ❤️ by [Paul Preibisch](https://github.com/paulpreibisch)**
437
+
438
+ **Powered by:**
439
+ - [ElevenLabs](https://elevenlabs.io/) - Premium AI voices
440
+ - [Piper TTS](https://github.com/rhasspy/piper) - Free neural voices
441
+ - [Claude Code](https://claude.com/claude-code) - AI coding assistant
442
+
443
+ **Special Thanks:**
444
+ - [@disler](https://github.com/disler) for Claude Code hooks inspiration
445
+ - ElevenLabs team for incredible voice technology
446
+ - Piper TTS community for open-source excellence
447
+ - BMAD community for multi-agent framework
448
+
449
+ ---
450
+
451
+ ## 🚀 Get Started
452
+
453
+ ### Install v2.0:
454
+ ```bash
455
+ npx agentvibes install
456
+ ```
457
+
458
+ ### Update from v1.x:
459
+ ```bash
460
+ /agent-vibes:update
461
+ ```
462
+
463
+ ### Enable Voice in Claude Code:
464
+ ```bash
465
+ /output-style agent-vibes
466
+ ```
467
+
468
+ ---
469
+
470
+ ## 📚 Resources
471
+
472
+ - 📖 **Documentation:** [README.md](README.md)
473
+ - 🐛 **Issues:** [GitHub Issues](https://github.com/paulpreibisch/AgentVibes/issues)
474
+ - 💬 **Discussions:** [GitHub Discussions](https://github.com/paulpreibisch/AgentVibes/discussions)
475
+ - 🌐 **Website:** [agentvibes.org](https://agentvibes.org)
476
+ - 📦 **NPM:** [npmjs.com/package/agentvibes](https://www.npmjs.com/package/agentvibes)
477
+
478
+ ---
479
+
480
+ **Ready to code with personality in multiple languages? Install v2.0 now! 🎤✨**
481
+
482
+ [↑ Back to top](#-agentvibes-v200---the-multi-provider-revolution)
@@ -0,0 +1,60 @@
1
+ {
2
+ "mcpServers": {
3
+ "sentry": {
4
+ "command": "npx",
5
+ "args": [
6
+ "@sentry/mcp-server@latest",
7
+ "--host=sentry.io"
8
+ ],
9
+ "env": {
10
+ "SENTRY_ACCESS_TOKEN": "${SENTRY_ACCESS_TOKEN}",
11
+ "OPENAI_API_KEY": "${OPENAI_API_KEY}"
12
+ }
13
+ },
14
+ "whatsapp": {
15
+ "command": "/home/fire/.local/bin/uv",
16
+ "args": [
17
+ "--directory",
18
+ "/home/fire/claude/whatsapp-mcp/whatsapp-mcp-server",
19
+ "run",
20
+ "main.py"
21
+ ]
22
+ },
23
+ "chrome-devtools": {
24
+ "command": "/home/fire/.nvm/versions/node/v22.20.0/bin/npx",
25
+ "args": [
26
+ "chrome-devtools-mcp@latest",
27
+ "--browserUrl=http://localhost:9222"
28
+ ],
29
+ "env": {
30
+ "PATH": "/home/fire/.nvm/versions/node/v22.20.0/bin:${PATH}",
31
+ "NODE_PATH": "/home/fire/.nvm/versions/node/v22.20.0/lib/node_modules"
32
+ }
33
+ },
34
+ "elevenlabs": {
35
+ "command": "npx",
36
+ "args": ["@microagents/mcp-server-elevenlabs"],
37
+ "env": {
38
+ "ELEVENLABS_API_KEY": "${ELEVENLABS_API_KEY}",
39
+ "ELEVENLABS_MCP_BASE_PATH": "/home/fire/claude/AgentVibes/agentvibes.org/.claude/audio"
40
+ }
41
+ },
42
+ "vercel": {
43
+ "command": "npx",
44
+ "args": ["-y", "@vercel/mcp-server"],
45
+ "env": {
46
+ "VERCEL_API_TOKEN": "${AGENT_VIBES_VERCEL_TOKEN}"
47
+ }
48
+ },
49
+ "spaceship": {
50
+ "command": "node",
51
+ "args": [
52
+ "/home/fire/claude/spaceship-mcp/dist/index.js"
53
+ ],
54
+ "env": {
55
+ "SPACESHIP_API_KEY": "${SPACESHIP_API_KEY}",
56
+ "SPACESHIP_API_SECRET": "${SPACESHIP_API_SECRET}"
57
+ }
58
+ }
59
+ }
60
+ }
@@ -0,0 +1,56 @@
1
+ # CHANGELOG.md
2
+
3
+ ## [5.0.0] - 2025-02-04
4
+
5
+ - Updgrade to Tailwind v4
6
+ - Update dependencies
7
+
8
+ ## [4.1.0] - 2024-12-08
9
+
10
+ - Update dependencies + Upgrade to Next.js 15
11
+
12
+ ## [4.0.0] - 2024-09-11
13
+
14
+ Redesign the entire template
15
+
16
+ ## [3.3.0] - 2023-12-08
17
+
18
+ Update to Next.js 14
19
+ Update dependencies
20
+
21
+ ## [3.2.2] - 2023-10-04
22
+
23
+ Update Twitter icon
24
+ Update dependencies
25
+
26
+ ## [3.2.0] - 2023-05-31
27
+
28
+ Update dependencies and fix some issues
29
+
30
+ ## [3.1.0] - 2023-05-07
31
+
32
+ Modal video improvements
33
+
34
+ ## [3.0.0] - 2023-04-12
35
+
36
+ Conversion to Next.js
37
+
38
+ ## [2.0.3] - 2023-03-28
39
+
40
+ Fix video
41
+
42
+ ## [2.0.2] - 2023-03-28
43
+
44
+ Add self-hosted video
45
+
46
+ ## [2.0.1] - 2023-02-16
47
+
48
+ Remove header links
49
+
50
+ ## [2.0.0] - 2023-02-16
51
+
52
+ Replace Cruip CSS with Tailwind CSS
53
+
54
+ ## [1.0.0] - 2020-04-07
55
+
56
+ First release
@@ -0,0 +1,93 @@
1
+ # Free React / Next.js landing page template
2
+
3
+ ![Open React / Next.js template preview](https://github.com/user-attachments/assets/522a5e46-2a0e-48ca-80eb-87c7fa58f3ea)
4
+
5
+ **Open** is a **free React / Next.js landing page template built with Tailwind CSS** for developers/makers who want to create a quick and professional landing page for their open source projects, SaaS products, online services, and more.
6
+
7
+ **UPDATE 2025-02-04** Added Tailwind v4 support!
8
+
9
+ Use it for whatever you want, and be sure to reach us out on [Twitter](https://twitter.com/Cruip_com) if you build anything cool/useful with it.
10
+
11
+ Created and maintained with ❤️ by [Cruip.com](https://cruip.com).
12
+
13
+ _Version 1.0.0 built with the Cruip CSS is available [here](https://github.com/cruip/open-react-template/releases/tag/1.0.0)._
14
+ _Version 2.0.3 built with Tailwind CSS and React + Vite is available [here](https://github.com/cruip/open-react-template/releases/tag/2.0.3)._
15
+ _Version 3.3.0 (before redesign) built with Tailwind CSS and Next.js is available [here](https://github.com/cruip/open-react-template/releases/tag/3.3.0)._
16
+
17
+ ## Live demo
18
+
19
+ Check the live demo here 👉️ [https://open.cruip.com/](https://open.cruip.com/)
20
+
21
+ ## Open PRO
22
+
23
+ [![Open Pro](https://github.com/user-attachments/assets/2062c728-95f1-4d59-aa2d-d63556f625d5)](https://cruip.com/)
24
+
25
+ ## Design files
26
+
27
+ If you need the design files, you can download them from Figma's Community 👉 https://bit.ly/401KSUS
28
+
29
+ ## Usage
30
+
31
+ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
32
+
33
+ ### Getting Started
34
+
35
+ First, run the development server:
36
+
37
+ ```bash
38
+ npm run dev
39
+ # or
40
+ pnpm dev (recommended)
41
+ # or
42
+ yarn dev
43
+ ```
44
+
45
+ Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
46
+
47
+ You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
48
+
49
+ [API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
50
+
51
+ The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
52
+
53
+ This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
54
+
55
+ ### Learn More
56
+
57
+ To learn more about Next.js, take a look at the following resources:
58
+
59
+ - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
60
+ - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
61
+
62
+ You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
63
+
64
+ ### Deploy on Vercel
65
+
66
+ The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
67
+
68
+ Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
69
+
70
+ ### Support notes
71
+
72
+ This template has been developed with the App Router (`app`) and React Server Components. If you’re unfamiliar with these beta features, you can find more information about them on the Next.js beta documentation page. So, please note that any request dealing with React (e.g. extra features, customisations, et cetera) is to be considered out of the support scope.
73
+
74
+ For more information about what support covers, please see our (FAQs)[https://cruip.com/faq/].
75
+
76
+ ## Credits
77
+
78
+ - [Nucleo](https://nucleoapp.com/)
79
+
80
+ ## Terms and License
81
+
82
+ - Released under the [GPL](https://www.gnu.org/licenses/gpl-3.0.html).
83
+ - Copyright 2024 [Cruip](https://cruip.com/).
84
+ - Use it for personal and commercial projects, but please don’t republish, redistribute, or resell the template.
85
+ - Attribution is not required, although it is really appreciated.
86
+
87
+ ## About Us
88
+
89
+ We're an Italian developer/designer duo creating high-quality design/code resources for developers, makers, and startups.
90
+
91
+ ## Stay in the loop
92
+
93
+ If you would like to know when we release new resources, you can follow [@pacovitiello](https://x.com/pacovitiello) and [@DavidePacilio](https://x.com/DavidePacilio) on X, or you can subscribe to our [newsletter](https://cruip.com/newsletter/).
@@ -0,0 +1,15 @@
1
+ import PageIllustration from "@/components/page-illustration";
2
+
3
+ export default function AuthLayout({
4
+ children,
5
+ }: {
6
+ children: React.ReactNode;
7
+ }) {
8
+ return (
9
+ <main className="relative flex grow flex-col">
10
+ <PageIllustration multiple />
11
+
12
+ {children}
13
+ </main>
14
+ );
15
+ }