agentvibes 2.0.17 → 2.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.bmad-core/agent-teams/team-all.yaml +15 -0
- package/.bmad-core/agent-teams/team-fullstack.yaml +19 -0
- package/.bmad-core/agent-teams/team-ide-minimal.yaml +11 -0
- package/.bmad-core/agent-teams/team-no-ui.yaml +14 -0
- package/.bmad-core/agents/analyst.md +84 -0
- package/.bmad-core/agents/architect.md +85 -0
- package/.bmad-core/agents/bmad-master.md +110 -0
- package/.bmad-core/agents/bmad-orchestrator.md +147 -0
- package/.bmad-core/agents/dev.md +81 -0
- package/.bmad-core/agents/pm.md +84 -0
- package/.bmad-core/agents/po.md +79 -0
- package/.bmad-core/agents/qa.md +87 -0
- package/.bmad-core/agents/sm.md +65 -0
- package/.bmad-core/agents/ux-expert.md +69 -0
- package/.bmad-core/checklists/architect-checklist.md +440 -0
- package/.bmad-core/checklists/change-checklist.md +184 -0
- package/.bmad-core/checklists/pm-checklist.md +372 -0
- package/.bmad-core/checklists/po-master-checklist.md +434 -0
- package/.bmad-core/checklists/story-dod-checklist.md +96 -0
- package/.bmad-core/checklists/story-draft-checklist.md +155 -0
- package/.bmad-core/core-config.yaml +22 -0
- package/.bmad-core/data/bmad-kb.md +809 -0
- package/.bmad-core/data/brainstorming-techniques.md +38 -0
- package/.bmad-core/data/elicitation-methods.md +156 -0
- package/.bmad-core/data/technical-preferences.md +5 -0
- package/.bmad-core/data/test-levels-framework.md +148 -0
- package/.bmad-core/data/test-priorities-matrix.md +174 -0
- package/.bmad-core/enhanced-ide-development-workflow.md +248 -0
- package/.bmad-core/install-manifest.yaml +230 -0
- package/.bmad-core/tasks/advanced-elicitation.md +119 -0
- package/.bmad-core/tasks/apply-qa-fixes.md +150 -0
- package/.bmad-core/tasks/brownfield-create-epic.md +162 -0
- package/.bmad-core/tasks/brownfield-create-story.md +149 -0
- package/.bmad-core/tasks/correct-course.md +72 -0
- package/.bmad-core/tasks/create-brownfield-story.md +314 -0
- package/.bmad-core/tasks/create-deep-research-prompt.md +280 -0
- package/.bmad-core/tasks/create-doc.md +103 -0
- package/.bmad-core/tasks/create-next-story.md +114 -0
- package/.bmad-core/tasks/document-project.md +345 -0
- package/.bmad-core/tasks/execute-checklist.md +88 -0
- package/.bmad-core/tasks/facilitate-brainstorming-session.md +138 -0
- package/.bmad-core/tasks/generate-ai-frontend-prompt.md +53 -0
- package/.bmad-core/tasks/index-docs.md +175 -0
- package/.bmad-core/tasks/kb-mode-interaction.md +77 -0
- package/.bmad-core/tasks/nfr-assess.md +345 -0
- package/.bmad-core/tasks/qa-gate.md +163 -0
- package/.bmad-core/tasks/review-story.md +316 -0
- package/.bmad-core/tasks/risk-profile.md +355 -0
- package/.bmad-core/tasks/shard-doc.md +187 -0
- package/.bmad-core/tasks/test-design.md +176 -0
- package/.bmad-core/tasks/trace-requirements.md +266 -0
- package/.bmad-core/tasks/validate-next-story.md +136 -0
- package/.bmad-core/templates/architecture-tmpl.yaml +651 -0
- package/.bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
- package/.bmad-core/templates/brownfield-architecture-tmpl.yaml +477 -0
- package/.bmad-core/templates/brownfield-prd-tmpl.yaml +281 -0
- package/.bmad-core/templates/competitor-analysis-tmpl.yaml +307 -0
- package/.bmad-core/templates/front-end-architecture-tmpl.yaml +219 -0
- package/.bmad-core/templates/front-end-spec-tmpl.yaml +350 -0
- package/.bmad-core/templates/fullstack-architecture-tmpl.yaml +824 -0
- package/.bmad-core/templates/market-research-tmpl.yaml +253 -0
- package/.bmad-core/templates/prd-tmpl.yaml +203 -0
- package/.bmad-core/templates/project-brief-tmpl.yaml +222 -0
- package/.bmad-core/templates/qa-gate-tmpl.yaml +103 -0
- package/.bmad-core/templates/story-tmpl.yaml +138 -0
- package/.bmad-core/user-guide.md +577 -0
- package/.bmad-core/utils/bmad-doc-template.md +327 -0
- package/.bmad-core/utils/workflow-management.md +71 -0
- package/.bmad-core/workflows/brownfield-fullstack.yaml +298 -0
- package/.bmad-core/workflows/brownfield-service.yaml +188 -0
- package/.bmad-core/workflows/brownfield-ui.yaml +198 -0
- package/.bmad-core/workflows/greenfield-fullstack.yaml +241 -0
- package/.bmad-core/workflows/greenfield-service.yaml +207 -0
- package/.bmad-core/workflows/greenfield-ui.yaml +236 -0
- package/.bmad-core/working-in-the-brownfield.md +606 -0
- package/.claude/activation-instructions +54 -0
- package/.claude/commands/BMad/agents/analyst.md +88 -0
- package/.claude/commands/BMad/agents/architect.md +89 -0
- package/.claude/commands/BMad/agents/bmad-master.md +114 -0
- package/.claude/commands/BMad/agents/bmad-orchestrator.md +151 -0
- package/.claude/commands/BMad/agents/dev.md +85 -0
- package/.claude/commands/BMad/agents/pm.md +88 -0
- package/.claude/commands/BMad/agents/po.md +83 -0
- package/.claude/commands/BMad/agents/qa.md +91 -0
- package/.claude/commands/BMad/agents/sm.md +69 -0
- package/.claude/commands/BMad/agents/ux-expert.md +73 -0
- package/.claude/commands/BMad/tasks/advanced-elicitation.md +123 -0
- package/.claude/commands/BMad/tasks/apply-qa-fixes.md +154 -0
- package/.claude/commands/BMad/tasks/brownfield-create-epic.md +166 -0
- package/.claude/commands/BMad/tasks/brownfield-create-story.md +153 -0
- package/.claude/commands/BMad/tasks/correct-course.md +76 -0
- package/.claude/commands/BMad/tasks/create-brownfield-story.md +318 -0
- package/.claude/commands/BMad/tasks/create-deep-research-prompt.md +284 -0
- package/.claude/commands/BMad/tasks/create-doc.md +107 -0
- package/.claude/commands/BMad/tasks/create-next-story.md +118 -0
- package/.claude/commands/BMad/tasks/document-project.md +349 -0
- package/.claude/commands/BMad/tasks/execute-checklist.md +92 -0
- package/.claude/commands/BMad/tasks/facilitate-brainstorming-session.md +142 -0
- package/.claude/commands/BMad/tasks/generate-ai-frontend-prompt.md +57 -0
- package/.claude/commands/BMad/tasks/index-docs.md +179 -0
- package/.claude/commands/BMad/tasks/kb-mode-interaction.md +81 -0
- package/.claude/commands/BMad/tasks/nfr-assess.md +349 -0
- package/.claude/commands/BMad/tasks/qa-gate.md +167 -0
- package/.claude/commands/BMad/tasks/review-story.md +320 -0
- package/.claude/commands/BMad/tasks/risk-profile.md +359 -0
- package/.claude/commands/BMad/tasks/shard-doc.md +191 -0
- package/.claude/commands/BMad/tasks/test-design.md +180 -0
- package/.claude/commands/BMad/tasks/trace-requirements.md +270 -0
- package/.claude/commands/BMad/tasks/validate-next-story.md +140 -0
- package/.claude/github-star-reminder.txt +1 -1
- package/.claude/hooks/bmad-tts-injector.sh +33 -4
- package/.claude/hooks/bmad-voice-manager.sh +146 -10
- package/.claude/hooks/check-output-style.sh +60 -8
- package/.claude/hooks/github-star-reminder.sh +67 -7
- package/.claude/hooks/language-manager.sh +34 -2
- package/.claude/hooks/learn-manager.sh +34 -2
- package/.claude/hooks/personality-manager.sh +34 -1
- package/.claude/hooks/piper-download-voices.sh +131 -9
- package/.claude/hooks/piper-installer.sh +38 -4
- package/.claude/hooks/piper-voice-manager.sh +102 -36
- package/.claude/hooks/play-tts-elevenlabs.sh +32 -6
- package/.claude/hooks/play-tts-piper.sh +79 -18
- package/.claude/hooks/play-tts.sh +34 -3
- package/.claude/hooks/provider-commands.sh +36 -1
- package/.claude/hooks/provider-manager.sh +32 -1
- package/.claude/hooks/replay-target-audio.sh +34 -3
- package/.claude/hooks/sentiment-manager.sh +39 -1
- package/.claude/hooks/speed-manager.sh +36 -2
- package/.claude/hooks/voice-manager.sh +85 -6
- package/.claude/hooks/voices-config.sh +39 -2
- package/README.md +77 -137
- package/RELEASE_NOTES.md +269 -0
- package/RELEASE_NOTES_v2.0.17_DRAFT.md +650 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760744118.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760748535.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760748676.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760750748.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760750947.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760752718.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760752907.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760753017.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760753045.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760753241.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760753315.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760753382.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760753408.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760753426.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760753446.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760753541.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760753553.mp3 +0 -0
- package/agentvibes.org/.claude/audio/tts-padded-1760753577.mp3 +0 -0
- package/agentvibes.org/.claude/commands/agent-vibes/add.md +21 -0
- package/agentvibes.org/.claude/commands/agent-vibes/agent-vibes.md +68 -0
- package/agentvibes.org/.claude/commands/agent-vibes/bmad.md +196 -0
- package/agentvibes.org/.claude/commands/agent-vibes/commands.json +77 -0
- package/agentvibes.org/.claude/commands/agent-vibes/get.md +9 -0
- package/agentvibes.org/.claude/commands/agent-vibes/language.md +23 -0
- package/agentvibes.org/.claude/commands/agent-vibes/learn.md +67 -0
- package/agentvibes.org/.claude/commands/agent-vibes/list.md +13 -0
- package/agentvibes.org/.claude/commands/agent-vibes/personality.md +79 -0
- package/agentvibes.org/.claude/commands/agent-vibes/preview.md +17 -0
- package/agentvibes.org/.claude/commands/agent-vibes/provider.md +54 -0
- package/agentvibes.org/.claude/commands/agent-vibes/replay-target.md +14 -0
- package/agentvibes.org/.claude/commands/agent-vibes/replay.md +19 -0
- package/agentvibes.org/.claude/commands/agent-vibes/sample.md +12 -0
- package/agentvibes.org/.claude/commands/agent-vibes/sentiment.md +52 -0
- package/agentvibes.org/.claude/commands/agent-vibes/set-language.md +47 -0
- package/agentvibes.org/.claude/commands/agent-vibes/set-pretext.md +65 -0
- package/agentvibes.org/.claude/commands/agent-vibes/set-speed.md +41 -0
- package/agentvibes.org/.claude/commands/agent-vibes/switch.md +53 -0
- package/agentvibes.org/.claude/commands/agent-vibes/target-voice.md +26 -0
- package/agentvibes.org/.claude/commands/agent-vibes/target.md +30 -0
- package/agentvibes.org/.claude/commands/agent-vibes/update.md +20 -0
- package/agentvibes.org/.claude/commands/agent-vibes/version.md +10 -0
- package/agentvibes.org/.claude/commands/agent-vibes/whoami.md +7 -0
- package/agentvibes.org/.claude/hooks/bmad-tts-injector.sh +386 -0
- package/agentvibes.org/.claude/hooks/bmad-voice-manager.sh +375 -0
- package/agentvibes.org/.claude/hooks/check-output-style.sh +60 -0
- package/agentvibes.org/.claude/hooks/github-star-reminder.sh +94 -0
- package/agentvibes.org/.claude/hooks/language-manager.sh +360 -0
- package/agentvibes.org/.claude/hooks/learn-manager.sh +443 -0
- package/agentvibes.org/.claude/hooks/personality-manager.sh +324 -0
- package/agentvibes.org/.claude/hooks/piper-download-voices.sh +133 -0
- package/agentvibes.org/.claude/hooks/piper-installer.sh +144 -0
- package/agentvibes.org/.claude/hooks/piper-voice-manager.sh +227 -0
- package/agentvibes.org/.claude/hooks/play-tts-elevenlabs.sh +376 -0
- package/agentvibes.org/.claude/hooks/play-tts-piper.sh +281 -0
- package/agentvibes.org/.claude/hooks/play-tts.sh +69 -0
- package/agentvibes.org/.claude/hooks/provider-commands.sh +505 -0
- package/agentvibes.org/.claude/hooks/provider-manager.sh +248 -0
- package/agentvibes.org/.claude/hooks/replay-target-audio.sh +64 -0
- package/agentvibes.org/.claude/hooks/sentiment-manager.sh +163 -0
- package/agentvibes.org/.claude/hooks/speed-manager.sh +259 -0
- package/agentvibes.org/.claude/hooks/voice-manager.sh +477 -0
- package/agentvibes.org/.claude/hooks/voices-config.sh +33 -0
- package/agentvibes.org/.claude/journal/2025-10-07.html +373 -0
- package/agentvibes.org/.claude/journal/index.html +91 -0
- package/agentvibes.org/.claude/output-styles/agent-vibes.md +203 -0
- package/agentvibes.org/.claude/personalities/angry.md +17 -0
- package/agentvibes.org/.claude/personalities/annoying.md +17 -0
- package/agentvibes.org/.claude/personalities/crass.md +17 -0
- package/agentvibes.org/.claude/personalities/dramatic.md +17 -0
- package/agentvibes.org/.claude/personalities/dry-humor.md +53 -0
- package/agentvibes.org/.claude/personalities/flirty.md +23 -0
- package/agentvibes.org/.claude/personalities/funny.md +17 -0
- package/agentvibes.org/.claude/personalities/grandpa.md +35 -0
- package/agentvibes.org/.claude/personalities/millennial.md +17 -0
- package/agentvibes.org/.claude/personalities/moody.md +17 -0
- package/agentvibes.org/.claude/personalities/normal.md +19 -0
- package/agentvibes.org/.claude/personalities/pirate.md +17 -0
- package/agentvibes.org/.claude/personalities/poetic.md +17 -0
- package/agentvibes.org/.claude/personalities/professional.md +17 -0
- package/agentvibes.org/.claude/personalities/robot.md +17 -0
- package/agentvibes.org/.claude/personalities/sarcastic.md +41 -0
- package/agentvibes.org/.claude/personalities/sassy.md +17 -0
- package/agentvibes.org/.claude/personalities/surfer-dude.md +17 -0
- package/agentvibes.org/.claude/personalities/zen.md +17 -0
- package/agentvibes.org/.claude/piper-voices-dir.txt +1 -0
- package/agentvibes.org/.claude/plugins/bmad-voices.md +42 -0
- package/agentvibes.org/.claude/tts-provider.txt +1 -0
- package/agentvibes.org/.mcp-minimal.json +60 -0
- package/agentvibes.org/CHANGELOG.md +56 -0
- package/agentvibes.org/README.md +93 -0
- package/agentvibes.org/app/(auth)/layout.tsx +15 -0
- package/agentvibes.org/app/(auth)/reset-password/page.tsx +45 -0
- package/agentvibes.org/app/(auth)/signin/page.tsx +82 -0
- package/agentvibes.org/app/(auth)/signup/page.tsx +104 -0
- package/agentvibes.org/app/(default)/blog/[slug]/page.tsx +128 -0
- package/agentvibes.org/app/(default)/blog/page.tsx +95 -0
- package/agentvibes.org/app/(default)/layout.tsx +31 -0
- package/agentvibes.org/app/(default)/page.tsx +20 -0
- package/agentvibes.org/app/api/hello/route.ts +3 -0
- package/agentvibes.org/app/css/additional-styles/theme.css +82 -0
- package/agentvibes.org/app/css/additional-styles/utility-patterns.css +55 -0
- package/agentvibes.org/app/css/style.css +100 -0
- package/agentvibes.org/app/layout.tsx +63 -0
- package/agentvibes.org/components/code-block.tsx +27 -0
- package/agentvibes.org/components/cta.tsx +58 -0
- package/agentvibes.org/components/features.tsx +256 -0
- package/agentvibes.org/components/hero-home.tsx +133 -0
- package/agentvibes.org/components/mdx-components.tsx +128 -0
- package/agentvibes.org/components/modal-video.tsx +137 -0
- package/agentvibes.org/components/page-illustration.tsx +55 -0
- package/agentvibes.org/components/spotlight.tsx +77 -0
- package/agentvibes.org/components/testimonials.tsx +282 -0
- package/agentvibes.org/components/ui/footer.tsx +82 -0
- package/agentvibes.org/components/ui/header.tsx +68 -0
- package/agentvibes.org/components/ui/logo.tsx +10 -0
- package/agentvibes.org/components/workflows.tsx +176 -0
- package/agentvibes.org/content/blog/discovering-new-piper-voices.mdx +253 -0
- package/agentvibes.org/content/blog/getting-started-agentvibes.mdx +228 -0
- package/agentvibes.org/content/blog/introducing-agentvibes-v2.mdx +250 -0
- package/agentvibes.org/content/blog/language-learning-with-agentvibes.mdx +142 -0
- package/agentvibes.org/content/blog/voice-personalities-guide.mdx +119 -0
- package/agentvibes.org/lib/blog.ts +73 -0
- package/agentvibes.org/next.config.js +6 -0
- package/agentvibes.org/package-lock.json +4285 -0
- package/agentvibes.org/package.json +40 -0
- package/agentvibes.org/pnpm-lock.yaml +1141 -0
- package/agentvibes.org/postcss.config.js +5 -0
- package/agentvibes.org/public/audio/02-sarcastic.mp3 +0 -0
- package/agentvibes.org/public/audio/03-angry.mp3 +0 -0
- package/agentvibes.org/public/audio/04-grandpa.mp3 +0 -0
- package/agentvibes.org/public/audio/05-sarcastic-example2.mp3 +0 -0
- package/agentvibes.org/public/audio/french-rachel.mp3 +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_0_Cori_Samuel.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_10_Steve_C.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_11_Owlivia.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_12_Paul_Hampton.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_13_Jennifer_Dorr.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_14_Emily_Cripps.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_15_Martin_Clifton.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_1_Kara_Shallenberg.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_2_Kristin_Hughes.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_3_Maria_Kasper.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_4_Mike_Pelton.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_5_Mark_Nelson.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_6_Michael_Scherer.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_7_James_K_White.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_8_Rose_Ibex.wav +0 -0
- package/agentvibes.org/public/audio/piper-voices/speaker_9_progressingamerica.wav +0 -0
- package/agentvibes.org/public/audio/spanish-antoni.mp3 +0 -0
- package/agentvibes.org/public/favicon.ico +0 -0
- package/agentvibes.org/public/fonts/nacelle-italic.woff2 +0 -0
- package/agentvibes.org/public/fonts/nacelle-regular.woff2 +0 -0
- package/agentvibes.org/public/fonts/nacelle-semibold.woff2 +0 -0
- package/agentvibes.org/public/fonts/nacelle-semibolditalic.woff2 +0 -0
- package/agentvibes.org/public/images/blurred-shape-gray.svg +1 -0
- package/agentvibes.org/public/images/blurred-shape.svg +1 -0
- package/agentvibes.org/public/images/client-logo-01.svg +1 -0
- package/agentvibes.org/public/images/client-logo-02.svg +1 -0
- package/agentvibes.org/public/images/client-logo-03.svg +1 -0
- package/agentvibes.org/public/images/client-logo-04.svg +1 -0
- package/agentvibes.org/public/images/client-logo-05.svg +1 -0
- package/agentvibes.org/public/images/client-logo-06.svg +1 -0
- package/agentvibes.org/public/images/client-logo-07.svg +1 -0
- package/agentvibes.org/public/images/client-logo-08.svg +1 -0
- package/agentvibes.org/public/images/client-logo-09.svg +1 -0
- package/agentvibes.org/public/images/features.png +0 -0
- package/agentvibes.org/public/images/footer-illustration.svg +1 -0
- package/agentvibes.org/public/images/hero-image-01.jpg +0 -0
- package/agentvibes.org/public/images/logo.svg +1 -0
- package/agentvibes.org/public/images/page-illustration.svg +1 -0
- package/agentvibes.org/public/images/secondary-illustration.svg +1 -0
- package/agentvibes.org/public/images/testimonial-01.jpg +0 -0
- package/agentvibes.org/public/images/testimonial-02.jpg +0 -0
- package/agentvibes.org/public/images/testimonial-03.jpg +0 -0
- package/agentvibes.org/public/images/testimonial-04.jpg +0 -0
- package/agentvibes.org/public/images/testimonial-05.jpg +0 -0
- package/agentvibes.org/public/images/testimonial-06.jpg +0 -0
- package/agentvibes.org/public/images/testimonial-07.jpg +0 -0
- package/agentvibes.org/public/images/testimonial-08.jpg +0 -0
- package/agentvibes.org/public/images/testimonial-09.jpg +0 -0
- package/agentvibes.org/public/images/workflow-01.png +0 -0
- package/agentvibes.org/public/images/workflow-02.png +0 -0
- package/agentvibes.org/public/images/workflow-03.png +0 -0
- package/agentvibes.org/public/videos/video.mp4 +0 -0
- package/agentvibes.org/tsconfig.json +28 -0
- package/agentvibes.org/utils/useMasonry.tsx +67 -0
- package/agentvibes.org/utils/useMousePosition.tsx +27 -0
- package/docs/ai-optimized-documentation-standards.md +78 -4
- package/docs/bryce-beattie-voice-licensing.md +131 -0
- package/docs/commands.md +21 -1
- package/docs/mcp-setup.md +1 -6
- package/github-star-reminder.txt +1 -0
- package/linkedin/vibe-coding-and-pulseaudio.md +121 -0
- package/mcp-server/WINDOWS_SETUP.md +182 -199
- package/mcp-server/docs/elevenlabs-setup.md +213 -0
- package/mcp-server/docs/troubleshooting-audio.md +316 -0
- package/mcp-server/server.py +38 -4
- package/mcp-server/test_server.py +38 -3
- package/package.json +1 -1
- package/scripts/audio-tunnel.config +17 -0
- package/test/helpers/test-helper.bash +31 -4
- package/test/unit/personality-manager.bats +22 -6
- package/test/unit/play-tts.bats +21 -3
- package/test/unit/provider-manager.bats +508 -0
- package/test/unit/speed-manager.bats +436 -0
- package/test/unit/voice-manager.bats +4 -1
- package/.claude/piper-voices/en_US-lessac-medium.onnx +0 -0
- package/.claude/piper-voices/en_US-lessac-medium.onnx.json +0 -493
|
@@ -1,277 +1,260 @@
|
|
|
1
|
-
#
|
|
1
|
+
# 🪟 Windows Setup Guide for Claude Desktop
|
|
2
2
|
|
|
3
|
-
Complete guide
|
|
3
|
+
**Complete beginner's guide** - Start from scratch and get AgentVibes working in 20 minutes!
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
---
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
cd C:\Users\Paul\AgentVibes
|
|
9
|
-
npm install
|
|
10
|
-
```
|
|
7
|
+
## What You'll Need
|
|
11
8
|
|
|
12
|
-
|
|
13
|
-
- Install Node.js dependencies
|
|
14
|
-
- Install Python `mcp` package
|
|
15
|
-
- Verify Python is available
|
|
9
|
+
This guide assumes you're starting with **just Windows** installed. We'll install everything else together, step by step.
|
|
16
10
|
|
|
17
|
-
|
|
11
|
+
---
|
|
18
12
|
|
|
19
|
-
|
|
13
|
+
## Step 1: Install Python
|
|
20
14
|
|
|
21
|
-
|
|
15
|
+
Python is needed to run AgentVibes.
|
|
22
16
|
|
|
23
|
-
**
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
- ✅ Multi-language support (25+ languages)
|
|
27
|
-
- ✅ Easy setup - no additional software needed
|
|
17
|
+
1. **Download Python**:
|
|
18
|
+
- Go to https://python.org/downloads
|
|
19
|
+
- Click the big yellow "Download Python" button
|
|
28
20
|
|
|
29
|
-
**
|
|
30
|
-
-
|
|
31
|
-
-
|
|
21
|
+
2. **Install Python**:
|
|
22
|
+
- Run the downloaded installer
|
|
23
|
+
- ⚠️ **CRITICAL**: Check the box "Add Python to PATH" at the bottom
|
|
24
|
+
- Click "Install Now"
|
|
25
|
+
- Wait for installation to complete
|
|
26
|
+
- Click "Close"
|
|
32
27
|
|
|
33
|
-
**
|
|
28
|
+
3. **Verify it worked**:
|
|
29
|
+
- Press `Windows Key + R`
|
|
30
|
+
- Type `cmd` and press Enter
|
|
31
|
+
- In the black window, type: `python --version`
|
|
32
|
+
- You should see something like `Python 3.12.0`
|
|
34
33
|
|
|
35
|
-
|
|
36
|
-
2. Add to Claude Desktop config:
|
|
34
|
+
---
|
|
37
35
|
|
|
38
|
-
|
|
39
|
-
{
|
|
40
|
-
"mcpServers": {
|
|
41
|
-
"agentvibes": {
|
|
42
|
-
"command": "python",
|
|
43
|
-
"args": ["C:\\\\Users\\\\Paul\\\\AgentVibes\\\\mcp-server\\\\server.py"],
|
|
44
|
-
"env": {
|
|
45
|
-
"ELEVENLABS_API_KEY": "your-api-key-here"
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
```
|
|
36
|
+
## Step 2: Install Node.js
|
|
51
37
|
|
|
52
|
-
|
|
53
|
-
```bash
|
|
54
|
-
cd /mnt/c/Users/Paul/AgentVibes
|
|
55
|
-
.claude/hooks/provider-manager.sh switch elevenlabs
|
|
56
|
-
```
|
|
38
|
+
Node.js is needed to download and run AgentVibes.
|
|
57
39
|
|
|
58
|
-
|
|
40
|
+
1. **Download Node.js**:
|
|
41
|
+
- Go to https://nodejs.org
|
|
42
|
+
- Click the big green "LTS" button (recommended for most users)
|
|
59
43
|
|
|
60
|
-
**
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
44
|
+
2. **Install Node.js**:
|
|
45
|
+
- Run the downloaded installer
|
|
46
|
+
- Click "Next" through all the steps (defaults are fine)
|
|
47
|
+
- Click "Install"
|
|
48
|
+
- Click "Finish"
|
|
65
49
|
|
|
66
|
-
**
|
|
67
|
-
-
|
|
68
|
-
-
|
|
69
|
-
-
|
|
50
|
+
3. **Verify it worked**:
|
|
51
|
+
- Press `Windows Key + R`
|
|
52
|
+
- Type `cmd` and press Enter
|
|
53
|
+
- Type: `node --version`
|
|
54
|
+
- You should see something like `v20.11.0`
|
|
70
55
|
|
|
71
|
-
|
|
56
|
+
---
|
|
72
57
|
|
|
73
|
-
|
|
58
|
+
## Step 3: Install WSL (Windows Subsystem for Linux)
|
|
74
59
|
|
|
75
|
-
|
|
60
|
+
WSL is needed for the free Piper voice system.
|
|
76
61
|
|
|
77
|
-
1.
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
62
|
+
1. **Open PowerShell as Administrator**:
|
|
63
|
+
- Press `Windows Key`
|
|
64
|
+
- Type `PowerShell`
|
|
65
|
+
- Right-click "Windows PowerShell"
|
|
66
|
+
- Click "Run as administrator"
|
|
67
|
+
- Click "Yes" when asked
|
|
81
68
|
|
|
82
|
-
2.
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
69
|
+
2. **Install WSL**:
|
|
70
|
+
- Type this command and press Enter:
|
|
71
|
+
```powershell
|
|
72
|
+
wsl --install
|
|
73
|
+
```
|
|
74
|
+
- Wait for it to download and install (5-10 minutes)
|
|
86
75
|
|
|
87
|
-
3.
|
|
88
|
-
-
|
|
76
|
+
3. **Restart your computer**:
|
|
77
|
+
- After installation completes, restart Windows
|
|
78
|
+
- WSL will finish setup after restart
|
|
89
79
|
|
|
90
|
-
**
|
|
80
|
+
4. **Verify it worked**:
|
|
81
|
+
- Open PowerShell again (doesn't need to be as administrator this time)
|
|
82
|
+
- Type: `wsl --status`
|
|
83
|
+
- You should see status information (not an error)
|
|
91
84
|
|
|
92
|
-
|
|
93
|
-
- https://github.com/rhasspy/piper/releases
|
|
94
|
-
- Extract to `C:\Program Files\Piper\`
|
|
85
|
+
---
|
|
95
86
|
|
|
96
|
-
|
|
97
|
-
```powershell
|
|
98
|
-
$env:PATH += ";C:\Program Files\Piper"
|
|
99
|
-
```
|
|
87
|
+
## Step 4: Install Claude Desktop
|
|
100
88
|
|
|
101
|
-
|
|
89
|
+
Claude Desktop is the app where you'll talk to Claude with voice.
|
|
102
90
|
|
|
103
|
-
|
|
91
|
+
1. **Download Claude Desktop**:
|
|
92
|
+
- Go to https://claude.ai/download
|
|
93
|
+
- Click "Download for Windows"
|
|
104
94
|
|
|
105
|
-
|
|
95
|
+
2. **Install Claude Desktop**:
|
|
96
|
+
- Run the downloaded installer
|
|
97
|
+
- Follow the installation steps
|
|
98
|
+
- Sign in with your Anthropic account (or create one)
|
|
106
99
|
|
|
107
|
-
|
|
100
|
+
3. **Close Claude Desktop for now** (we'll configure it in the next step)
|
|
108
101
|
|
|
109
|
-
|
|
110
|
-
- During installation, check "Add Python to PATH"
|
|
111
|
-
- **Node.js 16+** installed from https://nodejs.org
|
|
112
|
-
- **Git** (optional, for cloning)
|
|
102
|
+
---
|
|
113
103
|
|
|
114
|
-
|
|
104
|
+
## Step 5: Configure AgentVibes in Claude Desktop
|
|
105
|
+
|
|
106
|
+
Now we'll tell Claude Desktop to use AgentVibes.
|
|
107
|
+
|
|
108
|
+
1. **Open the config file**:
|
|
109
|
+
- Press `Windows Key + R`
|
|
110
|
+
- Copy and paste this path:
|
|
111
|
+
```
|
|
112
|
+
%APPDATA%\Claude\claude_desktop_config.json
|
|
113
|
+
```
|
|
114
|
+
- Press Enter
|
|
115
|
+
- If asked "How do you want to open this file?", choose "Notepad"
|
|
116
|
+
|
|
117
|
+
2. **Add AgentVibes configuration**:
|
|
118
|
+
- If the file is empty or just has `{}`, replace everything with this:
|
|
119
|
+
```json
|
|
120
|
+
{
|
|
121
|
+
"mcpServers": {
|
|
122
|
+
"agentvibes": {
|
|
123
|
+
"command": "npx",
|
|
124
|
+
"args": ["-y", "agentvibes@beta", "agentvibes-mcp-server"]
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
```
|
|
129
|
+
- If the file already has content, carefully add the `"agentvibes"` section inside `"mcpServers"`
|
|
130
|
+
|
|
131
|
+
3. **Save the file**:
|
|
132
|
+
- Click "File" → "Save"
|
|
133
|
+
- Close Notepad
|
|
115
134
|
|
|
116
|
-
|
|
135
|
+
---
|
|
117
136
|
|
|
118
|
-
|
|
119
|
-
cd C:\Users\Paul
|
|
120
|
-
git clone https://github.com/paulpreibisch/AgentVibes.git
|
|
121
|
-
cd AgentVibes
|
|
122
|
-
```
|
|
137
|
+
## Step 6: Install Piper Voice System
|
|
123
138
|
|
|
124
|
-
|
|
139
|
+
Piper needs to be installed inside WSL for the free voices to work.
|
|
125
140
|
|
|
126
|
-
|
|
127
|
-
npm install
|
|
128
|
-
```
|
|
141
|
+
1. **Open PowerShell**
|
|
129
142
|
|
|
130
|
-
|
|
131
|
-
-
|
|
132
|
-
|
|
143
|
+
2. **Run the automated installer**:
|
|
144
|
+
- Copy and paste this single command and press Enter:
|
|
145
|
+
```powershell
|
|
146
|
+
wsl -e bash -c "curl -sSL https://raw.githubusercontent.com/paulpreibisch/AgentVibes/master/.claude/hooks/piper-installer.sh | bash"
|
|
147
|
+
```
|
|
148
|
+
- The installer will:
|
|
149
|
+
- Install pipx (if needed)
|
|
150
|
+
- Install Piper TTS
|
|
151
|
+
- Download a default voice (en_US-lessac-medium)
|
|
152
|
+
- Wait for installation (2-3 minutes)
|
|
133
153
|
|
|
134
|
-
|
|
154
|
+
3. **When prompted** "Would you like to download voice models now?":
|
|
155
|
+
- Type `y` and press Enter
|
|
156
|
+
- This downloads the free voice model
|
|
135
157
|
|
|
136
|
-
|
|
158
|
+
4. **Installation complete!**
|
|
159
|
+
- You should see "🎉 Piper TTS Setup Complete!"
|
|
137
160
|
|
|
138
|
-
|
|
161
|
+
---
|
|
139
162
|
|
|
140
|
-
|
|
141
|
-
{
|
|
142
|
-
"mcpServers": {
|
|
143
|
-
"agentvibes": {
|
|
144
|
-
"command": "python",
|
|
145
|
-
"args": ["C:\\\\Users\\\\Paul\\\\AgentVibes\\\\mcp-server\\\\server.py"],
|
|
146
|
-
"env": {
|
|
147
|
-
"ELEVENLABS_API_KEY": "sk-your-key-here"
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
```
|
|
163
|
+
## Step 7: Start Using AgentVibes!
|
|
153
164
|
|
|
154
|
-
**
|
|
165
|
+
1. **Open Claude Desktop**
|
|
155
166
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
"agentvibes": {
|
|
160
|
-
"command": "python",
|
|
161
|
-
"args": ["C:\\\\Users\\\\Paul\\\\AgentVibes\\\\mcp-server\\\\server.py"],
|
|
162
|
-
"env": {}
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
```
|
|
167
|
+
2. **Wait for setup** (first time only):
|
|
168
|
+
- The first time, AgentVibes MCP server needs to start (10-20 seconds)
|
|
169
|
+
- You'll see a small notification when it's ready
|
|
167
170
|
|
|
168
|
-
|
|
171
|
+
3. **Test it**:
|
|
172
|
+
- Type: `What AgentVibes tools do you have?`
|
|
173
|
+
- Claude should list tools like `text_to_speech`, `list_voices`, etc.
|
|
169
174
|
|
|
170
|
-
|
|
175
|
+
4. **Hear your first voice**:
|
|
176
|
+
- Type: `Use text to speech to say "Hello, I'm using AgentVibes!"`
|
|
177
|
+
- You should hear audio! 🎉
|
|
171
178
|
|
|
172
|
-
|
|
179
|
+
---
|
|
173
180
|
|
|
174
|
-
|
|
181
|
+
## Common Tasks
|
|
175
182
|
|
|
176
|
-
|
|
177
|
-
"What AgentVibes tools do you have?"
|
|
178
|
-
```
|
|
183
|
+
### Change Voice
|
|
179
184
|
|
|
180
|
-
|
|
185
|
+
Type: `List all available voices`
|
|
181
186
|
|
|
182
|
-
|
|
183
|
-
"Use text to speech to say hello"
|
|
184
|
-
```
|
|
187
|
+
Then: `Switch to [voice name]`
|
|
185
188
|
|
|
186
|
-
|
|
189
|
+
Example: `Switch to Northern Terry voice`
|
|
187
190
|
|
|
188
|
-
|
|
191
|
+
### Add Personality
|
|
192
|
+
|
|
193
|
+
Type: `Set personality to pirate`
|
|
194
|
+
|
|
195
|
+
Now Claude will talk like a pirate! Try: `Use text to speech to say "Hello there!"`
|
|
196
|
+
|
|
197
|
+
Other personalities: `sarcastic`, `flirty`, `robot`, `zen`, `millennial`
|
|
189
198
|
|
|
190
|
-
###
|
|
199
|
+
### Speak Different Language
|
|
191
200
|
|
|
192
|
-
|
|
193
|
-
```powershell
|
|
194
|
-
pip install mcp
|
|
195
|
-
# or
|
|
196
|
-
python -m pip install mcp
|
|
197
|
-
```
|
|
201
|
+
Type: `Speak in Spanish`
|
|
198
202
|
|
|
199
|
-
|
|
200
|
-
```powershell
|
|
201
|
-
python -c "import mcp; print('Success!')"
|
|
202
|
-
```
|
|
203
|
+
Now TTS will speak in Spanish! Try: `Use text to speech to say "Hello"`
|
|
203
204
|
|
|
204
|
-
###
|
|
205
|
+
### Check Your Settings
|
|
205
206
|
|
|
206
|
-
|
|
207
|
-
2. During installation, check "Add Python to PATH"
|
|
208
|
-
3. Restart PowerShell
|
|
209
|
-
4. Verify: `python --version`
|
|
207
|
+
Type: `What's my current AgentVibes configuration?`
|
|
210
208
|
|
|
211
|
-
|
|
209
|
+
Shows your current voice, personality, language, and provider.
|
|
212
210
|
|
|
213
|
-
|
|
214
|
-
2. Check internet connection
|
|
215
|
-
3. View logs: `C:\Users\Paul\AppData\Roaming\Claude\logs\mcp-server-agentvibes.log`
|
|
211
|
+
---
|
|
216
212
|
|
|
217
|
-
|
|
213
|
+
## Troubleshooting
|
|
218
214
|
|
|
219
|
-
|
|
220
|
-
- PulseAudio or WSL audio setup
|
|
221
|
-
- See `setup-ubuntu-rdp-audio.sh` for WSL configuration
|
|
222
|
-
- Or use ElevenLabs instead (much easier)
|
|
215
|
+
### "I don't hear any audio"
|
|
223
216
|
|
|
224
|
-
|
|
217
|
+
1. Check your Windows volume (unmuted?)
|
|
218
|
+
2. Make sure speakers/headphones are plugged in
|
|
219
|
+
3. Restart Claude Desktop
|
|
220
|
+
4. See [Audio Troubleshooting Guide](docs/troubleshooting-audio.md)
|
|
225
221
|
|
|
226
|
-
|
|
227
|
-
```
|
|
228
|
-
"List all AgentVibes voices"
|
|
229
|
-
```
|
|
222
|
+
### "AgentVibes tools not showing"
|
|
230
223
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
224
|
+
1. Close Claude Desktop completely (check system tray)
|
|
225
|
+
2. Reopen Claude Desktop
|
|
226
|
+
3. Wait 30 seconds for MCP server to start
|
|
227
|
+
4. Try again
|
|
235
228
|
|
|
236
|
-
|
|
237
|
-
```
|
|
238
|
-
"Set personality to pirate"
|
|
239
|
-
```
|
|
229
|
+
### "Python not found" error
|
|
240
230
|
|
|
241
|
-
|
|
231
|
+
You forgot to check "Add Python to PATH" during installation!
|
|
242
232
|
|
|
243
|
-
|
|
233
|
+
Fix:
|
|
234
|
+
1. Uninstall Python (Windows Settings → Apps)
|
|
235
|
+
2. Reinstall Python
|
|
236
|
+
3. **CHECK THE BOX** "Add Python to PATH"
|
|
244
237
|
|
|
245
|
-
|
|
246
|
-
When I give you a task:
|
|
247
|
-
1. Use text_to_speech to acknowledge before starting
|
|
248
|
-
2. Perform the task
|
|
249
|
-
3. Use text_to_speech to confirm completion
|
|
238
|
+
---
|
|
250
239
|
|
|
251
|
-
|
|
252
|
-
```
|
|
240
|
+
## Want Better Voice Quality?
|
|
253
241
|
|
|
254
|
-
|
|
242
|
+
The free Piper voices are good, but if you want **premium AI voices**, see:
|
|
255
243
|
|
|
256
|
-
|
|
244
|
+
📖 **[ElevenLabs Setup Guide](docs/elevenlabs-setup.md)** - Premium voices (paid)
|
|
257
245
|
|
|
258
|
-
|
|
259
|
-
- **Piper**: Near instant (runs locally)
|
|
260
|
-
- **Windows Python**: Slightly slower startup than WSL Python
|
|
246
|
+
---
|
|
261
247
|
|
|
262
|
-
##
|
|
248
|
+
## Next Steps
|
|
263
249
|
|
|
264
|
-
|
|
265
|
-
2. Get a free API key (500 characters/month free tier)
|
|
266
|
-
3. Upgrade to paid plan if you use it heavily
|
|
267
|
-
4. Keep Piper as backup for offline use
|
|
250
|
+
✅ You're all set with AgentVibes!
|
|
268
251
|
|
|
269
|
-
|
|
252
|
+
Want to learn more?
|
|
270
253
|
|
|
271
|
-
- **
|
|
272
|
-
- **
|
|
273
|
-
- **
|
|
254
|
+
- 🎭 **[Personality Guide](docs/personalities.md)** - All available personalities
|
|
255
|
+
- 🎤 **[Voice Library](docs/voice-library.md)** - Browse all voices
|
|
256
|
+
- 🌍 **[Language Learning Mode](docs/language-learning-mode.md)** - Learn languages while coding
|
|
274
257
|
|
|
275
258
|
---
|
|
276
259
|
|
|
277
|
-
|
|
260
|
+
**[← Back to Main README](../README.md)**
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
# 🎤 ElevenLabs Premium Voice Setup
|
|
2
|
+
|
|
3
|
+
**Want the best voice quality?** ElevenLabs offers premium AI voices that sound incredibly natural.
|
|
4
|
+
|
|
5
|
+
⚠️ **Note**: ElevenLabs is a paid service after the free trial.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## What You Get
|
|
10
|
+
|
|
11
|
+
✅ **Premium Voice Quality** - The most natural-sounding AI voices available
|
|
12
|
+
|
|
13
|
+
✅ **30+ Voices** - Wide variety of accents, ages, and styles
|
|
14
|
+
|
|
15
|
+
✅ **Multi-Language** - 25+ languages supported
|
|
16
|
+
|
|
17
|
+
✅ **No WSL Required** - Works on Windows without Linux subsystem
|
|
18
|
+
|
|
19
|
+
❌ **Costs Money** - Free trial (10,000 characters), then requires paid subscription
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Step 1: Get Your ElevenLabs API Key
|
|
24
|
+
|
|
25
|
+
1. **Sign up for ElevenLabs**:
|
|
26
|
+
- Go to https://elevenlabs.io
|
|
27
|
+
- Click "Sign Up" (or "Log In" if you have an account)
|
|
28
|
+
- Complete registration
|
|
29
|
+
|
|
30
|
+
2. **Get your API key**:
|
|
31
|
+
- Go to https://elevenlabs.io/app/settings/api-keys
|
|
32
|
+
- Click "Create API Key" (or copy existing key)
|
|
33
|
+
- **Save this key** - you'll need it in the next step
|
|
34
|
+
|
|
35
|
+
3. **Check your free trial**:
|
|
36
|
+
- Free trial includes 10,000 characters
|
|
37
|
+
- After trial, you'll need a paid subscription
|
|
38
|
+
- See pricing: https://elevenlabs.io/pricing
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## Step 2: Set Your API Key in Windows
|
|
43
|
+
|
|
44
|
+
1. **Open PowerShell**:
|
|
45
|
+
- Press `Windows Key`
|
|
46
|
+
- Type `PowerShell`
|
|
47
|
+
- Click "Windows PowerShell"
|
|
48
|
+
|
|
49
|
+
2. **Set the API key**:
|
|
50
|
+
- Type this command (replace `your-api-key-here` with your actual key):
|
|
51
|
+
```powershell
|
|
52
|
+
setx ELEVENLABS_API_KEY "your-api-key-here"
|
|
53
|
+
```
|
|
54
|
+
- Press Enter
|
|
55
|
+
- You should see: "SUCCESS: Specified value was saved."
|
|
56
|
+
|
|
57
|
+
3. **Restart everything**:
|
|
58
|
+
- Close PowerShell
|
|
59
|
+
- Close Claude Desktop completely (check system tray)
|
|
60
|
+
- Wait 5 seconds
|
|
61
|
+
- Open Claude Desktop again
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Step 3: Switch to ElevenLabs Provider
|
|
66
|
+
|
|
67
|
+
In Claude Desktop, type:
|
|
68
|
+
|
|
69
|
+
```
|
|
70
|
+
Switch to ElevenLabs provider
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Claude will confirm the switch and you'll start using premium voices!
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## Testing ElevenLabs Voices
|
|
78
|
+
|
|
79
|
+
### Test Your Setup
|
|
80
|
+
|
|
81
|
+
Type:
|
|
82
|
+
```
|
|
83
|
+
Use text to speech to say "Hello from ElevenLabs!"
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
You should hear premium quality audio!
|
|
87
|
+
|
|
88
|
+
### Browse Available Voices
|
|
89
|
+
|
|
90
|
+
Type:
|
|
91
|
+
```
|
|
92
|
+
List all available voices
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
You'll see voices like:
|
|
96
|
+
- **Aria** (default, warm female)
|
|
97
|
+
- **Northern Terry** (friendly male)
|
|
98
|
+
- **Cowboy Bob** (western male)
|
|
99
|
+
- **Jessica Anne Bogart** (professional female)
|
|
100
|
+
- **Ms. Walker** (mature female)
|
|
101
|
+
- And many more!
|
|
102
|
+
|
|
103
|
+
### Change Voice
|
|
104
|
+
|
|
105
|
+
Type:
|
|
106
|
+
```
|
|
107
|
+
Switch to Northern Terry voice
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
## Managing Your Usage
|
|
113
|
+
|
|
114
|
+
### Check Your Quota
|
|
115
|
+
|
|
116
|
+
1. Go to https://elevenlabs.io/app/usage
|
|
117
|
+
2. See how many characters you've used
|
|
118
|
+
3. Monitor your free trial or subscription limit
|
|
119
|
+
|
|
120
|
+
### Tips to Save Characters
|
|
121
|
+
|
|
122
|
+
- Keep TTS messages short and concise
|
|
123
|
+
- Use TTS for important notifications only
|
|
124
|
+
- Switch to Piper (free) for less critical audio
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## Switching Back to Piper (Free)
|
|
129
|
+
|
|
130
|
+
Want to go back to the free voices?
|
|
131
|
+
|
|
132
|
+
Type in Claude Desktop:
|
|
133
|
+
```
|
|
134
|
+
Switch to Piper provider
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
You can switch between providers anytime!
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
141
|
+
## Troubleshooting
|
|
142
|
+
|
|
143
|
+
### "No audio output"
|
|
144
|
+
|
|
145
|
+
1. **Check your API key**:
|
|
146
|
+
- Open PowerShell
|
|
147
|
+
- Type: `echo $env:ELEVENLABS_API_KEY`
|
|
148
|
+
- You should see your API key (not blank)
|
|
149
|
+
|
|
150
|
+
2. **Verify internet connection**:
|
|
151
|
+
- ElevenLabs requires internet
|
|
152
|
+
- Try opening https://elevenlabs.io in your browser
|
|
153
|
+
|
|
154
|
+
3. **Check quota**:
|
|
155
|
+
- Go to https://elevenlabs.io/app/usage
|
|
156
|
+
- Make sure you haven't exceeded your character limit
|
|
157
|
+
|
|
158
|
+
4. **Check logs**:
|
|
159
|
+
- Press `Windows Key + R`
|
|
160
|
+
- Paste: `%APPDATA%\Claude\logs\mcp-server-agentvibes.log`
|
|
161
|
+
- Look for error messages related to ElevenLabs
|
|
162
|
+
|
|
163
|
+
### "Invalid API key" error
|
|
164
|
+
|
|
165
|
+
Your API key is wrong or expired:
|
|
166
|
+
|
|
167
|
+
1. Go to https://elevenlabs.io/app/settings/api-keys
|
|
168
|
+
2. Create a new API key
|
|
169
|
+
3. Set it again in PowerShell:
|
|
170
|
+
```powershell
|
|
171
|
+
setx ELEVENLABS_API_KEY "your-new-key-here"
|
|
172
|
+
```
|
|
173
|
+
4. Restart Claude Desktop
|
|
174
|
+
|
|
175
|
+
### "Quota exceeded" error
|
|
176
|
+
|
|
177
|
+
You've used all your free credits:
|
|
178
|
+
|
|
179
|
+
1. Go to https://elevenlabs.io/pricing
|
|
180
|
+
2. Choose a paid plan
|
|
181
|
+
3. Or switch back to Piper (free):
|
|
182
|
+
```
|
|
183
|
+
Switch to Piper provider
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
---
|
|
187
|
+
|
|
188
|
+
## Pricing Information
|
|
189
|
+
|
|
190
|
+
As of 2024:
|
|
191
|
+
|
|
192
|
+
- **Free Trial**: 10,000 characters
|
|
193
|
+
- **Starter Plan**: ~$5/month for 30,000 characters
|
|
194
|
+
- **Creator Plan**: ~$22/month for 100,000 characters
|
|
195
|
+
- **Pro Plan**: ~$99/month for 500,000 characters
|
|
196
|
+
|
|
197
|
+
**Note**: Prices subject to change. Check https://elevenlabs.io/pricing for current rates.
|
|
198
|
+
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
## Next Steps
|
|
202
|
+
|
|
203
|
+
✅ **You're using premium voices!**
|
|
204
|
+
|
|
205
|
+
Explore more:
|
|
206
|
+
|
|
207
|
+
- 🎭 **[Personality Guide](personalities.md)** - Add personality styles
|
|
208
|
+
- 🌍 **[Language Learning Mode](language-learning-mode.md)** - Learn languages
|
|
209
|
+
- 🎤 **[Voice Library](voice-library.md)** - Browse all ElevenLabs voices
|
|
210
|
+
|
|
211
|
+
---
|
|
212
|
+
|
|
213
|
+
**[← Back to Windows Setup Guide](../mcp-server/WINDOWS_SETUP.md)**
|