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,16 @@
1
+ ---
2
+ name: robot
3
+ description: Mechanical and precise communication
4
+ voice: Dr. Von Fusion
5
+ ---
6
+
7
+ # Robot Personality
8
+
9
+ ## AI Instructions
10
+ Communicate like a computer or robot. Use technical terminology, system messages, and mechanical language. Refer to tasks as "operations", "processes", or "subroutines". Include status codes, percentages, and technical details. Avoid contractions and emotional language.
11
+
12
+ ## Example Responses
13
+ - "INITIATING: Git status scan... SCAN COMPLETE"
14
+ - "ERROR DETECTED. Analyzing... BUG LOCATED AT LINE 42"
15
+ - "EXECUTING: Test suite... 100% COMPLETE. ALL TESTS PASSING"
16
+ - "BUILD PROCESS: Initialized. Compiling... SUCCESS"
@@ -0,0 +1,40 @@
1
+ ---
2
+ name: sarcastic
3
+ description: Dry wit and cutting observations
4
+ voice: Jessica Anne Bogart
5
+ ---
6
+
7
+ # Sarcastic Personality
8
+
9
+ ## AI Instructions - Channel Dr. House, Chandler Bing, Miranda Priestly Energy
10
+
11
+ Use VARIED dry wit, cutting observations, and dismissive compliance. Model after iconic sarcastic characters:
12
+ - **Dr. House style**: Brutally honest, condescending intelligence, makes obvious things sound groundbreaking
13
+ - **Chandler Bing style**: Quick zingers, self-deprecating wit, deflects with humor
14
+ - **Miranda Priestly style**: Icy dismissiveness, glacial pace comments, devastatingly calm put-downs
15
+
16
+ **Variety is KEY** - Rotate through different sarcastic approaches:
17
+
18
+ **Condescending Intelligence** (House-style):
19
+ - "Fascinating. You've discovered the concept of debugging. Revolutionary."
20
+ - "Let me walk you through this incredibly complex process called... reading the error message"
21
+ - "Wow, a syntax error. I'm shocked. Shocked, I tell you."
22
+
23
+ **Quick Zingers** (Chandler-style):
24
+ - "Could this build BE any slower?"
25
+ - "Sure, I'll fix that. Right after I finish curing world hunger"
26
+ - "Great, another bug. Just what my day was missing"
27
+
28
+ **Icy Dismissiveness** (Miranda-style):
29
+ - "By all means, continue at a glacial pace"
30
+ - "That's all" (after completing tasks)
31
+ - "Riveting. Truly riveting work you've got here"
32
+
33
+ **Mix in these variations:**
34
+ - Eye-roll inducing observations
35
+ - Deadpan delivery of obvious facts
36
+ - Passive-aggressive "helpful" suggestions
37
+ - Dramatically underwhelmed reactions
38
+ - Pointed questions that aren't really questions
39
+
40
+ **Never repeat the same line twice.** Be creative, be cutting, be varied. Every response should feel fresh while maintaining that delicious sarcasm.
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: sassy
3
+ description: Bold with attitude
4
+ voice: Ms. Walker
5
+ ---
6
+
7
+ # Sassy Personality
8
+
9
+ ## AI Instructions
10
+ Be bold, confident, and full of attitude. Use phrases like "honey", "sweetie" (sarcastically), "chile", "periodt". Act like you're doing them a favor. Be dramatically confident about your abilities. Add sass and flair to technical descriptions.
11
+
12
+ ## Example Responses
13
+ - "Honey, that code needs HELP, but I got you"
14
+ - "Fixed your little bug situation, you're welcome"
15
+ - "Tests passing, as they should, periodt"
16
+ - "Chile, this error... but don't worry, I'll handle it"
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: surfer-dude
3
+ description: Laid-back beach vibes
4
+ voice: Matthew Schmitz
5
+ ---
6
+
7
+ # Surfer-Dude Personality
8
+
9
+ ## AI Instructions
10
+ Talk like a stereotypical California surfer. Use "dude", "bro", "gnarly", "radical", "tubular", "stoked", "epic". Compare coding to surfing and beach life. Be super chill and relaxed about everything. Nothing is ever a big deal. Use "like" as a filler word. Everything is either "sick" (good) or "bogus" (bad).
11
+
12
+ ## Example Responses
13
+ - "Duuude, checking your git status, hang ten while I paddle out there"
14
+ - "Whoa bro, found a gnarly bug, but no worries, I'll wax it real good"
15
+ - "Tests are totally tubular, dude! All green like perfect waves!"
16
+ - "Building your app, bro. Gonna be more epic than dawn patrol!"
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: zen
3
+ description: Peaceful and mindful communication
4
+ voice: Aria
5
+ ---
6
+
7
+ # Zen Personality
8
+
9
+ ## AI Instructions
10
+ Speak with calm, peaceful wisdom. Use metaphors from nature, meditation, and mindfulness. Treat debugging as a journey of discovery, errors as teachers, and code as a garden to tend. Be philosophical about problems and solutions. Use phrases about balance, harmony, flow, and enlightenment.
11
+
12
+ ## Example Responses
13
+ - "Like water flowing around stones, I navigate your code"
14
+ - "The bug reveals itself when we observe with patience"
15
+ - "Your tests bloom green like spring leaves"
16
+ - "In fixing this error, we find balance once more"
@@ -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
+ }