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
|
@@ -0,0 +1,650 @@
|
|
|
1
|
+
# Release v2.0.17 - MCP Integration & Language Learning Revolution
|
|
2
|
+
|
|
3
|
+
**Release Date:** October 17, 2025
|
|
4
|
+
**Previous Version:** v2.0.16
|
|
5
|
+
**Git Range:** v2.0.16..HEAD (70+ commits)
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 🤖 AI Summary
|
|
10
|
+
|
|
11
|
+
This major release transforms AgentVibes into a complete multi-platform TTS solution with full Claude Desktop MCP integration, an innovative Language Learning Mode for bilingual education, and comprehensive speed control across both providers. Users can now run AgentVibes in Claude Desktop via MCP server (no slash commands needed!), learn new languages through dual-language TTS playback, and control speech speed from 0.5x to 3.0x with intuitive scaling. The release also includes extensive documentation restructuring, Windows setup improvements, and 110 comprehensive tests ensuring rock-solid reliability.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## ✨ Major New Features
|
|
16
|
+
|
|
17
|
+
### 🎙️ Claude Desktop MCP Integration
|
|
18
|
+
|
|
19
|
+
**The Big Win:** AgentVibes now runs natively in Claude Desktop through Model Context Protocol!
|
|
20
|
+
|
|
21
|
+
#### What You Get:
|
|
22
|
+
- **Zero slash commands** - No more `/agent-vibes:` prefixes
|
|
23
|
+
- **Native MCP tools** - `text_to_speech()`, `list_voices()`, `set_voice()`, `set_personality()`, etc.
|
|
24
|
+
- **Easy installation** - One command: `npx agentvibes install-mcp`
|
|
25
|
+
- **Cross-platform support** - Windows (via WSL), macOS, Linux
|
|
26
|
+
- **Auto-dependency installation** - Python, MCP SDK installed automatically
|
|
27
|
+
- **Project-local settings** - Each Claude Desktop project has independent voice/personality
|
|
28
|
+
- **Provider switching** - Seamlessly switch between ElevenLabs and Piper from MCP tools
|
|
29
|
+
|
|
30
|
+
#### New MCP Tools:
|
|
31
|
+
1. `text_to_speech(text, voice, personality, language)` - Speak with full control
|
|
32
|
+
2. `list_voices()` - View all available voices for active provider
|
|
33
|
+
3. `set_voice(voice_name)` - Switch to different voice
|
|
34
|
+
4. `list_personalities()` - See personality options
|
|
35
|
+
5. `set_personality(personality)` - Change speaking style
|
|
36
|
+
6. `set_language(language)` - Speak in 30+ languages
|
|
37
|
+
7. `get_config()` - Check current voice/personality/language/provider
|
|
38
|
+
8. `replay_audio(n)` - Replay recently played TTS
|
|
39
|
+
9. `set_provider(provider)` - Switch between ElevenLabs/Piper
|
|
40
|
+
10. `set_learn_mode(enabled)` - Enable language learning
|
|
41
|
+
11. `set_speed(speed, target)` - Control speech speed
|
|
42
|
+
12. `get_speed()` - Check current speed settings
|
|
43
|
+
|
|
44
|
+
#### Installation:
|
|
45
|
+
```bash
|
|
46
|
+
# Install MCP server for Claude Desktop
|
|
47
|
+
npx agentvibes install-mcp
|
|
48
|
+
|
|
49
|
+
# The installer will:
|
|
50
|
+
# 1. Auto-install Python dependencies (mcp SDK)
|
|
51
|
+
# 2. Update Claude Desktop config (~/.claude/claude_desktop_config.json)
|
|
52
|
+
# 3. Configure provider (ElevenLabs or Piper)
|
|
53
|
+
# 4. Download Piper voices if using free provider
|
|
54
|
+
# 5. Show restart instructions
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
#### New Documentation:
|
|
58
|
+
- `mcp-server/README.md` - Complete MCP server documentation (347 lines)
|
|
59
|
+
- `mcp-server/QUICK_START.md` - Fast setup guide (205 lines)
|
|
60
|
+
- `mcp-server/WINDOWS_SETUP.md` - Windows-specific instructions (277 lines)
|
|
61
|
+
- `docs/mcp-setup.md` - Integration guide (147 lines)
|
|
62
|
+
|
|
63
|
+
#### Files Added:
|
|
64
|
+
- `bin/mcp-server.js` (122 lines) - Node.js MCP launcher
|
|
65
|
+
- `bin/mcp-server.sh` (206 lines) - Bash MCP wrapper
|
|
66
|
+
- `mcp-server/server.py` (706 lines) - Python MCP implementation
|
|
67
|
+
- `mcp-server/install-deps.js` (95 lines) - Auto-dependency installer
|
|
68
|
+
- `mcp-server/pyproject.toml` (52 lines) - Python project config
|
|
69
|
+
- `src/commands/install-mcp.js` (384 lines) - MCP installation command
|
|
70
|
+
|
|
71
|
+
**Total MCP Code:** 1,772 lines across 6 new files
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
### 🎓 Language Learning Mode
|
|
76
|
+
|
|
77
|
+
**Revolutionary Feature:** Learn languages through dual-language TTS playback!
|
|
78
|
+
|
|
79
|
+
#### How It Works:
|
|
80
|
+
1. Set your **main language** (e.g., English)
|
|
81
|
+
2. Set your **target language** (e.g., Spanish)
|
|
82
|
+
3. Enable learning mode
|
|
83
|
+
4. Every TTS message plays TWICE:
|
|
84
|
+
- First in your main language (English)
|
|
85
|
+
- Then in your target language (Spanish)
|
|
86
|
+
|
|
87
|
+
#### New Commands:
|
|
88
|
+
- `/agent-vibes:language` - Set your main/native language
|
|
89
|
+
- `/agent-vibes:target` - Set the language you want to learn
|
|
90
|
+
- `/agent-vibes:learn` - Enable/disable learning mode
|
|
91
|
+
- `/agent-vibes:target-voice` - Set voice for target language
|
|
92
|
+
- `/agent-vibes:replay-target` - Replay last target language audio
|
|
93
|
+
|
|
94
|
+
#### Sequential Audio Playback:
|
|
95
|
+
- **No overlapping audio** - Target language waits for main to complete
|
|
96
|
+
- **Lock file mechanism** - Uses `/tmp/agentvibes-audio.lock` for coordination
|
|
97
|
+
- **Precise timing** - Detects audio duration with ffprobe
|
|
98
|
+
- **Auto-timeout** - 30-second safety timeout
|
|
99
|
+
|
|
100
|
+
#### Provider-Aware Voice Mappings:
|
|
101
|
+
```bash
|
|
102
|
+
# Spanish mappings
|
|
103
|
+
ElevenLabs: Antoni, Matilda
|
|
104
|
+
Piper: en_US-lessac-medium, en_US-amy-medium
|
|
105
|
+
|
|
106
|
+
# French mappings
|
|
107
|
+
ElevenLabs: Rachel, Charlotte
|
|
108
|
+
Piper: en_US-ryan-high, en_GB-northern_english_male-medium
|
|
109
|
+
|
|
110
|
+
# German, Italian, Portuguese, Chinese, Japanese, Korean...
|
|
111
|
+
# 30+ languages fully supported!
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
#### Usage Example:
|
|
115
|
+
```bash
|
|
116
|
+
# Setup learning mode
|
|
117
|
+
/agent-vibes:language english
|
|
118
|
+
/agent-vibes:target spanish
|
|
119
|
+
/agent-vibes:learn enable
|
|
120
|
+
|
|
121
|
+
# Ask Claude something
|
|
122
|
+
User: "Explain how arrays work"
|
|
123
|
+
|
|
124
|
+
# Claude speaks:
|
|
125
|
+
1. English: "Arrays are ordered collections of elements..."
|
|
126
|
+
2. Spanish: "Los arrays son colecciones ordenadas de elementos..."
|
|
127
|
+
|
|
128
|
+
# Replay Spanish translation
|
|
129
|
+
/agent-vibes:replay-target
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
#### Files Added:
|
|
133
|
+
- `.claude/hooks/learn-manager.sh` (443 lines) - Learning mode implementation
|
|
134
|
+
- `.claude/commands/agent-vibes/learn.md` (67 lines)
|
|
135
|
+
- `.claude/commands/agent-vibes/language.md` (23 lines)
|
|
136
|
+
- `.claude/commands/agent-vibes/target.md` (30 lines)
|
|
137
|
+
- `.claude/commands/agent-vibes/target-voice.md` (26 lines)
|
|
138
|
+
- `.claude/commands/agent-vibes/replay-target.md` (14 lines)
|
|
139
|
+
- `.claude/hooks/replay-target-audio.sh` (64 lines)
|
|
140
|
+
|
|
141
|
+
**Total Language Learning Code:** 667 lines across 7 new files
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
### ⚡ Unified Speech Speed Control
|
|
146
|
+
|
|
147
|
+
**Cross-Provider Speed Control:** Adjust TTS speed from 0.5x to 3.0x for BOTH providers!
|
|
148
|
+
|
|
149
|
+
#### What's New:
|
|
150
|
+
- **Unified interface** - Same speed command works for ElevenLabs and Piper
|
|
151
|
+
- **Intuitive scaling** - Use `0.5x` (half speed), `1x` (normal), `2x` (double), `3x` (triple)
|
|
152
|
+
- **Human aliases** - Use `slow`, `slower`, `normal`, `fast`, `faster`
|
|
153
|
+
- **Provider-aware mapping** - Converts to provider-specific values automatically
|
|
154
|
+
- **Tongue twister demos** - Hear speed changes instantly
|
|
155
|
+
- **Independent control** - Set different speeds for main and target voices (learning mode)
|
|
156
|
+
|
|
157
|
+
#### ElevenLabs Mapping:
|
|
158
|
+
```
|
|
159
|
+
0.5x → 0.25 (ElevenLabs scale: 0.25-4.0)
|
|
160
|
+
1.0x → 1.0
|
|
161
|
+
2.0x → 2.0
|
|
162
|
+
3.0x → 3.0
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
#### Piper Mapping:
|
|
166
|
+
```
|
|
167
|
+
0.5x → -25% (Piper scale: -40% to +100%)
|
|
168
|
+
1.0x → 0%
|
|
169
|
+
2.0x → +50%
|
|
170
|
+
3.0x → +80%
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
#### Usage:
|
|
174
|
+
```bash
|
|
175
|
+
# Set speed with multiplier
|
|
176
|
+
/agent-vibes:set-speed 2x
|
|
177
|
+
|
|
178
|
+
# Set speed with alias
|
|
179
|
+
/agent-vibes:set-speed faster
|
|
180
|
+
|
|
181
|
+
# Set target voice speed (for learning mode)
|
|
182
|
+
/agent-vibes:set-speed target 1.5x
|
|
183
|
+
|
|
184
|
+
# Check current speeds
|
|
185
|
+
/agent-vibes:set-speed get
|
|
186
|
+
|
|
187
|
+
# After speed change, hear tongue twister demo:
|
|
188
|
+
# "The quick brown fox jumps over the lazy dog"
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
#### Files Added:
|
|
192
|
+
- `.claude/hooks/speed-manager.sh` (259 lines)
|
|
193
|
+
- `.claude/commands/agent-vibes/set-speed.md` (41 lines)
|
|
194
|
+
|
|
195
|
+
**Total Speed Control Code:** 300 lines across 2 new files
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
### 📚 Documentation Restructuring
|
|
200
|
+
|
|
201
|
+
**Complete README Overhaul:** Extracted main README into 13 focused documentation files!
|
|
202
|
+
|
|
203
|
+
#### Why This Matters:
|
|
204
|
+
- **README reduced** from 1,617 lines → 796 lines (50% smaller!)
|
|
205
|
+
- **Faster loading** - AI can read relevant docs without loading everything
|
|
206
|
+
- **Better organization** - Each feature has its own detailed guide
|
|
207
|
+
- **Easier maintenance** - Update docs without touching massive README
|
|
208
|
+
|
|
209
|
+
#### New Documentation Files:
|
|
210
|
+
1. `docs/quick-start.md` (85 lines) - Installation and first steps
|
|
211
|
+
2. `docs/mcp-setup.md` (147 lines) - Claude Desktop MCP integration
|
|
212
|
+
3. `docs/language-learning-mode.md` (126 lines) - Complete learning mode guide
|
|
213
|
+
4. `docs/providers.md` (114 lines) - ElevenLabs vs Piper comparison
|
|
214
|
+
5. `docs/voice-library.md` (47 lines) - Voice catalog and recommendations
|
|
215
|
+
6. `docs/personalities.md` (52 lines) - Personality system guide
|
|
216
|
+
7. `docs/commands.md` (67 lines) - Command reference
|
|
217
|
+
8. `docs/bmad-plugin.md` (85 lines) - BMAD integration
|
|
218
|
+
9. `docs/advanced-features.md` (48 lines) - Speed control, pretext, etc.
|
|
219
|
+
10. `docs/troubleshooting.md` (39 lines) - Common issues and solutions
|
|
220
|
+
11. `docs/updating.md` (53 lines) - Update instructions
|
|
221
|
+
12. `docs/installation-structure.md` (52 lines) - Directory structure
|
|
222
|
+
13. `docs/remote-audio-setup.md` (Updated, 85+ lines) - SSH audio tunneling
|
|
223
|
+
|
|
224
|
+
**Total New Documentation:** 1,000+ lines across 13 files
|
|
225
|
+
|
|
226
|
+
---
|
|
227
|
+
|
|
228
|
+
### 🪟 Windows Setup Improvements
|
|
229
|
+
|
|
230
|
+
**Complete Windows Setup Overhaul:**
|
|
231
|
+
|
|
232
|
+
#### What Changed:
|
|
233
|
+
- **Prerequisites first** - Python, Node.js, Claude Desktop/Code explained upfront
|
|
234
|
+
- **NPX installation** - No more `npm install`, use `npx agentvibes install`
|
|
235
|
+
- **Provider choice** - Clear comparison: Piper (free, WSL required) vs ElevenLabs (paid)
|
|
236
|
+
- **Human-friendly paths** - Use `%USERNAME%` instead of hardcoded names
|
|
237
|
+
- **Three-column tables** - Commands for Claude Desktop, Claude Code, Claude Code + MCP
|
|
238
|
+
- **WSL setup** - Complete WSL installation guide with Ubuntu Desktop RDP
|
|
239
|
+
- **Audio tunnel fix** - Scripts to fix audio over SSH (VS Code Remote)
|
|
240
|
+
|
|
241
|
+
#### New Files:
|
|
242
|
+
- `mcp-server/WINDOWS_SETUP.md` (277 lines) - Complete Windows guide
|
|
243
|
+
- `INSTALL_MCP_WINDOWS.md` (153 lines) - Windows MCP installation
|
|
244
|
+
- `AUDIO_TUNNEL_FIX_SUMMARY.md` (223 lines) - Audio tunnel documentation
|
|
245
|
+
- `scripts/fix-audio-tunnel.sh` (273 lines) - Audio tunnel fix script
|
|
246
|
+
- `scripts/fix-audio-tunnel-complete.sh` (255 lines) - Complete fix
|
|
247
|
+
- `scripts/setup-auto-monitor.sh` (86 lines) - Auto-monitor setup
|
|
248
|
+
|
|
249
|
+
**Total Windows Support:** 1,267 lines across 6 files
|
|
250
|
+
|
|
251
|
+
---
|
|
252
|
+
|
|
253
|
+
### 🧪 Comprehensive Test Coverage
|
|
254
|
+
|
|
255
|
+
**Massive Testing Expansion:** From 31 tests → 110 tests (254% increase!)
|
|
256
|
+
|
|
257
|
+
#### What Was Tested:
|
|
258
|
+
- **speed-manager.sh** (37 new tests)
|
|
259
|
+
- Speed setting with multipliers (0.5x, 1x, 2x, 3x)
|
|
260
|
+
- Human aliases (slow, slower, normal, fast, faster)
|
|
261
|
+
- Provider-aware speed mapping
|
|
262
|
+
- Target voice speed (learning mode)
|
|
263
|
+
- Speed retrieval and validation
|
|
264
|
+
|
|
265
|
+
- **provider-manager.sh** (42 new tests)
|
|
266
|
+
- Provider switching (ElevenLabs ↔ Piper)
|
|
267
|
+
- Voice synchronization when switching
|
|
268
|
+
- Provider info display
|
|
269
|
+
- Provider testing
|
|
270
|
+
- Non-interactive mode (MCP)
|
|
271
|
+
|
|
272
|
+
#### Test Files Updated:
|
|
273
|
+
- `test/unit/play-tts.bats` - Fixed provider config (5 tests passing)
|
|
274
|
+
- `test/unit/personality-manager.bats` - Fixed project-local paths (21 tests passing)
|
|
275
|
+
- `test/unit/voice-manager.bats` - Updated output assertions (1 test passing)
|
|
276
|
+
|
|
277
|
+
#### Test Infrastructure:
|
|
278
|
+
- `test/helpers/test-helper.bash` - Enhanced test utilities
|
|
279
|
+
- Mock audio players, curl, provider config
|
|
280
|
+
- Project-local directory simulation
|
|
281
|
+
|
|
282
|
+
**Test Results:**
|
|
283
|
+
```bash
|
|
284
|
+
npm test
|
|
285
|
+
# ✓ 110 tests passing
|
|
286
|
+
# ✓ 0 failures
|
|
287
|
+
# ✓ 100% passing rate
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
---
|
|
291
|
+
|
|
292
|
+
## 🐛 Bug Fixes
|
|
293
|
+
|
|
294
|
+
### Provider Switching Fixes
|
|
295
|
+
- **Fixed ElevenLabs language support** - Corrected `get_current_language()` → `get_language_code()`
|
|
296
|
+
- **Fixed voice sync** - Auto-update target voice when switching providers
|
|
297
|
+
- **Fixed non-interactive mode** - MCP provider switching works without prompts
|
|
298
|
+
|
|
299
|
+
### Audio Quality Fixes
|
|
300
|
+
- **128kbps bitrate preserved** - Fixed ffmpeg downsampling from 128kbps → 64kbps
|
|
301
|
+
- **No more static** - Eliminated quality degradation during audio padding
|
|
302
|
+
- **ElevenLabs static fix** - Force MP3 output to prevent static audio
|
|
303
|
+
|
|
304
|
+
### JSON Escaping (ElevenLabs)
|
|
305
|
+
- **Robust API communication** - Now uses jq for proper JSON escaping
|
|
306
|
+
- **Special characters fixed** - Handles quotes, backslashes, newlines correctly
|
|
307
|
+
- **Prevents API errors** - No more "Invalid \escape" errors
|
|
308
|
+
|
|
309
|
+
### BMAD Plugin Fixes
|
|
310
|
+
- **Provider-aware voice mapping** - BMAD agents use correct voice for active provider
|
|
311
|
+
- **Auto-context detection** - Improved detection of active BMAD agent
|
|
312
|
+
|
|
313
|
+
### Audio Tunnel Fixes
|
|
314
|
+
- **SSH audio compatibility** - Convert ElevenLabs audio to 48kHz stereo
|
|
315
|
+
- **Tunnel diagnostic** - Added scripts to verify audio tunnel health
|
|
316
|
+
- **Auto-monitor setup** - Scripts to automatically fix audio issues
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
## 🔧 Technical Changes
|
|
321
|
+
|
|
322
|
+
### Architecture Improvements
|
|
323
|
+
|
|
324
|
+
#### Project-Local Configuration Priority
|
|
325
|
+
All settings now check project-local `.claude/` first:
|
|
326
|
+
1. Check `$CLAUDE_PROJECT_DIR/.claude/tts-voice.txt` (project-local)
|
|
327
|
+
2. Fall back to `~/.claude/tts-voice.txt` (global)
|
|
328
|
+
|
|
329
|
+
Applies to:
|
|
330
|
+
- Voice settings
|
|
331
|
+
- Personality settings
|
|
332
|
+
- Sentiment settings
|
|
333
|
+
- Language settings
|
|
334
|
+
- Provider settings
|
|
335
|
+
- Speed settings
|
|
336
|
+
|
|
337
|
+
#### MCP Context Detection
|
|
338
|
+
Smart detection of whether running in MCP vs slash command context:
|
|
339
|
+
```bash
|
|
340
|
+
if [[ -n "$MCP_SERVER_NAME" ]] || [[ -n "$MCP_SESSION_ID" ]]; then
|
|
341
|
+
# Non-interactive MCP mode
|
|
342
|
+
else
|
|
343
|
+
# Interactive slash command mode
|
|
344
|
+
fi
|
|
345
|
+
```
|
|
346
|
+
|
|
347
|
+
#### Provider-Aware Command Routing
|
|
348
|
+
All commands now route through provider system:
|
|
349
|
+
- `/agent-vibes:preview` → `provider-commands.sh preview`
|
|
350
|
+
- `/agent-vibes:list` → `voice-manager.sh list` (provider-aware)
|
|
351
|
+
- `/agent-vibes:switch` → `voice-manager.sh switch` (validates provider)
|
|
352
|
+
|
|
353
|
+
### Performance Improvements
|
|
354
|
+
|
|
355
|
+
#### Sequential Audio Playback
|
|
356
|
+
- Lock file prevents overlapping audio
|
|
357
|
+
- Duration detection with ffprobe
|
|
358
|
+
- Async playback with automatic cleanup
|
|
359
|
+
- 30-second timeout prevents deadlocks
|
|
360
|
+
|
|
361
|
+
#### Piper Voice Caching
|
|
362
|
+
- Auto-download default voice on first run
|
|
363
|
+
- Voice models cached in `~/.local/share/piper-voices/`
|
|
364
|
+
- Faster subsequent TTS calls
|
|
365
|
+
|
|
366
|
+
---
|
|
367
|
+
|
|
368
|
+
## 📊 Files Changed
|
|
369
|
+
|
|
370
|
+
### Summary Statistics
|
|
371
|
+
```
|
|
372
|
+
72 files changed
|
|
373
|
+
8,652 insertions(+)
|
|
374
|
+
820 deletions(-)
|
|
375
|
+
|
|
376
|
+
Net change: +7,832 lines
|
|
377
|
+
```
|
|
378
|
+
|
|
379
|
+
### New Files (45 total)
|
|
380
|
+
|
|
381
|
+
**MCP Integration (6 files):**
|
|
382
|
+
- `bin/mcp-server.js`
|
|
383
|
+
- `bin/mcp-server.sh`
|
|
384
|
+
- `mcp-server/server.py`
|
|
385
|
+
- `mcp-server/install-deps.js`
|
|
386
|
+
- `mcp-server/pyproject.toml`
|
|
387
|
+
- `src/commands/install-mcp.js`
|
|
388
|
+
|
|
389
|
+
**Language Learning (7 files):**
|
|
390
|
+
- `.claude/hooks/learn-manager.sh`
|
|
391
|
+
- `.claude/commands/agent-vibes/learn.md`
|
|
392
|
+
- `.claude/commands/agent-vibes/language.md`
|
|
393
|
+
- `.claude/commands/agent-vibes/target.md`
|
|
394
|
+
- `.claude/commands/agent-vibes/target-voice.md`
|
|
395
|
+
- `.claude/commands/agent-vibes/replay-target.md`
|
|
396
|
+
- `.claude/hooks/replay-target-audio.sh`
|
|
397
|
+
|
|
398
|
+
**Speed Control (2 files):**
|
|
399
|
+
- `.claude/hooks/speed-manager.sh`
|
|
400
|
+
- `.claude/commands/agent-vibes/set-speed.md`
|
|
401
|
+
|
|
402
|
+
**Documentation (13 files):**
|
|
403
|
+
- `docs/quick-start.md`
|
|
404
|
+
- `docs/mcp-setup.md`
|
|
405
|
+
- `docs/language-learning-mode.md`
|
|
406
|
+
- `docs/providers.md`
|
|
407
|
+
- `docs/voice-library.md`
|
|
408
|
+
- `docs/personalities.md`
|
|
409
|
+
- `docs/commands.md`
|
|
410
|
+
- `docs/bmad-plugin.md`
|
|
411
|
+
- `docs/advanced-features.md`
|
|
412
|
+
- `docs/troubleshooting.md`
|
|
413
|
+
- `docs/updating.md`
|
|
414
|
+
- `docs/installation-structure.md`
|
|
415
|
+
- `docs/remote-audio-setup.md` (updated)
|
|
416
|
+
|
|
417
|
+
**Windows Support (6 files):**
|
|
418
|
+
- `mcp-server/WINDOWS_SETUP.md`
|
|
419
|
+
- `INSTALL_MCP_WINDOWS.md`
|
|
420
|
+
- `AUDIO_TUNNEL_FIX_SUMMARY.md`
|
|
421
|
+
- `scripts/fix-audio-tunnel.sh`
|
|
422
|
+
- `scripts/fix-audio-tunnel-complete.sh`
|
|
423
|
+
- `scripts/setup-auto-monitor.sh`
|
|
424
|
+
|
|
425
|
+
**Test Files (2 files):**
|
|
426
|
+
- `test/unit/speed-manager.bats` (37 tests)
|
|
427
|
+
- `test/unit/provider-manager.bats` (42 tests)
|
|
428
|
+
|
|
429
|
+
**Other (9 files):**
|
|
430
|
+
- `AgentVibes.code-workspace`
|
|
431
|
+
- `scripts/README.md`
|
|
432
|
+
- `scripts/TROUBLESHOOTING.md`
|
|
433
|
+
- `scripts/CHANGELOG-2025-10-16.md`
|
|
434
|
+
- `scripts/AUTO-MONITOR-SETUP.md`
|
|
435
|
+
- `scripts/check-audio-tunnel.sh`
|
|
436
|
+
- `scripts/health-check-tunnel.sh`
|
|
437
|
+
- `setup-ubuntu-rdp-audio.sh`
|
|
438
|
+
- Various config/example files
|
|
439
|
+
|
|
440
|
+
### Modified Files (27 total)
|
|
441
|
+
|
|
442
|
+
**Core Hooks:**
|
|
443
|
+
- `.claude/hooks/language-manager.sh` (+210 lines)
|
|
444
|
+
- `.claude/hooks/play-tts-elevenlabs.sh` (+166 lines)
|
|
445
|
+
- `.claude/hooks/play-tts-piper.sh` (+104 lines)
|
|
446
|
+
- `.claude/hooks/provider-commands.sh` (+137 lines)
|
|
447
|
+
- `.claude/hooks/provider-manager.sh` (+60 lines)
|
|
448
|
+
- `.claude/hooks/voice-manager.sh` (+125 lines)
|
|
449
|
+
- `.claude/hooks/personality-manager.sh` (+31 lines)
|
|
450
|
+
- `.claude/hooks/bmad-tts-injector.sh` (+57 lines)
|
|
451
|
+
|
|
452
|
+
**Configuration:**
|
|
453
|
+
- `.claude/output-styles/agent-vibes.md` (+88 lines)
|
|
454
|
+
- `.claude/commands/agent-vibes/commands.json`
|
|
455
|
+
- `.mcp-minimal.json`
|
|
456
|
+
|
|
457
|
+
**Documentation:**
|
|
458
|
+
- `README.md` (+796 lines, -820 deletions = net -24)
|
|
459
|
+
- `RELEASE_NOTES.md` (+97 lines)
|
|
460
|
+
- `RELEASE_NOTES_V2.md` (+263 lines)
|
|
461
|
+
|
|
462
|
+
**Installation:**
|
|
463
|
+
- `src/installer.js` (+70 lines)
|
|
464
|
+
- `package.json` (+12 lines)
|
|
465
|
+
|
|
466
|
+
**Tests:**
|
|
467
|
+
- `test/unit/play-tts.bats`
|
|
468
|
+
- `test/unit/personality-manager.bats`
|
|
469
|
+
- `test/unit/voice-manager.bats`
|
|
470
|
+
|
|
471
|
+
---
|
|
472
|
+
|
|
473
|
+
## 🎯 User Impact
|
|
474
|
+
|
|
475
|
+
### For Claude Desktop Users
|
|
476
|
+
✅ **Native MCP integration** - AgentVibes works in Claude Desktop now!
|
|
477
|
+
✅ **No slash commands** - Use natural MCP tools instead
|
|
478
|
+
✅ **Easy setup** - One command: `npx agentvibes install-mcp`
|
|
479
|
+
✅ **Cross-platform** - Windows (WSL), macOS, Linux all supported
|
|
480
|
+
|
|
481
|
+
### For Language Learners
|
|
482
|
+
✅ **Bilingual TTS** - Hear responses in two languages
|
|
483
|
+
✅ **30+ languages** - Spanish, French, German, Italian, Chinese, Japanese, etc.
|
|
484
|
+
✅ **Sequential playback** - No overlapping audio
|
|
485
|
+
✅ **Replay control** - Replay target language as many times as needed
|
|
486
|
+
✅ **Provider-aware** - Works with both ElevenLabs and Piper
|
|
487
|
+
|
|
488
|
+
### For Power Users
|
|
489
|
+
✅ **Speed control** - 0.5x to 3.0x across both providers
|
|
490
|
+
✅ **Unified interface** - Same commands work for all providers
|
|
491
|
+
✅ **Independent speeds** - Different speeds for main/target voices
|
|
492
|
+
✅ **Tongue twister demos** - Instant feedback on speed changes
|
|
493
|
+
|
|
494
|
+
### For Windows Users
|
|
495
|
+
✅ **Better setup docs** - Prerequisites first, clear instructions
|
|
496
|
+
✅ **WSL guidance** - Complete WSL setup with audio
|
|
497
|
+
✅ **Audio tunnel fixes** - Scripts to fix SSH audio issues
|
|
498
|
+
✅ **Three-column tables** - Commands for all use cases
|
|
499
|
+
|
|
500
|
+
### For All Users
|
|
501
|
+
✅ **Cleaner docs** - README 50% smaller, focused files
|
|
502
|
+
✅ **Better reliability** - 110 tests ensure everything works
|
|
503
|
+
✅ **Audio quality** - No static, preserved bitrate
|
|
504
|
+
✅ **Provider switching** - Seamless ElevenLabs ↔ Piper
|
|
505
|
+
|
|
506
|
+
---
|
|
507
|
+
|
|
508
|
+
## 🔄 Migration Notes
|
|
509
|
+
|
|
510
|
+
### For Existing Users (v2.0.16 → v2.0.17)
|
|
511
|
+
|
|
512
|
+
**No Breaking Changes!**
|
|
513
|
+
- All existing configurations preserved
|
|
514
|
+
- Voice/personality/sentiment settings work the same
|
|
515
|
+
- Slash commands unchanged
|
|
516
|
+
- Backward compatible with v2.0.16
|
|
517
|
+
|
|
518
|
+
**To Update:**
|
|
519
|
+
```bash
|
|
520
|
+
# From Claude Code
|
|
521
|
+
/agent-vibes:update
|
|
522
|
+
|
|
523
|
+
# From terminal
|
|
524
|
+
npx agentvibes update
|
|
525
|
+
|
|
526
|
+
# Or via npm (if installed globally)
|
|
527
|
+
npm update -g agentvibes
|
|
528
|
+
```
|
|
529
|
+
|
|
530
|
+
### New Features to Try
|
|
531
|
+
|
|
532
|
+
**1. Claude Desktop MCP (NEW!):**
|
|
533
|
+
```bash
|
|
534
|
+
npx agentvibes install-mcp
|
|
535
|
+
# Restart Claude Desktop
|
|
536
|
+
# Use text_to_speech() tool!
|
|
537
|
+
```
|
|
538
|
+
|
|
539
|
+
**2. Language Learning Mode (NEW!):**
|
|
540
|
+
```bash
|
|
541
|
+
/agent-vibes:language english
|
|
542
|
+
/agent-vibes:target spanish
|
|
543
|
+
/agent-vibes:learn enable
|
|
544
|
+
# Ask Claude anything - hear it in both languages!
|
|
545
|
+
```
|
|
546
|
+
|
|
547
|
+
**3. Speed Control (NEW!):**
|
|
548
|
+
```bash
|
|
549
|
+
/agent-vibes:set-speed 2x
|
|
550
|
+
# Hear tongue twister demo at double speed!
|
|
551
|
+
```
|
|
552
|
+
|
|
553
|
+
---
|
|
554
|
+
|
|
555
|
+
## 📝 Breaking Changes
|
|
556
|
+
|
|
557
|
+
**None!** This release is fully backward compatible with v2.0.16.
|
|
558
|
+
|
|
559
|
+
---
|
|
560
|
+
|
|
561
|
+
## 🐛 Known Issues
|
|
562
|
+
|
|
563
|
+
### MCP Server
|
|
564
|
+
- **Windows WSL requirement** - Piper TTS requires WSL on Windows
|
|
565
|
+
- **Python 3.10+ required** - MCP server needs modern Python
|
|
566
|
+
- **First-time setup** - May take 2-3 minutes to install dependencies
|
|
567
|
+
|
|
568
|
+
### Language Learning Mode
|
|
569
|
+
- **Requires ffprobe** - Install ffmpeg for duration detection
|
|
570
|
+
- **30-second timeout** - Very long audio may trigger timeout (increase if needed)
|
|
571
|
+
|
|
572
|
+
### Speed Control
|
|
573
|
+
- **Piper range limited** - Piper supports -40% to +100% (maps to 0.5x-3.0x)
|
|
574
|
+
- **ElevenLabs API limits** - Speed range is 0.25 to 4.0 on ElevenLabs side
|
|
575
|
+
|
|
576
|
+
---
|
|
577
|
+
|
|
578
|
+
## 💡 What's Next (v2.1.0 Roadmap)
|
|
579
|
+
|
|
580
|
+
### Planned Features
|
|
581
|
+
1. **Voice cloning** - Clone your own voice with ElevenLabs
|
|
582
|
+
2. **Custom personalities** - Create and share personality packs
|
|
583
|
+
3. **Multi-model MCP** - Support Anthropic, OpenAI, Gemini via MCP
|
|
584
|
+
4. **Browser extension** - AgentVibes for web-based AI chats
|
|
585
|
+
5. **Docker support** - Containerized AgentVibes for easy deployment
|
|
586
|
+
|
|
587
|
+
---
|
|
588
|
+
|
|
589
|
+
## 🙏 Credits
|
|
590
|
+
|
|
591
|
+
### Contributors
|
|
592
|
+
- **Paul Preibisch** - Creator and primary developer
|
|
593
|
+
- **Claude AI** - Co-development partner
|
|
594
|
+
- **Community** - Bug reports, feature requests, testing
|
|
595
|
+
|
|
596
|
+
### Special Thanks
|
|
597
|
+
- **ElevenLabs** - Amazing multilingual TTS API
|
|
598
|
+
- **Rhasspy/Piper** - Free, offline TTS voices
|
|
599
|
+
- **Anthropic** - Claude Code and MCP platform
|
|
600
|
+
- **All beta testers** - Testing v2.0.17-beta.1 through beta.25!
|
|
601
|
+
|
|
602
|
+
---
|
|
603
|
+
|
|
604
|
+
## 📚 Resources
|
|
605
|
+
|
|
606
|
+
- **Website**: https://agentvibes.org
|
|
607
|
+
- **GitHub**: https://github.com/paulpreibisch/AgentVibes
|
|
608
|
+
- **Issues**: https://github.com/paulpreibisch/AgentVibes/issues
|
|
609
|
+
- **Discord**: Coming soon!
|
|
610
|
+
- **NPM**: https://www.npmjs.com/package/agentvibes
|
|
611
|
+
|
|
612
|
+
---
|
|
613
|
+
|
|
614
|
+
## 📊 Release Statistics
|
|
615
|
+
|
|
616
|
+
### Commits
|
|
617
|
+
- **70 commits** since v2.0.16
|
|
618
|
+
- **5 days** of development
|
|
619
|
+
- **25 beta releases** (beta.1 through beta.25)
|
|
620
|
+
|
|
621
|
+
### Code Changes
|
|
622
|
+
- **72 files changed**
|
|
623
|
+
- **8,652 insertions**
|
|
624
|
+
- **820 deletions**
|
|
625
|
+
- **+7,832 net lines**
|
|
626
|
+
|
|
627
|
+
### Features
|
|
628
|
+
- **3 major features**: MCP integration, Language Learning Mode, Speed Control
|
|
629
|
+
- **45 new files**: MCP, docs, tests, Windows support
|
|
630
|
+
- **27 modified files**: Core hooks, configs, installer
|
|
631
|
+
- **79 new tests**: Speed manager (37), Provider manager (42)
|
|
632
|
+
- **110 total tests**: 100% passing rate
|
|
633
|
+
|
|
634
|
+
### Documentation
|
|
635
|
+
- **13 new docs**: Quick start, MCP setup, learning mode, etc.
|
|
636
|
+
- **1,000+ lines**: New focused documentation
|
|
637
|
+
- **README reduced**: From 1,617 → 796 lines (50% smaller)
|
|
638
|
+
|
|
639
|
+
---
|
|
640
|
+
|
|
641
|
+
🤖 Generated with [Claude Code](https://claude.com/claude-code)
|
|
642
|
+
|
|
643
|
+
Co-Authored-By: Claude <noreply@anthropic.com>
|
|
644
|
+
|
|
645
|
+
---
|
|
646
|
+
|
|
647
|
+
**Date:** October 17, 2025
|
|
648
|
+
**Version:** 2.0.17
|
|
649
|
+
**Git Tag:** v2.0.17
|
|
650
|
+
**NPM:** https://www.npmjs.com/package/agentvibes/v/2.0.17
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|