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,131 @@
|
|
|
1
|
+
# Bryce Beattie Custom Piper Voices - Licensing Documentation
|
|
2
|
+
|
|
3
|
+
**Source:** https://brycebeattie.com/files/tts/
|
|
4
|
+
**Date Captured:** 2025-10-17
|
|
5
|
+
**Purpose:** Legal documentation for including custom voices in AgentVibes repository
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Creator's Explicit Permission
|
|
10
|
+
|
|
11
|
+
> "Feel free to use these for any legal and ethical purpose. If somebody wants to upload these to HuggingFace or somewhere similar, you have my blessing."
|
|
12
|
+
>
|
|
13
|
+
> — Bryce Beattie
|
|
14
|
+
|
|
15
|
+
**Source URL:** https://brycebeattie.com/files/tts/
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Voices We're Including
|
|
20
|
+
|
|
21
|
+
### 1. Kristin
|
|
22
|
+
- **Type:** US English female
|
|
23
|
+
- **License:** Public Domain
|
|
24
|
+
- **Training:** 2000 epochs on medium quality settings
|
|
25
|
+
- **Dataset:** ~11.5 hours from public domain LibriVox.org recordings
|
|
26
|
+
- **Download Links:**
|
|
27
|
+
- .onnx: https://sfo3.digitaloceanspaces.com/bkmdls/kristin.onnx
|
|
28
|
+
- .json: https://sfo3.digitaloceanspaces.com/bkmdls/kristin.onnx.json
|
|
29
|
+
|
|
30
|
+
### 2. Jenny (Dioco)
|
|
31
|
+
- **Type:** UK English female (Irish accent)
|
|
32
|
+
- **License:** CC BY (Attribution required)
|
|
33
|
+
- **Attribution Note:** Similar to Creative Commons Attribution
|
|
34
|
+
- **Original Source:** Kaggle dataset (details on source page)
|
|
35
|
+
- **Download Links:**
|
|
36
|
+
- .onnx: https://sfo3.digitaloceanspaces.com/bkmdls/jenny.onnx
|
|
37
|
+
- .json: https://sfo3.digitaloceanspaces.com/bkmdls/jenny.onnx.json
|
|
38
|
+
|
|
39
|
+
### 3. ManyVoice
|
|
40
|
+
- **Type:** Multi-speaker (16 voices: 12 US English, 4 UK English)
|
|
41
|
+
- **License:** Public Domain
|
|
42
|
+
- **Training:** 400 epochs on medium quality settings
|
|
43
|
+
- **Dataset:** ~8 hours per voice from public domain LibriVox recordings with sound quality enhancements
|
|
44
|
+
- **Download Links:**
|
|
45
|
+
- .onnx: https://sfo3.digitaloceanspaces.com/bkmdls/mv2.onnx
|
|
46
|
+
- .json: https://sfo3.digitaloceanspaces.com/bkmdls/mv2.onnx.json
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## License Compatibility with Apache 2.0
|
|
51
|
+
|
|
52
|
+
### Public Domain Voices (Kristin, ManyVoice)
|
|
53
|
+
✅ **Fully compatible** - No restrictions on redistribution, modification, or commercial use
|
|
54
|
+
|
|
55
|
+
### CC BY Licensed Voice (Jenny)
|
|
56
|
+
✅ **Compatible** - Requires attribution:
|
|
57
|
+
- Include credit to Bryce Beattie
|
|
58
|
+
- Link to source: https://brycebeattie.com/files/tts/
|
|
59
|
+
- Mention CC BY license
|
|
60
|
+
- Already added to AgentVibes README and credits
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## Legal Basis for Inclusion in AgentVibes Repository
|
|
65
|
+
|
|
66
|
+
1. **Explicit Permission:** Creator granted blessing for redistribution
|
|
67
|
+
2. **Public Domain:** Kristin and ManyVoice have no licensing restrictions
|
|
68
|
+
3. **CC BY Compliance:** Jenny voice attributed properly in:
|
|
69
|
+
- README.md (Useful Links section)
|
|
70
|
+
- README.md (Credits/Special Thanks)
|
|
71
|
+
- VOICE_CREDITS.md (dedicated attribution file)
|
|
72
|
+
4. **Apache 2.0 Compatibility:** All licenses compatible with our project license
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## Attribution Requirements
|
|
77
|
+
|
|
78
|
+
### For Jenny Voice (CC BY):
|
|
79
|
+
```
|
|
80
|
+
Jenny voice by Bryce Beattie
|
|
81
|
+
Source: https://brycebeattie.com/files/tts/
|
|
82
|
+
License: CC BY (Creative Commons Attribution)
|
|
83
|
+
Original dataset: Dioco dataset (Kaggle)
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### For Kristin and ManyVoice (Public Domain):
|
|
87
|
+
```
|
|
88
|
+
Kristin and ManyVoice by Bryce Beattie
|
|
89
|
+
Source: https://brycebeattie.com/files/tts/
|
|
90
|
+
License: Public Domain
|
|
91
|
+
Dataset: LibriVox.org public domain recordings
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
## File Locations in AgentVibes
|
|
97
|
+
|
|
98
|
+
- Voice models: `mcp-server/voices/` (to be created)
|
|
99
|
+
- Download script: `.claude/hooks/piper-download-voices.sh`
|
|
100
|
+
- Credits: `README.md` and `VOICE_CREDITS.md`
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## Additional Voices Available (Not Included)
|
|
105
|
+
|
|
106
|
+
Other voices available from Bryce Beattie that we chose not to include:
|
|
107
|
+
- LJSpeech (medium and high)
|
|
108
|
+
- Cori (high and medium)
|
|
109
|
+
- John
|
|
110
|
+
- Norman
|
|
111
|
+
- Clean 100 (excluded per user preference)
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## Notes
|
|
116
|
+
|
|
117
|
+
- All voice models are ONNX format for Piper TTS
|
|
118
|
+
- Each voice includes .onnx model file and .onnx.json config file
|
|
119
|
+
- Voices trained on LibriVox public domain audiobooks
|
|
120
|
+
- Sound quality enhancements applied during training
|
|
121
|
+
- Compatible with Piper TTS engine (https://github.com/rhasspy/piper)
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
## Legal Disclaimer
|
|
126
|
+
|
|
127
|
+
This documentation represents our good-faith interpretation of the licensing information provided by Bryce Beattie. The explicit permission granted ("you have my blessing") combined with Public Domain and CC BY licenses provides clear legal basis for inclusion in the AgentVibes repository under Apache 2.0 license.
|
|
128
|
+
|
|
129
|
+
**Date of Legal Review:** 2025-10-17
|
|
130
|
+
**Reviewed By:** AgentVibes Project Team
|
|
131
|
+
**Status:** ✅ Approved for inclusion with proper attribution
|
package/docs/commands.md
CHANGED
|
@@ -6,8 +6,9 @@ All commands are prefixed with `/agent-vibes:`
|
|
|
6
6
|
|
|
7
7
|
| Command | AgentVibes MCP Equivalent | Description |
|
|
8
8
|
|---------|----------------|-------------|
|
|
9
|
-
| `/agent-vibes:list` | "List all voices" or "What voices are available?" | Show all available voices |
|
|
9
|
+
| `/agent-vibes:list` | "List all voices" or "What voices are available?" | Show all available voices (expands multi-speaker voices) |
|
|
10
10
|
| `/agent-vibes:switch <voice>` | "Switch to Aria voice" or "Change voice to Cowboy Bob" | Change to a different voice |
|
|
11
|
+
| `/agent-vibes:switch <voice>#<speaker>` | "Switch to 16Speakers#15" or "Use Kristin from 16Speakers" | Switch to specific speaker in multi-speaker voice |
|
|
11
12
|
| `/agent-vibes:whoami` | "What's my current voice?" or "Show my configuration" | Show current voice, sentiment & personality |
|
|
12
13
|
| `/agent-vibes:preview [N]` | "Preview voices" or "Let me hear the first 5 voices" | Preview voices with audio samples |
|
|
13
14
|
| `/agent-vibes:sample <voice>` | "Test Aria voice" or "Let me hear Cowboy Bob" | Test a specific voice |
|
|
@@ -15,6 +16,25 @@ All commands are prefixed with `/agent-vibes:`
|
|
|
15
16
|
| `/agent-vibes:replay [N]` | "Replay last message" or "Replay the 3rd message" | Replay recent TTS audio |
|
|
16
17
|
| `/agent-vibes:get` | "What voice am I using?" or "Get current voice" | Get currently selected voice |
|
|
17
18
|
|
|
19
|
+
### Multi-Speaker Voices
|
|
20
|
+
|
|
21
|
+
AgentVibes supports multi-speaker Piper voices that contain multiple voice personalities in one model:
|
|
22
|
+
|
|
23
|
+
- **16Speakers** - Contains 16 different voices (Cori, Kara, Kristin, Maria, Mike, Mark, Michael, James, Rose, progressingamerica, Steve, Owlivia, Paul, Jennifer, Emily, Martin)
|
|
24
|
+
|
|
25
|
+
**Usage:**
|
|
26
|
+
```bash
|
|
27
|
+
# List all speakers in a multi-speaker voice
|
|
28
|
+
/agent-vibes:list
|
|
29
|
+
|
|
30
|
+
# Switch to a specific speaker (0-based index)
|
|
31
|
+
/agent-vibes:switch 16Speakers#0 # Cori Samuel
|
|
32
|
+
/agent-vibes:switch 16Speakers#2 # Kristin Hughes
|
|
33
|
+
/agent-vibes:switch 16Speakers#15 # Martin Clifton
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
The list command will show all available speakers with their names and IDs, marking your current selection with `▶`.
|
|
37
|
+
|
|
18
38
|
## System Commands
|
|
19
39
|
|
|
20
40
|
| Command | AgentVibes MCP Equivalent | Description |
|
package/docs/mcp-setup.md
CHANGED
|
@@ -26,12 +26,7 @@ Instead of remembering slash commands like `/agent-vibes:switch Aria`, just say:
|
|
|
26
26
|
|
|
27
27
|
### For Claude Desktop
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
- **Windows:** WSL (Windows Subsystem for Linux) must be enabled
|
|
32
|
-
- **Python 3:** Must be installed on your system ([Download Python](https://www.python.org/downloads/))
|
|
33
|
-
- The MCP server will automatically install Python packages (mcp, pipx, Piper TTS)
|
|
34
|
-
- But Python 3 itself must be installed first by you
|
|
29
|
+
**📖 Read This First:** If you haven't installed Claude Desktop yet, [click here for the Windows Setup Guide](../mcp-server/WINDOWS_SETUP.md) - it covers WSL setup, Python installation, and all prerequisites.
|
|
35
30
|
|
|
36
31
|
**Step 1: Set Your ElevenLabs API Key (Windows)**
|
|
37
32
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
20251017
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# Vibe Coding: How PulseAudio Can Give Your Remote SSH Session a Voice!
|
|
2
|
+
|
|
3
|
+
My mornings and late evenings are when I'm at my creative peak. I like to use this time for things that are fun—or at least that I think are fun. Since I recently created AgentVibes (a way to make my computer speak back to me), I wanted to solve a limitation I was experiencing while working on a remote server. That curiosity led me down the PulseAudio rabbit hole, and what I discovered fundamentally changed how I code with AI.
|
|
4
|
+
|
|
5
|
+
## What is "Vibe Coding"?
|
|
6
|
+
|
|
7
|
+
According to Gene Kim, a researcher and author featured in the DORA report, **"vibe coding"** is defined as any form of coding where you don't type out code by hand. Instead of manual typing, the code emerges from an **iterative conversation with an AI**.
|
|
8
|
+
|
|
9
|
+
This is the future of software development. Not replacing developers, but amplifying our capabilities through natural dialogue.
|
|
10
|
+
|
|
11
|
+
## If We're Going to Have a Conversation, Let's Use Voice
|
|
12
|
+
|
|
13
|
+
When I discovered whisper typing several months ago, it fundamentally changed the way I use my computer. Rather than typing everything to my AI assistant, I now **talk** using whisper typing. The speed, the naturalness, the flow—it was transformative.
|
|
14
|
+
|
|
15
|
+
But then a thought struck me: **If I can talk to my computer, why can't it talk back?**
|
|
16
|
+
|
|
17
|
+
That question led me to create [**AgentVibes**](https://github.com/paulpreibisch/AgentVibes)—a plugin for Claude Code that brings professional text-to-speech narration to your AI coding sessions. Your AI assistant can now acknowledge your requests, confirm task completion, and provide feedback through voice.
|
|
18
|
+
|
|
19
|
+
Imagine this workflow:
|
|
20
|
+
- You speak your coding request using whisper typing
|
|
21
|
+
- Your AI assistant acknowledges with voice: "I'll refactor that authentication module for you"
|
|
22
|
+
- You continue working while hearing real-time progress updates
|
|
23
|
+
- The AI confirms: "Refactoring complete, all tests passing"
|
|
24
|
+
|
|
25
|
+
This is vibe coding at its finest—a natural, conversational flow between human and AI.
|
|
26
|
+
|
|
27
|
+
## The Remote Server Problem
|
|
28
|
+
|
|
29
|
+
But I discovered a limitation. Since text-to-speech typically executes on the computer you're programming on, **what happens when you're programming on a remote machine via SSH?**
|
|
30
|
+
|
|
31
|
+
This is the reality for many developers:
|
|
32
|
+
- Cloud development environments
|
|
33
|
+
- Powerful remote servers
|
|
34
|
+
- Team shared infrastructure
|
|
35
|
+
- Corporate VDI setups
|
|
36
|
+
|
|
37
|
+
The audio plays on the remote server—where you can't hear it. The conversational flow breaks down. The vibe is lost.
|
|
38
|
+
|
|
39
|
+
## Enter PulseAudio: The Hidden Hero
|
|
40
|
+
|
|
41
|
+
I went to task trying to figure out if there was a way to somehow play audio from a remote machine onto my local machine. That's when I was introduced to the true capabilities of **PulseAudio**.
|
|
42
|
+
|
|
43
|
+
Now, I've been a Linux user for many years and have used PulseAudio forever. But little did I know that **PulseAudio can actually stream audio over a network**, allowing a client to play audio from a remote server.
|
|
44
|
+
|
|
45
|
+
This completely blew my mind. 🤯
|
|
46
|
+
|
|
47
|
+
Here's what makes this powerful:
|
|
48
|
+
|
|
49
|
+
### The Architecture
|
|
50
|
+
```
|
|
51
|
+
Remote Linux Server (PulseAudio)
|
|
52
|
+
↓ SSH Reverse Tunnel
|
|
53
|
+
Windows Client (WSL/RDP Audio)
|
|
54
|
+
↓
|
|
55
|
+
Local Speakers 🔊
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### What This Enables
|
|
59
|
+
- Run AgentVibes on your remote server
|
|
60
|
+
- Hear TTS announcements on your local speakers
|
|
61
|
+
- Maintain the conversational flow of vibe coding
|
|
62
|
+
- Work from anywhere with full audio feedback
|
|
63
|
+
|
|
64
|
+
I'll tell you, I was **floored** that this was even possible.
|
|
65
|
+
|
|
66
|
+
## The Game-Changing Impact
|
|
67
|
+
|
|
68
|
+
The ability to have your AI assistant **acknowledge what you've typed and provide vocal confirmation** really does change the game when vibe coding.
|
|
69
|
+
|
|
70
|
+
Here's why it matters:
|
|
71
|
+
|
|
72
|
+
**1. Cognitive Offloading**
|
|
73
|
+
You don't need to constantly check the terminal to see if your AI understood. Voice acknowledgment lets you focus on problem-solving.
|
|
74
|
+
|
|
75
|
+
**2. Natural Flow State**
|
|
76
|
+
Conversations have rhythm. When both parties speak and listen, you stay in flow. Text-only breaks that rhythm.
|
|
77
|
+
|
|
78
|
+
**3. Active Guidance with Voice Feedback**
|
|
79
|
+
Vibe coding doesn't mean you stop paying attention—quite the opposite. You're actively guiding the AI through the implementation, reviewing its decisions, and course-correcting in real-time. Voice acknowledgment keeps you in the loop while your hands stay free to sketch architecture, review documentation, or reference other code. The conversation is continuous, and if you're an experienced developer, the depth and precision of that conversation becomes truly transformative.
|
|
80
|
+
|
|
81
|
+
**4. Reduced Context Switching**
|
|
82
|
+
No need to constantly alt-tab between terminal and code. Your ears keep you updated.
|
|
83
|
+
|
|
84
|
+
## Try It Yourself
|
|
85
|
+
|
|
86
|
+
Want to experience vibe coding with remote audio? I've documented the entire setup process.
|
|
87
|
+
|
|
88
|
+
**Check out AgentVibes:**
|
|
89
|
+
📦 GitHub: [github.com/paulpreibisch/AgentVibes](https://github.com/paulpreibisch/AgentVibes)
|
|
90
|
+
|
|
91
|
+
**Remote Audio Setup Guide:**
|
|
92
|
+
📚 Complete documentation: [Remote Audio Setup](https://github.com/paulpreibisch/AgentVibes/blob/master/docs/remote-audio-setup.md)
|
|
93
|
+
|
|
94
|
+
The setup includes:
|
|
95
|
+
- Automated scripts for Linux and Windows
|
|
96
|
+
- PulseAudio network configuration
|
|
97
|
+
- SSH tunnel setup
|
|
98
|
+
- Troubleshooting guides
|
|
99
|
+
- VS Code Remote-SSH integration
|
|
100
|
+
|
|
101
|
+
It took me a morning to figure out, but now you can set it up in 10 minutes.
|
|
102
|
+
|
|
103
|
+
## The Bigger Picture
|
|
104
|
+
|
|
105
|
+
This journey taught me something important: **The best developer tools emerge from solving real problems in your own workflow.**
|
|
106
|
+
|
|
107
|
+
I didn't set out to become a PulseAudio expert. I just wanted my AI assistant to talk back when I'm working on remote servers. The solution required diving deep into audio streaming, SSH tunneling, and network protocols—but the result is worth it.
|
|
108
|
+
|
|
109
|
+
Vibe coding isn't just about AI generating code. It's about creating an **environment where human and AI collaborate naturally**—through conversation, through voice, through continuous feedback loops.
|
|
110
|
+
|
|
111
|
+
And sometimes, that requires discovering that the tools you've been using for years have hidden superpowers you never knew existed.
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
**What's your experience with AI-assisted development? Have you tried vibe coding? Let's discuss in the comments!**
|
|
116
|
+
|
|
117
|
+
#VibeCoding #AI #DeveloperTools #SoftwareEngineering #PulseAudio #RemoteDevelopment #DevOps #AIAssisted #ClaudeCode #OpenSource
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
*P.S. - If you found this interesting, check out the AgentVibes project on GitHub. It's open source, supports multiple TTS providers (including free Piper TTS), and has 30+ professional AI voices. Star the repo if you find it useful!* ⭐
|