agentvibes 2.0.1 → 2.0.5

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 (113) hide show
  1. package/.claude/commands/agent-vibes/provider.md +54 -0
  2. package/.claude/hooks/piper-download-voices.sh +133 -0
  3. package/.claude/hooks/piper-voice-manager.sh +194 -0
  4. package/.claude/hooks/play-tts-elevenlabs.sh +201 -0
  5. package/.claude/hooks/play-tts-piper.sh +175 -0
  6. package/.claude/hooks/play-tts.sh.backup-20251005-163851 +138 -0
  7. package/.claude/hooks/provider-commands.sh +374 -0
  8. package/.claude/hooks/provider-manager.sh +196 -0
  9. package/.claude/language-voices.yaml +372 -0
  10. package/.claude/piper-voices/en_US-lessac-medium.onnx +0 -0
  11. package/.claude/piper-voices/en_US-lessac-medium.onnx.json +493 -0
  12. package/.mcp-minimal.json +53 -0
  13. package/README.md +2 -2
  14. package/agentvibes.org/.claude/commands/agent-vibes/add.md +21 -0
  15. package/agentvibes.org/.claude/commands/agent-vibes/agent-vibes.md +68 -0
  16. package/agentvibes.org/.claude/commands/agent-vibes/commands.json +53 -0
  17. package/agentvibes.org/.claude/commands/agent-vibes/get.md +9 -0
  18. package/agentvibes.org/.claude/commands/agent-vibes/list.md +13 -0
  19. package/agentvibes.org/.claude/commands/agent-vibes/personality.md +79 -0
  20. package/agentvibes.org/.claude/commands/agent-vibes/preview.md +16 -0
  21. package/agentvibes.org/.claude/commands/agent-vibes/provider.md +54 -0
  22. package/agentvibes.org/.claude/commands/agent-vibes/replay.md +19 -0
  23. package/agentvibes.org/.claude/commands/agent-vibes/sample.md +12 -0
  24. package/agentvibes.org/.claude/commands/agent-vibes/sentiment.md +52 -0
  25. package/agentvibes.org/.claude/commands/agent-vibes/set-language.md +47 -0
  26. package/agentvibes.org/.claude/commands/agent-vibes/set-pretext.md +65 -0
  27. package/agentvibes.org/.claude/commands/agent-vibes/switch.md +53 -0
  28. package/agentvibes.org/.claude/commands/agent-vibes/update.md +20 -0
  29. package/agentvibes.org/.claude/commands/agent-vibes/version.md +10 -0
  30. package/agentvibes.org/.claude/commands/agent-vibes/whoami.md +7 -0
  31. package/agentvibes.org/.claude/journal/2025-10-07.html +373 -0
  32. package/agentvibes.org/.claude/journal/index.html +91 -0
  33. package/agentvibes.org/.mcp-minimal.json +60 -0
  34. package/agentvibes.org/CHANGELOG.md +56 -0
  35. package/agentvibes.org/README.md +93 -0
  36. package/agentvibes.org/app/(auth)/layout.tsx +15 -0
  37. package/agentvibes.org/app/(auth)/reset-password/page.tsx +45 -0
  38. package/agentvibes.org/app/(auth)/signin/page.tsx +82 -0
  39. package/agentvibes.org/app/(auth)/signup/page.tsx +104 -0
  40. package/agentvibes.org/app/(default)/layout.tsx +31 -0
  41. package/agentvibes.org/app/(default)/page.tsx +20 -0
  42. package/agentvibes.org/app/api/hello/route.ts +3 -0
  43. package/agentvibes.org/app/css/additional-styles/theme.css +82 -0
  44. package/agentvibes.org/app/css/additional-styles/utility-patterns.css +55 -0
  45. package/agentvibes.org/app/css/style.css +100 -0
  46. package/agentvibes.org/app/layout.tsx +63 -0
  47. package/agentvibes.org/components/cta.tsx +58 -0
  48. package/agentvibes.org/components/features.tsx +256 -0
  49. package/agentvibes.org/components/hero-home.tsx +133 -0
  50. package/agentvibes.org/components/modal-video.tsx +137 -0
  51. package/agentvibes.org/components/page-illustration.tsx +55 -0
  52. package/agentvibes.org/components/spotlight.tsx +77 -0
  53. package/agentvibes.org/components/testimonials.tsx +282 -0
  54. package/agentvibes.org/components/ui/footer.tsx +82 -0
  55. package/agentvibes.org/components/ui/header.tsx +53 -0
  56. package/agentvibes.org/components/ui/logo.tsx +10 -0
  57. package/agentvibes.org/components/workflows.tsx +176 -0
  58. package/agentvibes.org/next.config.js +4 -0
  59. package/agentvibes.org/package-lock.json +1974 -0
  60. package/agentvibes.org/package.json +30 -0
  61. package/agentvibes.org/pnpm-lock.yaml +1141 -0
  62. package/agentvibes.org/postcss.config.js +5 -0
  63. package/agentvibes.org/public/audio/02-sarcastic.mp3 +0 -0
  64. package/agentvibes.org/public/audio/03-angry.mp3 +0 -0
  65. package/agentvibes.org/public/audio/04-grandpa.mp3 +0 -0
  66. package/agentvibes.org/public/audio/05-sarcastic-example2.mp3 +0 -0
  67. package/agentvibes.org/public/audio/french-rachel.mp3 +0 -0
  68. package/agentvibes.org/public/audio/spanish-antoni.mp3 +0 -0
  69. package/agentvibes.org/public/favicon.ico +0 -0
  70. package/agentvibes.org/public/fonts/nacelle-italic.woff2 +0 -0
  71. package/agentvibes.org/public/fonts/nacelle-regular.woff2 +0 -0
  72. package/agentvibes.org/public/fonts/nacelle-semibold.woff2 +0 -0
  73. package/agentvibes.org/public/fonts/nacelle-semibolditalic.woff2 +0 -0
  74. package/agentvibes.org/public/images/blurred-shape-gray.svg +1 -0
  75. package/agentvibes.org/public/images/blurred-shape.svg +1 -0
  76. package/agentvibes.org/public/images/client-logo-01.svg +1 -0
  77. package/agentvibes.org/public/images/client-logo-02.svg +1 -0
  78. package/agentvibes.org/public/images/client-logo-03.svg +1 -0
  79. package/agentvibes.org/public/images/client-logo-04.svg +1 -0
  80. package/agentvibes.org/public/images/client-logo-05.svg +1 -0
  81. package/agentvibes.org/public/images/client-logo-06.svg +1 -0
  82. package/agentvibes.org/public/images/client-logo-07.svg +1 -0
  83. package/agentvibes.org/public/images/client-logo-08.svg +1 -0
  84. package/agentvibes.org/public/images/client-logo-09.svg +1 -0
  85. package/agentvibes.org/public/images/features.png +0 -0
  86. package/agentvibes.org/public/images/footer-illustration.svg +1 -0
  87. package/agentvibes.org/public/images/hero-image-01.jpg +0 -0
  88. package/agentvibes.org/public/images/logo.svg +1 -0
  89. package/agentvibes.org/public/images/page-illustration.svg +1 -0
  90. package/agentvibes.org/public/images/secondary-illustration.svg +1 -0
  91. package/agentvibes.org/public/images/testimonial-01.jpg +0 -0
  92. package/agentvibes.org/public/images/testimonial-02.jpg +0 -0
  93. package/agentvibes.org/public/images/testimonial-03.jpg +0 -0
  94. package/agentvibes.org/public/images/testimonial-04.jpg +0 -0
  95. package/agentvibes.org/public/images/testimonial-05.jpg +0 -0
  96. package/agentvibes.org/public/images/testimonial-06.jpg +0 -0
  97. package/agentvibes.org/public/images/testimonial-07.jpg +0 -0
  98. package/agentvibes.org/public/images/testimonial-08.jpg +0 -0
  99. package/agentvibes.org/public/images/testimonial-09.jpg +0 -0
  100. package/agentvibes.org/public/images/workflow-01.png +0 -0
  101. package/agentvibes.org/public/images/workflow-02.png +0 -0
  102. package/agentvibes.org/public/images/workflow-03.png +0 -0
  103. package/agentvibes.org/public/videos/video.mp4 +0 -0
  104. package/agentvibes.org/tsconfig.json +28 -0
  105. package/agentvibes.org/utils/useMasonry.tsx +67 -0
  106. package/agentvibes.org/utils/useMousePosition.tsx +27 -0
  107. package/docs/ai-optimized-documentation-standards.md +306 -0
  108. package/docs/architecture/provider-system.md +574 -0
  109. package/docs/voice-mapping-format.md +218 -0
  110. package/package.json +1 -1
  111. package/scripts/piper-voice/README.md +145 -0
  112. package/scripts/piper-voice/wsl-install.sh +193 -0
  113. package/src/installer.js +20 -5
@@ -0,0 +1,493 @@
1
+ {
2
+ "audio": {
3
+ "sample_rate": 22050,
4
+ "quality": "medium"
5
+ },
6
+ "espeak": {
7
+ "voice": "en-us"
8
+ },
9
+ "inference": {
10
+ "noise_scale": 0.667,
11
+ "length_scale": 1,
12
+ "noise_w": 0.8
13
+ },
14
+ "phoneme_type": "espeak",
15
+ "phoneme_map": {},
16
+ "phoneme_id_map": {
17
+ "_": [
18
+ 0
19
+ ],
20
+ "^": [
21
+ 1
22
+ ],
23
+ "$": [
24
+ 2
25
+ ],
26
+ " ": [
27
+ 3
28
+ ],
29
+ "!": [
30
+ 4
31
+ ],
32
+ "'": [
33
+ 5
34
+ ],
35
+ "(": [
36
+ 6
37
+ ],
38
+ ")": [
39
+ 7
40
+ ],
41
+ ",": [
42
+ 8
43
+ ],
44
+ "-": [
45
+ 9
46
+ ],
47
+ ".": [
48
+ 10
49
+ ],
50
+ ":": [
51
+ 11
52
+ ],
53
+ ";": [
54
+ 12
55
+ ],
56
+ "?": [
57
+ 13
58
+ ],
59
+ "a": [
60
+ 14
61
+ ],
62
+ "b": [
63
+ 15
64
+ ],
65
+ "c": [
66
+ 16
67
+ ],
68
+ "d": [
69
+ 17
70
+ ],
71
+ "e": [
72
+ 18
73
+ ],
74
+ "f": [
75
+ 19
76
+ ],
77
+ "h": [
78
+ 20
79
+ ],
80
+ "i": [
81
+ 21
82
+ ],
83
+ "j": [
84
+ 22
85
+ ],
86
+ "k": [
87
+ 23
88
+ ],
89
+ "l": [
90
+ 24
91
+ ],
92
+ "m": [
93
+ 25
94
+ ],
95
+ "n": [
96
+ 26
97
+ ],
98
+ "o": [
99
+ 27
100
+ ],
101
+ "p": [
102
+ 28
103
+ ],
104
+ "q": [
105
+ 29
106
+ ],
107
+ "r": [
108
+ 30
109
+ ],
110
+ "s": [
111
+ 31
112
+ ],
113
+ "t": [
114
+ 32
115
+ ],
116
+ "u": [
117
+ 33
118
+ ],
119
+ "v": [
120
+ 34
121
+ ],
122
+ "w": [
123
+ 35
124
+ ],
125
+ "x": [
126
+ 36
127
+ ],
128
+ "y": [
129
+ 37
130
+ ],
131
+ "z": [
132
+ 38
133
+ ],
134
+ "æ": [
135
+ 39
136
+ ],
137
+ "ç": [
138
+ 40
139
+ ],
140
+ "ð": [
141
+ 41
142
+ ],
143
+ "ø": [
144
+ 42
145
+ ],
146
+ "ħ": [
147
+ 43
148
+ ],
149
+ "ŋ": [
150
+ 44
151
+ ],
152
+ "œ": [
153
+ 45
154
+ ],
155
+ "ǀ": [
156
+ 46
157
+ ],
158
+ "ǁ": [
159
+ 47
160
+ ],
161
+ "ǂ": [
162
+ 48
163
+ ],
164
+ "ǃ": [
165
+ 49
166
+ ],
167
+ "ɐ": [
168
+ 50
169
+ ],
170
+ "ɑ": [
171
+ 51
172
+ ],
173
+ "ɒ": [
174
+ 52
175
+ ],
176
+ "ɓ": [
177
+ 53
178
+ ],
179
+ "ɔ": [
180
+ 54
181
+ ],
182
+ "ɕ": [
183
+ 55
184
+ ],
185
+ "ɖ": [
186
+ 56
187
+ ],
188
+ "ɗ": [
189
+ 57
190
+ ],
191
+ "ɘ": [
192
+ 58
193
+ ],
194
+ "ə": [
195
+ 59
196
+ ],
197
+ "ɚ": [
198
+ 60
199
+ ],
200
+ "ɛ": [
201
+ 61
202
+ ],
203
+ "ɜ": [
204
+ 62
205
+ ],
206
+ "ɞ": [
207
+ 63
208
+ ],
209
+ "ɟ": [
210
+ 64
211
+ ],
212
+ "ɠ": [
213
+ 65
214
+ ],
215
+ "ɡ": [
216
+ 66
217
+ ],
218
+ "ɢ": [
219
+ 67
220
+ ],
221
+ "ɣ": [
222
+ 68
223
+ ],
224
+ "ɤ": [
225
+ 69
226
+ ],
227
+ "ɥ": [
228
+ 70
229
+ ],
230
+ "ɦ": [
231
+ 71
232
+ ],
233
+ "ɧ": [
234
+ 72
235
+ ],
236
+ "ɨ": [
237
+ 73
238
+ ],
239
+ "ɪ": [
240
+ 74
241
+ ],
242
+ "ɫ": [
243
+ 75
244
+ ],
245
+ "ɬ": [
246
+ 76
247
+ ],
248
+ "ɭ": [
249
+ 77
250
+ ],
251
+ "ɮ": [
252
+ 78
253
+ ],
254
+ "ɯ": [
255
+ 79
256
+ ],
257
+ "ɰ": [
258
+ 80
259
+ ],
260
+ "ɱ": [
261
+ 81
262
+ ],
263
+ "ɲ": [
264
+ 82
265
+ ],
266
+ "ɳ": [
267
+ 83
268
+ ],
269
+ "ɴ": [
270
+ 84
271
+ ],
272
+ "ɵ": [
273
+ 85
274
+ ],
275
+ "ɶ": [
276
+ 86
277
+ ],
278
+ "ɸ": [
279
+ 87
280
+ ],
281
+ "ɹ": [
282
+ 88
283
+ ],
284
+ "ɺ": [
285
+ 89
286
+ ],
287
+ "ɻ": [
288
+ 90
289
+ ],
290
+ "ɽ": [
291
+ 91
292
+ ],
293
+ "ɾ": [
294
+ 92
295
+ ],
296
+ "ʀ": [
297
+ 93
298
+ ],
299
+ "ʁ": [
300
+ 94
301
+ ],
302
+ "ʂ": [
303
+ 95
304
+ ],
305
+ "ʃ": [
306
+ 96
307
+ ],
308
+ "ʄ": [
309
+ 97
310
+ ],
311
+ "ʈ": [
312
+ 98
313
+ ],
314
+ "ʉ": [
315
+ 99
316
+ ],
317
+ "ʊ": [
318
+ 100
319
+ ],
320
+ "ʋ": [
321
+ 101
322
+ ],
323
+ "ʌ": [
324
+ 102
325
+ ],
326
+ "ʍ": [
327
+ 103
328
+ ],
329
+ "ʎ": [
330
+ 104
331
+ ],
332
+ "ʏ": [
333
+ 105
334
+ ],
335
+ "ʐ": [
336
+ 106
337
+ ],
338
+ "ʑ": [
339
+ 107
340
+ ],
341
+ "ʒ": [
342
+ 108
343
+ ],
344
+ "ʔ": [
345
+ 109
346
+ ],
347
+ "ʕ": [
348
+ 110
349
+ ],
350
+ "ʘ": [
351
+ 111
352
+ ],
353
+ "ʙ": [
354
+ 112
355
+ ],
356
+ "ʛ": [
357
+ 113
358
+ ],
359
+ "ʜ": [
360
+ 114
361
+ ],
362
+ "ʝ": [
363
+ 115
364
+ ],
365
+ "ʟ": [
366
+ 116
367
+ ],
368
+ "ʡ": [
369
+ 117
370
+ ],
371
+ "ʢ": [
372
+ 118
373
+ ],
374
+ "ʲ": [
375
+ 119
376
+ ],
377
+ "ˈ": [
378
+ 120
379
+ ],
380
+ "ˌ": [
381
+ 121
382
+ ],
383
+ "ː": [
384
+ 122
385
+ ],
386
+ "ˑ": [
387
+ 123
388
+ ],
389
+ "˞": [
390
+ 124
391
+ ],
392
+ "β": [
393
+ 125
394
+ ],
395
+ "θ": [
396
+ 126
397
+ ],
398
+ "χ": [
399
+ 127
400
+ ],
401
+ "ᵻ": [
402
+ 128
403
+ ],
404
+ "ⱱ": [
405
+ 129
406
+ ],
407
+ "0": [
408
+ 130
409
+ ],
410
+ "1": [
411
+ 131
412
+ ],
413
+ "2": [
414
+ 132
415
+ ],
416
+ "3": [
417
+ 133
418
+ ],
419
+ "4": [
420
+ 134
421
+ ],
422
+ "5": [
423
+ 135
424
+ ],
425
+ "6": [
426
+ 136
427
+ ],
428
+ "7": [
429
+ 137
430
+ ],
431
+ "8": [
432
+ 138
433
+ ],
434
+ "9": [
435
+ 139
436
+ ],
437
+ "̧": [
438
+ 140
439
+ ],
440
+ "̃": [
441
+ 141
442
+ ],
443
+ "̪": [
444
+ 142
445
+ ],
446
+ "̯": [
447
+ 143
448
+ ],
449
+ "̩": [
450
+ 144
451
+ ],
452
+ "ʰ": [
453
+ 145
454
+ ],
455
+ "ˤ": [
456
+ 146
457
+ ],
458
+ "ε": [
459
+ 147
460
+ ],
461
+ "↓": [
462
+ 148
463
+ ],
464
+ "#": [
465
+ 149
466
+ ],
467
+ "\"": [
468
+ 150
469
+ ],
470
+ "↑": [
471
+ 151
472
+ ],
473
+ "̺": [
474
+ 152
475
+ ],
476
+ "̻": [
477
+ 153
478
+ ]
479
+ },
480
+ "num_symbols": 256,
481
+ "num_speakers": 1,
482
+ "speaker_id_map": {},
483
+ "piper_version": "1.0.0",
484
+ "language": {
485
+ "code": "en_US",
486
+ "family": "en",
487
+ "region": "US",
488
+ "name_native": "English",
489
+ "name_english": "English",
490
+ "country_english": "United States"
491
+ },
492
+ "dataset": "lessac"
493
+ }
@@ -0,0 +1,53 @@
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/SoraSage/teams/team-10/dev__globify__production/.claude/audio"
40
+ }
41
+ },
42
+ "spaceship": {
43
+ "command": "node",
44
+ "args": [
45
+ "/home/fire/claude/spaceship-mcp/dist/index.js"
46
+ ],
47
+ "env": {
48
+ "SPACESHIP_API_KEY": "${SPACESHIP_API_KEY}",
49
+ "SPACESHIP_API_SECRET": "${SPACESHIP_API_SECRET}"
50
+ }
51
+ }
52
+ }
53
+ }
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  [![Publish](https://github.com/paulpreibisch/AgentVibes/actions/workflows/publish.yml/badge.svg)](https://github.com/paulpreibisch/AgentVibes/actions/workflows/publish.yml)
12
12
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
13
13
 
14
- **Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.0.1
14
+ **Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.0.3
15
15
 
16
16
  ---
17
17
 
@@ -45,7 +45,7 @@
45
45
 
46
46
  ## 📰 Latest Release
47
47
 
48
- **[v2.0.0 - The Multi-Provider Revolution](https://github.com/paulpreibisch/AgentVibes/releases/tag/v2.0.1)** 🎉
48
+ **[v2.0.0 - The Multi-Provider Revolution](https://github.com/paulpreibisch/AgentVibes/releases/tag/v2.0.3)** 🎉
49
49
 
50
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!
51
51
 
@@ -0,0 +1,21 @@
1
+ ---
2
+ description: Add a new custom ElevenLabs TTS voice
3
+ argument-hint: <voice_name> <voice_id>
4
+ ---
5
+
6
+ Add a new custom ElevenLabs TTS voice to your voice library.
7
+
8
+ Usage:
9
+ - `/agent-vibes:add "My Custom Voice" abc123xyz456789`
10
+ - `/agent-vibes:add Narrator KTPVrSVAEUSJRClDzBw7`
11
+
12
+ The voice ID should be a 15-30 character alphanumeric string from your ElevenLabs account.
13
+
14
+ To find your voice IDs:
15
+ 1. Go to https://elevenlabs.io/app/voice-library
16
+ 2. Click on a voice
17
+ 3. Copy the voice ID from the URL or settings
18
+
19
+ After adding, you can switch to it with `/agent-vibes:switch "Voice Name"`
20
+
21
+ !bash .claude/hooks/voice-manager.sh add $ARGUMENTS
@@ -0,0 +1,68 @@
1
+ ---
2
+ description: ElevenLabs TTS voice management commands
3
+ ---
4
+
5
+ # 🎤 ElevenLabs Voice Management
6
+
7
+ Manage your ElevenLabs text-to-speech voices with these commands:
8
+
9
+ ## Available Commands
10
+
11
+ ### `/agent-vibes:list [first|last] [N]`
12
+ List all available voices, with optional filtering
13
+ - `/agent-vibes:list` - Show all voices
14
+ - `/agent-vibes:list first 5` - Show first 5 voices
15
+ - `/agent-vibes:list last 3` - Show last 3 voices
16
+
17
+ ### `/agent-vibes:preview [first|last] [N]`
18
+ Preview voices by playing audio samples
19
+ - `/agent-vibes:preview` - Preview first 3 voices
20
+ - `/agent-vibes:preview 5` - Preview first 5 voices
21
+ - `/agent-vibes:preview last 5` - Preview last 5 voices
22
+
23
+ ### `/agent-vibes:switch <voice_name>`
24
+ Switch to a different default voice
25
+ - `/agent-vibes:switch Northern Terry`
26
+ - `/agent-vibes:switch "Cowboy Bob"`
27
+
28
+ ### `/agent-vibes:get`
29
+ Display the currently selected voice
30
+
31
+ ### `/agent-vibes:add <name> <voice_id>`
32
+ Add a new custom voice from your ElevenLabs account
33
+ - `/agent-vibes:add "My Voice" abc123xyz456`
34
+
35
+ ### `/agent-vibes:replay [N]`
36
+ Replay recently played TTS audio
37
+ - `/agent-vibes:replay` - Replay last audio
38
+ - `/agent-vibes:replay 1` - Replay most recent
39
+ - `/agent-vibes:replay 2` - Replay second-to-last
40
+ - `/agent-vibes:replay 3` - Replay third-to-last
41
+
42
+ Keeps last 10 audio files in history.
43
+
44
+ ### `/agent-vibes:set-pretext <word>`
45
+ Set a prefix word/phrase for all TTS messages
46
+ - `/agent-vibes:set-pretext AgentVibes` - All TTS starts with "AgentVibes:"
47
+ - `/agent-vibes:set-pretext "Project Alpha"` - Custom phrase
48
+ - `/agent-vibes:set-pretext ""` - Clear pretext
49
+
50
+ Saved locally in `.claude/config/agentvibes.json`
51
+
52
+ ## Getting Voice IDs
53
+
54
+ To add your own custom voices:
55
+ 1. Go to https://elevenlabs.io/app/voice-library
56
+ 2. Select or create a voice
57
+ 3. Copy the voice ID (15-30 character alphanumeric string)
58
+ 4. Use `/agent-vibes:add` to add it
59
+
60
+ ## Default Voices
61
+
62
+ The system comes with these Character Voices from ElevenLabs:
63
+ - Northern Terry, Grandpa Spuds Oxley, Ms. Walker
64
+ - Ralf Eisend, Amy, Michael, Jessica Anne Bogart
65
+ - Aria, Lutz Laugh, Dr. Von Fusion, Matthew Schmitz
66
+ - Demon Monster, Cowboy Bob, Drill Sergeant
67
+
68
+ Enjoy your TTS experience! 🎵
@@ -0,0 +1,53 @@
1
+ {
2
+ "namespace": "agent-vibes",
3
+ "commands": [
4
+ {
5
+ "name": "list",
6
+ "description": "List all available ElevenLabs voices"
7
+ },
8
+ {
9
+ "name": "preview",
10
+ "description": "Preview ElevenLabs voices by playing audio samples"
11
+ },
12
+ {
13
+ "name": "switch",
14
+ "description": "Switch to a different ElevenLabs voice"
15
+ },
16
+ {
17
+ "name": "whoami",
18
+ "description": "Display currently selected voice"
19
+ },
20
+ {
21
+ "name": "sample",
22
+ "description": "Play a sample with the current or specified voice"
23
+ },
24
+ {
25
+ "name": "replay",
26
+ "description": "Replay the last TTS message"
27
+ },
28
+ {
29
+ "name": "personality",
30
+ "description": "Manage AI personality settings"
31
+ },
32
+ {
33
+ "name": "sentiment",
34
+ "description": "Set temporary personality sentiment"
35
+ },
36
+ {
37
+ "name": "set-pretext",
38
+ "description": "Configure pre-TTS message text"
39
+ },
40
+ {
41
+ "name": "set-language",
42
+ "description": "Set TTS language for multilingual voices"
43
+ },
44
+ {
45
+ "name": "add",
46
+ "description": "Add a new personality"
47
+ },
48
+ {
49
+ "name": "get",
50
+ "description": "Get personality details"
51
+ }
52
+ ]
53
+ }
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: Get the currently selected ElevenLabs TTS voice
3
+ ---
4
+
5
+ Display the currently selected ElevenLabs TTS voice.
6
+
7
+ This shows which voice is currently set as the default for TTS audio generation.
8
+
9
+ !bash .claude/hooks/voice-manager.sh get