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,250 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Introducing AgentVibes v2.0.17 - Finally! Your Agents Can Talk Back!"
|
|
3
|
+
description: "AgentVibes v2.0.17 brings MCP server support, language learning mode, SSH audio optimization, and professional text-to-speech to Claude Code, Claude Desktop, and Warp Terminal."
|
|
4
|
+
date: "2025-10-10"
|
|
5
|
+
author: "Paul Preibisch"
|
|
6
|
+
tags: ["release", "features", "voice", "mcp"]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Introducing AgentVibes v2.0.17
|
|
10
|
+
|
|
11
|
+
**Finally! Your agents can talk back!** 🎤
|
|
12
|
+
|
|
13
|
+
We're thrilled to announce **AgentVibes v2.0.17** - our biggest release yet, transforming how you interact with AI assistants across Claude Code, Claude Desktop, and Warp Terminal.
|
|
14
|
+
|
|
15
|
+
## 🌟 Headline Features
|
|
16
|
+
|
|
17
|
+
### 🎙️ AgentVibes MCP Server - Natural Language Control
|
|
18
|
+
|
|
19
|
+
The game-changer: **MCP (Model Context Protocol) server support**!
|
|
20
|
+
|
|
21
|
+
What does this mean? Instead of memorizing slash commands like `/agent-vibes:switch Aria`, you can now simply say:
|
|
22
|
+
|
|
23
|
+
> *"Switch to Aria voice"*
|
|
24
|
+
> *"Change personality to sarcastic"*
|
|
25
|
+
> *"Speak in French"*
|
|
26
|
+
|
|
27
|
+
The MCP server is essentially a plugin that exposes AgentVibes functionality directly to your AI assistant. Your assistant understands what you want and calls the right functions automatically.
|
|
28
|
+
|
|
29
|
+
**The Big Win:** This enables **Claude Desktop** support! 🎉
|
|
30
|
+
|
|
31
|
+
AgentVibes started as a Claude Code exclusive, but with MCP, it now works seamlessly in Claude Desktop (Anthropic's ChatGPT competitor). Give Claude Desktop the command:
|
|
32
|
+
|
|
33
|
+
> *"Every time I give you a command, speak the acknowledgement using AgentVibes and confirm what you completed when done"*
|
|
34
|
+
|
|
35
|
+
Watch the magic happen!
|
|
36
|
+
|
|
37
|
+
**Supported Platforms:**
|
|
38
|
+
- **Claude Code** - Original platform, now with slash commands OR MCP
|
|
39
|
+
- **[Claude Desktop](https://claude.ai/download)** - NEW! Full MCP support
|
|
40
|
+
- **Warp Terminal** - AI-powered terminal with voice feedback
|
|
41
|
+
|
|
42
|
+
[→ Learn more about MCP Setup](https://github.com/paulpreibisch/AgentVibes/blob/main/docs/mcp-setup.md)
|
|
43
|
+
|
|
44
|
+
### 📚 Language Learning Mode - Learn While You Code
|
|
45
|
+
|
|
46
|
+
**Turn your coding sessions into immersive language learning experiences!**
|
|
47
|
+
|
|
48
|
+
Every task acknowledgment plays **twice**:
|
|
49
|
+
1. First in your native language (English)
|
|
50
|
+
2. Then in your target language (Spanish, French, German, etc.)
|
|
51
|
+
|
|
52
|
+
Example:
|
|
53
|
+
```
|
|
54
|
+
Claude: "I'll check that git status for you" 🔊
|
|
55
|
+
Claude: "Voy a revisar ese estado de git para ti" 🔊
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Repetition is key to learning - hearing phrases over and over in context helps them stick. Plus, it makes your coding journey way more fun!
|
|
59
|
+
|
|
60
|
+
**Quick Start:**
|
|
61
|
+
```bash
|
|
62
|
+
/agent-vibes:learn # Enable learning mode
|
|
63
|
+
/agent-vibes:target spanish # Set target language
|
|
64
|
+
/agent-vibes:set-speed target 0.75x # Slow down for better comprehension
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Supports 30+ languages including Spanish, French, German, Portuguese, Italian, Japanese, Korean, Chinese, and more!
|
|
68
|
+
|
|
69
|
+
[→ Complete Language Learning Guide](https://github.com/paulpreibisch/AgentVibes/blob/main/docs/language-learning-mode.md)
|
|
70
|
+
|
|
71
|
+
### 🔊 SSH Audio Optimization - Perfect Remote Development
|
|
72
|
+
|
|
73
|
+
Working on remote servers? **Auto-detected SSH audio optimization** eliminates static and clicking sounds!
|
|
74
|
+
|
|
75
|
+
AgentVibes now automatically detects when you're in an SSH session (VS Code Remote SSH, regular SSH, cloud dev environments) and converts audio to the optimal format for perfect playback.
|
|
76
|
+
|
|
77
|
+
No configuration needed - it just works! ✨
|
|
78
|
+
|
|
79
|
+
## 🎯 Complete Feature List
|
|
80
|
+
|
|
81
|
+
### Multi-Provider Support
|
|
82
|
+
|
|
83
|
+
Choose your voice provider:
|
|
84
|
+
|
|
85
|
+
- **ElevenLabs** - 150+ premium AI voices with incredible quality
|
|
86
|
+
- **Piper TTS** - 50+ free voices that work offline (no API key!)
|
|
87
|
+
|
|
88
|
+
Switch anytime with a single command:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
/agent-vibes:provider switch piper
|
|
92
|
+
/agent-vibes:provider switch elevenlabs
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
### 27+ Professional AI Voices
|
|
96
|
+
|
|
97
|
+
From character voices to accents and unique personalities:
|
|
98
|
+
- **Northern Terry** (Canadian charm)
|
|
99
|
+
- **Aria** (Clear, professional)
|
|
100
|
+
- **Antoni** (Warm, friendly)
|
|
101
|
+
- **Pirate Marshal** (Arr, matey!)
|
|
102
|
+
- **Rachel** (French accent)
|
|
103
|
+
- And 20+ more!
|
|
104
|
+
|
|
105
|
+
Preview before choosing:
|
|
106
|
+
```bash
|
|
107
|
+
/agent-vibes:preview # Preview voices
|
|
108
|
+
/agent-vibes:switch Aria # Select your favorite
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### 19 Built-in Personalities
|
|
112
|
+
|
|
113
|
+
Make your AI assistant uniquely yours:
|
|
114
|
+
|
|
115
|
+
🎭 **Character Personalities:**
|
|
116
|
+
- Sarcastic 😏
|
|
117
|
+
- Flirty 💋
|
|
118
|
+
- Pirate 🏴☠️
|
|
119
|
+
- Zen 🧘
|
|
120
|
+
- Robot 🤖
|
|
121
|
+
- Grandpa 👴
|
|
122
|
+
|
|
123
|
+
🎨 **Speaking Styles:**
|
|
124
|
+
- Dry Humor
|
|
125
|
+
- Encouraging
|
|
126
|
+
- Professional
|
|
127
|
+
- Casual
|
|
128
|
+
- Thoughtful
|
|
129
|
+
|
|
130
|
+
Apply personalities with:
|
|
131
|
+
```bash
|
|
132
|
+
/agent-vibes:personality pirate
|
|
133
|
+
/agent-vibes:personality sarcastic
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
### Advanced Sentiment System
|
|
137
|
+
|
|
138
|
+
Want your favorite voice to sound different without changing it? **Sentiments** apply speaking styles to any voice:
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
/agent-vibes:sentiment sarcastic # Make any voice sarcastic
|
|
142
|
+
/agent-vibes:sentiment flirty # Add flirty vibes
|
|
143
|
+
/agent-vibes:sentiment professional # Keep it professional
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
**Personalities vs Sentiments:**
|
|
147
|
+
- **Personalities** - Changes both voice AND style
|
|
148
|
+
- **Sentiments** - Changes only style, keeps your current voice
|
|
149
|
+
|
|
150
|
+
### 🌍 30+ Language Support
|
|
151
|
+
|
|
152
|
+
Full multilingual support with native voice quality:
|
|
153
|
+
- Spanish, French, German, Portuguese, Italian
|
|
154
|
+
- Japanese, Korean, Chinese, Russian, Arabic
|
|
155
|
+
- And 20+ more languages!
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
/agent-vibes:set-language spanish
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
### ⚡ Unified Speech Speed Control
|
|
162
|
+
|
|
163
|
+
Fine-tune playback speed for both providers:
|
|
164
|
+
|
|
165
|
+
```bash
|
|
166
|
+
/agent-vibes:set-speed 2x # Double speed
|
|
167
|
+
/agent-vibes:set-speed 0.5x # Half speed
|
|
168
|
+
/agent-vibes:set-speed target 0.75x # Slow target language for learning
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
### 🎵 Voice Replay & Management
|
|
172
|
+
|
|
173
|
+
Missed what Claude said? Replay it:
|
|
174
|
+
|
|
175
|
+
```bash
|
|
176
|
+
/agent-vibes:replay # Replay last message
|
|
177
|
+
/agent-vibes:replay 5 # Replay 5th last message
|
|
178
|
+
/agent-vibes:replay-target # Replay last target language audio
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
### 🔌 Enhanced BMAD Plugin
|
|
182
|
+
|
|
183
|
+
Auto voice switching for BMAD agents with multilingual support. Each agent can have its own voice and personality!
|
|
184
|
+
|
|
185
|
+
### Audio Quality Improvements
|
|
186
|
+
|
|
187
|
+
- Better bitrate preservation
|
|
188
|
+
- Non-blocking playback
|
|
189
|
+
- Improved provider switching
|
|
190
|
+
- Smart context detection with project-specific settings
|
|
191
|
+
|
|
192
|
+
## 🚀 Getting Started
|
|
193
|
+
|
|
194
|
+
### For Claude Code Users
|
|
195
|
+
|
|
196
|
+
One command installation:
|
|
197
|
+
|
|
198
|
+
```bash
|
|
199
|
+
npx agentvibes install
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
Enable the output style:
|
|
203
|
+
|
|
204
|
+
```bash
|
|
205
|
+
/output-style agent-vibes
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
### For Claude Desktop Users
|
|
209
|
+
|
|
210
|
+
Add the MCP server to your Claude Desktop configuration:
|
|
211
|
+
|
|
212
|
+
```json
|
|
213
|
+
{
|
|
214
|
+
"mcpServers": {
|
|
215
|
+
"agentvibes": {
|
|
216
|
+
"command": "npx",
|
|
217
|
+
"args": ["-y", "agentvibes@beta", "agentvibes-mcp-server"],
|
|
218
|
+
"env": {
|
|
219
|
+
"ELEVENLABS_API_KEY": "${ELEVENLABS_API_KEY}"
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
**Windows Users:** Check out our [Windows Setup Guide](https://github.com/paulpreibisch/AgentVibes/blob/main/mcp-server/WINDOWS_SETUP.md) for complete WSL and Python setup instructions.
|
|
227
|
+
|
|
228
|
+
## 🎯 What's Next?
|
|
229
|
+
|
|
230
|
+
We're continuously improving AgentVibes based on your feedback! Join our [GitHub Discussions](https://github.com/paulpreibisch/AgentVibes/discussions) to share ideas and feature requests.
|
|
231
|
+
|
|
232
|
+
**Upcoming features:**
|
|
233
|
+
- More voice options
|
|
234
|
+
- Additional language learning modes
|
|
235
|
+
- Enhanced personality customization
|
|
236
|
+
- Community-created personalities
|
|
237
|
+
|
|
238
|
+
## 📚 Resources
|
|
239
|
+
|
|
240
|
+
- **[Full Documentation](https://github.com/paulpreibisch/AgentVibes)** - Complete guides and references
|
|
241
|
+
- **[Voice Library](https://github.com/paulpreibisch/AgentVibes/blob/main/docs/voice-library.md)** - Browse all 27+ voices
|
|
242
|
+
- **[MCP Setup Guide](https://github.com/paulpreibisch/AgentVibes/blob/main/docs/mcp-setup.md)** - Natural language setup
|
|
243
|
+
- **[Language Learning Mode](https://github.com/paulpreibisch/AgentVibes/blob/main/docs/language-learning-mode.md)** - Master a new language
|
|
244
|
+
- **[Troubleshooting](https://github.com/paulpreibisch/AgentVibes/blob/main/docs/troubleshooting.md)** - Common issues & fixes
|
|
245
|
+
|
|
246
|
+
---
|
|
247
|
+
|
|
248
|
+
**Ready to give your AI a voice?** Install AgentVibes now and transform your coding experience!
|
|
249
|
+
|
|
250
|
+
[Download on GitHub](https://github.com/paulpreibisch/AgentVibes) | [View Release Notes](https://github.com/paulpreibisch/AgentVibes/releases/tag/v2.0.17-beta)
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Learn Spanish (or 30+ Languages) While You Code"
|
|
3
|
+
description: "AgentVibes Language Learning Mode turns your coding sessions into immersive language learning experiences."
|
|
4
|
+
date: "2025-10-12"
|
|
5
|
+
author: "Paul Preibisch"
|
|
6
|
+
tags: ["tutorial", "language-learning", "productivity"]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Learn Spanish While You Code
|
|
10
|
+
|
|
11
|
+
**What if you could learn a second language while programming?** That's exactly what AgentVibes Language Learning Mode enables!
|
|
12
|
+
|
|
13
|
+
## Why Learn Mode?
|
|
14
|
+
|
|
15
|
+
We believe that **repetition is the key to language learning**. Hearing phrases over and over again in another language - especially in real context - helps them stick in your memory naturally.
|
|
16
|
+
|
|
17
|
+
But language learning shouldn't feel like a chore. It should be fun! That's why we built Learning Mode directly into your coding workflow. Every time Claude acknowledges a task, you hear it in both English and your target language. No extra effort, no interruption to your flow - just natural, contextual language learning that makes your coding journey more enjoyable.
|
|
18
|
+
|
|
19
|
+
## How It Works
|
|
20
|
+
|
|
21
|
+
When Language Learning Mode is enabled, every task acknowledgment plays **twice**:
|
|
22
|
+
|
|
23
|
+
1. First in your main language (e.g., English)
|
|
24
|
+
2. Then in your target language (e.g., Spanish)
|
|
25
|
+
|
|
26
|
+
You hear the translation immediately, with context from your actual work!
|
|
27
|
+
|
|
28
|
+
## Quick Setup
|
|
29
|
+
|
|
30
|
+
### Step 1: Enable Learning Mode
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
/agent-vibes:learn
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Step 2: Set Your Target Language
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
/agent-vibes:target spanish
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### Step 3: Code Normally!
|
|
43
|
+
|
|
44
|
+
Now when Claude acknowledges tasks, you'll hear:
|
|
45
|
+
|
|
46
|
+
> "I'll check that git status for you"
|
|
47
|
+
> "Voy a revisar ese estado de git para ti"
|
|
48
|
+
|
|
49
|
+
## Supported Languages
|
|
50
|
+
|
|
51
|
+
AgentVibes supports **30+ languages**:
|
|
52
|
+
|
|
53
|
+
- 🇪🇸 Spanish
|
|
54
|
+
- 🇫🇷 French
|
|
55
|
+
- 🇩🇪 German
|
|
56
|
+
- 🇮🇹 Italian
|
|
57
|
+
- 🇵🇹 Portuguese
|
|
58
|
+
- 🇨🇳 Chinese
|
|
59
|
+
- 🇯🇵 Japanese
|
|
60
|
+
- 🇰🇷 Korean
|
|
61
|
+
- And 22 more!
|
|
62
|
+
|
|
63
|
+
View all languages:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
/agent-vibes:set-language list
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Advanced Features
|
|
70
|
+
|
|
71
|
+
### Control Speech Speed
|
|
72
|
+
|
|
73
|
+
Slow down the target language for easier learning:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
/agent-vibes:set-speed target 0.5x
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### Replay Target Audio
|
|
80
|
+
|
|
81
|
+
Want to hear that Spanish phrase again?
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
/agent-vibes:replay-target
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### Mix with Personalities
|
|
88
|
+
|
|
89
|
+
Learning mode works with any personality or sentiment:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
/agent-vibes:personality pirate
|
|
93
|
+
/agent-vibes:learn
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Now you'll learn Spanish... from a pirate! 🏴☠️
|
|
97
|
+
|
|
98
|
+
## Real-World Example
|
|
99
|
+
|
|
100
|
+
Here's what a typical coding session looks like:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
You: "Check git status"
|
|
104
|
+
Claude: "I'll check the git status for you"
|
|
105
|
+
Claude (Spanish): "Voy a revisar el estado de git para ti"
|
|
106
|
+
|
|
107
|
+
[...runs git status...]
|
|
108
|
+
|
|
109
|
+
Claude: "Your repository is clean"
|
|
110
|
+
Claude (Spanish): "Tu repositorio está limpio"
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
## Learning Tips
|
|
114
|
+
|
|
115
|
+
1. **Repeat Out Loud**: Say the target language phrase after hearing it
|
|
116
|
+
2. **Adjust Speed**: Start slow, gradually increase
|
|
117
|
+
3. **Focus on Tech Terms**: Learn programming vocabulary naturally
|
|
118
|
+
4. **Use Replay**: Don't hesitate to replay phrases
|
|
119
|
+
5. **Be Consistent**: Code daily for best results
|
|
120
|
+
|
|
121
|
+
## Science Behind It
|
|
122
|
+
|
|
123
|
+
Language Learning Mode uses **contextual immersion**:
|
|
124
|
+
|
|
125
|
+
- **Context**: You know what the phrase means (you just asked for it!)
|
|
126
|
+
- **Repetition**: You hear phrases multiple times throughout your session
|
|
127
|
+
- **Relevance**: You're learning vocabulary you actually use
|
|
128
|
+
- **Low Pressure**: No tests, just natural exposure
|
|
129
|
+
|
|
130
|
+
## Disable When Needed
|
|
131
|
+
|
|
132
|
+
Need to focus? Disable temporarily:
|
|
133
|
+
|
|
134
|
+
```bash
|
|
135
|
+
/agent-vibes:learn
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
(Toggle on/off with the same command)
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
**Start learning today**: [Install AgentVibes](https://github.com/paulpreibisch/AgentVibes) →
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Complete Guide to Voice Personalities in AgentVibes"
|
|
3
|
+
description: "Learn how to use the 19 built-in personalities and create custom ones to make your AI assistant truly unique."
|
|
4
|
+
date: "2025-01-10"
|
|
5
|
+
author: "Paul Preibisch"
|
|
6
|
+
tags: ["guide", "personalities", "customization"]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Complete Guide to Voice Personalities
|
|
10
|
+
|
|
11
|
+
AgentVibes includes **19 built-in personalities** that transform how your AI assistant speaks. From sarcastic to flirty, pirate to zen - there's a personality for every mood!
|
|
12
|
+
|
|
13
|
+
## What Are Personalities?
|
|
14
|
+
|
|
15
|
+
Personalities in AgentVibes change **both the voice AND speaking style**. When you activate a personality, you get:
|
|
16
|
+
|
|
17
|
+
- A unique voice character
|
|
18
|
+
- Custom speaking patterns
|
|
19
|
+
- Themed responses
|
|
20
|
+
|
|
21
|
+
## Built-in Personalities
|
|
22
|
+
|
|
23
|
+
### 😏 Sarcastic
|
|
24
|
+
Voice: Jessica Anne Bogart
|
|
25
|
+
Perfect for: Dry wit and cutting observations
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
/agent-vibes:personality sarcastic
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### 💋 Flirty
|
|
32
|
+
Voice: Jessica Anne Bogart
|
|
33
|
+
Perfect for: Playful and charming interactions
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
/agent-vibes:personality flirty
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### 🏴☠️ Pirate
|
|
40
|
+
Voice: Pirate Marshal
|
|
41
|
+
Perfect for: Adventurous coding sessions
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
/agent-vibes:personality pirate
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### 🧘 Zen
|
|
48
|
+
Voice: Northern Terry
|
|
49
|
+
Perfect for: Calm, mindful development
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
/agent-vibes:personality zen
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### 🤖 Robot
|
|
56
|
+
Voice: Northern Terry
|
|
57
|
+
Perfect for: Mechanical precision
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
/agent-vibes:personality robot
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Personalities vs Sentiments
|
|
64
|
+
|
|
65
|
+
**Confused about personalities vs sentiments?** Here's the difference:
|
|
66
|
+
|
|
67
|
+
- **Personalities**: Change BOTH voice AND style
|
|
68
|
+
- **Sentiments**: Keep current voice, only change style
|
|
69
|
+
|
|
70
|
+
Use **sentiments** when you love your current voice but want a different speaking style:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
/agent-vibes:sentiment sarcastic
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Creating Custom Personalities
|
|
77
|
+
|
|
78
|
+
Want to create your own personality? It's easy!
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
/agent-vibes:personality add mycustom
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
This creates a new file in `.claude/personalities/mycustom.md`. Edit it to customize:
|
|
85
|
+
|
|
86
|
+
```markdown
|
|
87
|
+
---
|
|
88
|
+
name: mycustom
|
|
89
|
+
description: Your custom personality
|
|
90
|
+
elevenlabs_voice: Aria
|
|
91
|
+
piper_voice: en_US-amy-medium
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
# My Custom Personality
|
|
95
|
+
|
|
96
|
+
## AI Instructions
|
|
97
|
+
|
|
98
|
+
Your custom instructions here...
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## Pro Tips
|
|
102
|
+
|
|
103
|
+
1. **Mix and Match**: Use personalities for fun, sentiments for precision
|
|
104
|
+
2. **Project-Specific**: Different projects can have different personalities
|
|
105
|
+
3. **Preview Voices**: Use `/agent-vibes:preview` to hear all voices before choosing
|
|
106
|
+
4. **Replay**: Use `/agent-vibes:replay` to hear the last message again
|
|
107
|
+
|
|
108
|
+
## Popular Combinations
|
|
109
|
+
|
|
110
|
+
Here are some popular voice + sentiment combinations:
|
|
111
|
+
|
|
112
|
+
- **Aria + Sarcastic**: Professional with attitude
|
|
113
|
+
- **Northern Terry + Zen**: Calm wisdom
|
|
114
|
+
- **Jessica + Flirty**: Playful charm
|
|
115
|
+
- **Pirate Marshal + Angry**: Fierce determination
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
**Explore all personalities**: [View the complete list](https://github.com/paulpreibisch/AgentVibes/tree/master/.claude/personalities) →
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import fs from 'fs';
|
|
2
|
+
import path from 'path';
|
|
3
|
+
import matter from 'gray-matter';
|
|
4
|
+
|
|
5
|
+
const postsDirectory = path.join(process.cwd(), 'content/blog');
|
|
6
|
+
|
|
7
|
+
export interface BlogPost {
|
|
8
|
+
slug: string;
|
|
9
|
+
title: string;
|
|
10
|
+
description: string;
|
|
11
|
+
date: string;
|
|
12
|
+
author: string;
|
|
13
|
+
tags: string[];
|
|
14
|
+
content: string;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export function getAllPosts(): BlogPost[] {
|
|
18
|
+
const fileNames = fs.readdirSync(postsDirectory);
|
|
19
|
+
const allPostsData = fileNames
|
|
20
|
+
.filter((fileName) => fileName.endsWith('.mdx'))
|
|
21
|
+
.map((fileName) => {
|
|
22
|
+
const slug = fileName.replace(/\.mdx$/, '');
|
|
23
|
+
const fullPath = path.join(postsDirectory, fileName);
|
|
24
|
+
const fileContents = fs.readFileSync(fullPath, 'utf8');
|
|
25
|
+
const { data, content } = matter(fileContents);
|
|
26
|
+
|
|
27
|
+
return {
|
|
28
|
+
slug,
|
|
29
|
+
title: data.title,
|
|
30
|
+
description: data.description,
|
|
31
|
+
date: data.date,
|
|
32
|
+
author: data.author,
|
|
33
|
+
tags: data.tags || [],
|
|
34
|
+
content,
|
|
35
|
+
} as BlogPost;
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
// Sort posts by date
|
|
39
|
+
return allPostsData.sort((a, b) => {
|
|
40
|
+
if (a.date < b.date) {
|
|
41
|
+
return 1;
|
|
42
|
+
} else {
|
|
43
|
+
return -1;
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export function getPostBySlug(slug: string): BlogPost | null {
|
|
49
|
+
try {
|
|
50
|
+
const fullPath = path.join(postsDirectory, `${slug}.mdx`);
|
|
51
|
+
const fileContents = fs.readFileSync(fullPath, 'utf8');
|
|
52
|
+
const { data, content } = matter(fileContents);
|
|
53
|
+
|
|
54
|
+
return {
|
|
55
|
+
slug,
|
|
56
|
+
title: data.title,
|
|
57
|
+
description: data.description,
|
|
58
|
+
date: data.date,
|
|
59
|
+
author: data.author,
|
|
60
|
+
tags: data.tags || [],
|
|
61
|
+
content,
|
|
62
|
+
} as BlogPost;
|
|
63
|
+
} catch (error) {
|
|
64
|
+
return null;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export function getAllSlugs(): string[] {
|
|
69
|
+
const fileNames = fs.readdirSync(postsDirectory);
|
|
70
|
+
return fileNames
|
|
71
|
+
.filter((fileName) => fileName.endsWith('.mdx'))
|
|
72
|
+
.map((fileName) => fileName.replace(/\.mdx$/, ''));
|
|
73
|
+
}
|