agentvibes 2.5.0 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (385) hide show
  1. package/.bmad/_cfg/agent-manifest.csv +11 -0
  2. package/.bmad/_cfg/agents/bmm-analyst.customize.yaml +42 -0
  3. package/.bmad/_cfg/agents/bmm-architect.customize.yaml +42 -0
  4. package/.bmad/_cfg/agents/bmm-dev.customize.yaml +42 -0
  5. package/.bmad/_cfg/agents/bmm-frame-expert.customize.yaml +42 -0
  6. package/.bmad/_cfg/agents/bmm-pm.customize.yaml +42 -0
  7. package/.bmad/_cfg/agents/bmm-sm.customize.yaml +42 -0
  8. package/.bmad/_cfg/agents/bmm-tea.customize.yaml +42 -0
  9. package/.bmad/_cfg/agents/bmm-tech-writer.customize.yaml +42 -0
  10. package/.bmad/_cfg/agents/bmm-ux-designer.customize.yaml +42 -0
  11. package/.bmad/_cfg/agents/core-bmad-master.customize.yaml +42 -0
  12. package/.bmad/_cfg/files-manifest.csv +243 -0
  13. package/.bmad/_cfg/ides/claude-code.yaml +6 -0
  14. package/.bmad/_cfg/manifest.yaml +9 -0
  15. package/.bmad/_cfg/task-manifest.csv +5 -0
  16. package/.bmad/_cfg/tool-manifest.csv +2 -0
  17. package/.bmad/_cfg/workflow-manifest.csv +38 -0
  18. package/.bmad/bmm/README.md +128 -0
  19. package/.bmad/bmm/agents/analyst.md +79 -0
  20. package/.bmad/bmm/agents/analyst.md.backup-pre-tts +75 -0
  21. package/.bmad/bmm/agents/architect.md +80 -0
  22. package/.bmad/bmm/agents/dev.md +70 -0
  23. package/.bmad/bmm/agents/frame-expert.md +72 -0
  24. package/.bmad/bmm/agents/pm.md +84 -0
  25. package/.bmad/bmm/agents/sm.md +93 -0
  26. package/.bmad/bmm/agents/tea.md +80 -0
  27. package/.bmad/bmm/agents/tech-writer.md +84 -0
  28. package/.bmad/bmm/agents/ux-designer.md +79 -0
  29. package/.bmad/bmm/config.yaml +17 -0
  30. package/.bmad/bmm/docs/README.md +236 -0
  31. package/.bmad/bmm/docs/agents-guide.md +1058 -0
  32. package/.bmad/bmm/docs/brownfield-guide.md +762 -0
  33. package/.bmad/bmm/docs/enterprise-agentic-development.md +686 -0
  34. package/.bmad/bmm/docs/faq.md +588 -0
  35. package/.bmad/bmm/docs/glossary.md +320 -0
  36. package/.bmad/bmm/docs/party-mode.md +224 -0
  37. package/.bmad/bmm/docs/quick-spec-flow.md +652 -0
  38. package/.bmad/bmm/docs/quick-start.md +376 -0
  39. package/.bmad/bmm/docs/scale-adaptive-system.md +612 -0
  40. package/.bmad/bmm/docs/test-architecture.md +396 -0
  41. package/.bmad/bmm/docs/workflow-architecture-reference.md +366 -0
  42. package/.bmad/bmm/docs/workflow-document-project-reference.md +489 -0
  43. package/.bmad/bmm/docs/workflows-analysis.md +370 -0
  44. package/.bmad/bmm/docs/workflows-implementation.md +286 -0
  45. package/.bmad/bmm/docs/workflows-planning.md +612 -0
  46. package/.bmad/bmm/docs/workflows-solutioning.md +554 -0
  47. package/.bmad/bmm/teams/default-party.csv +20 -0
  48. package/.bmad/bmm/teams/team-fullstack.yaml +13 -0
  49. package/.bmad/bmm/testarch/knowledge/ci-burn-in.md +675 -0
  50. package/.bmad/bmm/testarch/knowledge/component-tdd.md +486 -0
  51. package/.bmad/bmm/testarch/knowledge/contract-testing.md +957 -0
  52. package/.bmad/bmm/testarch/knowledge/data-factories.md +500 -0
  53. package/.bmad/bmm/testarch/knowledge/email-auth.md +721 -0
  54. package/.bmad/bmm/testarch/knowledge/error-handling.md +725 -0
  55. package/.bmad/bmm/testarch/knowledge/feature-flags.md +750 -0
  56. package/.bmad/bmm/testarch/knowledge/fixture-architecture.md +401 -0
  57. package/.bmad/bmm/testarch/knowledge/network-first.md +486 -0
  58. package/.bmad/bmm/testarch/knowledge/nfr-criteria.md +670 -0
  59. package/.bmad/bmm/testarch/knowledge/playwright-config.md +730 -0
  60. package/.bmad/bmm/testarch/knowledge/probability-impact.md +601 -0
  61. package/.bmad/bmm/testarch/knowledge/risk-governance.md +615 -0
  62. package/.bmad/bmm/testarch/knowledge/selective-testing.md +732 -0
  63. package/.bmad/bmm/testarch/knowledge/selector-resilience.md +527 -0
  64. package/.bmad/bmm/testarch/knowledge/test-healing-patterns.md +644 -0
  65. package/.bmad/bmm/testarch/knowledge/test-levels-framework.md +473 -0
  66. package/.bmad/bmm/testarch/knowledge/test-priorities-matrix.md +373 -0
  67. package/.bmad/bmm/testarch/knowledge/test-quality.md +664 -0
  68. package/.bmad/bmm/testarch/knowledge/timing-debugging.md +372 -0
  69. package/.bmad/bmm/testarch/knowledge/visual-debugging.md +524 -0
  70. package/.bmad/bmm/testarch/tea-index.csv +22 -0
  71. package/.bmad/bmm/workflows/1-analysis/brainstorm-project/instructions.md +112 -0
  72. package/.bmad/bmm/workflows/1-analysis/brainstorm-project/project-context.md +25 -0
  73. package/.bmad/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +26 -0
  74. package/.bmad/bmm/workflows/1-analysis/domain-research/instructions.md +425 -0
  75. package/.bmad/bmm/workflows/1-analysis/domain-research/template.md +180 -0
  76. package/.bmad/bmm/workflows/1-analysis/domain-research/workflow.yaml +28 -0
  77. package/.bmad/bmm/workflows/1-analysis/product-brief/checklist.md +115 -0
  78. package/.bmad/bmm/workflows/1-analysis/product-brief/instructions.md +524 -0
  79. package/.bmad/bmm/workflows/1-analysis/product-brief/template.md +181 -0
  80. package/.bmad/bmm/workflows/1-analysis/product-brief/workflow.yaml +45 -0
  81. package/.bmad/bmm/workflows/1-analysis/research/checklist-deep-prompt.md +144 -0
  82. package/.bmad/bmm/workflows/1-analysis/research/checklist-technical.md +249 -0
  83. package/.bmad/bmm/workflows/1-analysis/research/checklist.md +299 -0
  84. package/.bmad/bmm/workflows/1-analysis/research/claude-code/injections.yaml +114 -0
  85. package/.bmad/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +438 -0
  86. package/.bmad/bmm/workflows/1-analysis/research/instructions-market.md +675 -0
  87. package/.bmad/bmm/workflows/1-analysis/research/instructions-router.md +134 -0
  88. package/.bmad/bmm/workflows/1-analysis/research/instructions-technical.md +534 -0
  89. package/.bmad/bmm/workflows/1-analysis/research/template-deep-prompt.md +94 -0
  90. package/.bmad/bmm/workflows/1-analysis/research/template-market.md +347 -0
  91. package/.bmad/bmm/workflows/1-analysis/research/template-technical.md +245 -0
  92. package/.bmad/bmm/workflows/1-analysis/research/workflow.yaml +44 -0
  93. package/.bmad/bmm/workflows/2-plan-workflows/create-epics-and-stories/epics-template.md +80 -0
  94. package/.bmad/bmm/workflows/2-plan-workflows/create-epics-and-stories/instructions.md +616 -0
  95. package/.bmad/bmm/workflows/2-plan-workflows/create-epics-and-stories/workflow.yaml +53 -0
  96. package/.bmad/bmm/workflows/2-plan-workflows/create-ux-design/checklist.md +310 -0
  97. package/.bmad/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +1308 -0
  98. package/.bmad/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +145 -0
  99. package/.bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +61 -0
  100. package/.bmad/bmm/workflows/2-plan-workflows/prd/checklist.md +346 -0
  101. package/.bmad/bmm/workflows/2-plan-workflows/prd/domain-complexity.csv +13 -0
  102. package/.bmad/bmm/workflows/2-plan-workflows/prd/instructions.md +703 -0
  103. package/.bmad/bmm/workflows/2-plan-workflows/prd/prd-template.md +204 -0
  104. package/.bmad/bmm/workflows/2-plan-workflows/prd/project-types.csv +11 -0
  105. package/.bmad/bmm/workflows/2-plan-workflows/prd/workflow.yaml +52 -0
  106. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +217 -0
  107. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +74 -0
  108. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions-generate-stories.md +436 -0
  109. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +980 -0
  110. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +181 -0
  111. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +90 -0
  112. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +58 -0
  113. package/.bmad/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml +321 -0
  114. package/.bmad/bmm/workflows/3-solutioning/architecture/architecture-template.md +103 -0
  115. package/.bmad/bmm/workflows/3-solutioning/architecture/checklist.md +240 -0
  116. package/.bmad/bmm/workflows/3-solutioning/architecture/decision-catalog.yaml +222 -0
  117. package/.bmad/bmm/workflows/3-solutioning/architecture/instructions.md +768 -0
  118. package/.bmad/bmm/workflows/3-solutioning/architecture/pattern-categories.csv +13 -0
  119. package/.bmad/bmm/workflows/3-solutioning/architecture/workflow.yaml +55 -0
  120. package/.bmad/bmm/workflows/3-solutioning/implementation-readiness/checklist.md +169 -0
  121. package/.bmad/bmm/workflows/3-solutioning/implementation-readiness/instructions.md +332 -0
  122. package/.bmad/bmm/workflows/3-solutioning/implementation-readiness/template.md +146 -0
  123. package/.bmad/bmm/workflows/3-solutioning/implementation-readiness/workflow.yaml +62 -0
  124. package/.bmad/bmm/workflows/4-implementation/code-review/backlog_template.md +12 -0
  125. package/.bmad/bmm/workflows/4-implementation/code-review/checklist.md +22 -0
  126. package/.bmad/bmm/workflows/4-implementation/code-review/instructions.md +398 -0
  127. package/.bmad/bmm/workflows/4-implementation/code-review/workflow.yaml +60 -0
  128. package/.bmad/bmm/workflows/4-implementation/correct-course/checklist.md +279 -0
  129. package/.bmad/bmm/workflows/4-implementation/correct-course/instructions.md +206 -0
  130. package/.bmad/bmm/workflows/4-implementation/correct-course/workflow.yaml +56 -0
  131. package/.bmad/bmm/workflows/4-implementation/create-story/checklist.md +240 -0
  132. package/.bmad/bmm/workflows/4-implementation/create-story/instructions.md +256 -0
  133. package/.bmad/bmm/workflows/4-implementation/create-story/template.md +51 -0
  134. package/.bmad/bmm/workflows/4-implementation/create-story/workflow.yaml +71 -0
  135. package/.bmad/bmm/workflows/4-implementation/dev-story/checklist.md +38 -0
  136. package/.bmad/bmm/workflows/4-implementation/dev-story/instructions.md +267 -0
  137. package/.bmad/bmm/workflows/4-implementation/dev-story/workflow.yaml +56 -0
  138. package/.bmad/bmm/workflows/4-implementation/epic-tech-context/checklist.md +17 -0
  139. package/.bmad/bmm/workflows/4-implementation/epic-tech-context/instructions.md +164 -0
  140. package/.bmad/bmm/workflows/4-implementation/epic-tech-context/template.md +76 -0
  141. package/.bmad/bmm/workflows/4-implementation/epic-tech-context/workflow.yaml +57 -0
  142. package/.bmad/bmm/workflows/4-implementation/retrospective/instructions.md +1443 -0
  143. package/.bmad/bmm/workflows/4-implementation/retrospective/workflow.yaml +56 -0
  144. package/.bmad/bmm/workflows/4-implementation/sprint-planning/checklist.md +33 -0
  145. package/.bmad/bmm/workflows/4-implementation/sprint-planning/instructions.md +234 -0
  146. package/.bmad/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +55 -0
  147. package/.bmad/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +49 -0
  148. package/.bmad/bmm/workflows/4-implementation/story-context/checklist.md +16 -0
  149. package/.bmad/bmm/workflows/4-implementation/story-context/context-template.xml +34 -0
  150. package/.bmad/bmm/workflows/4-implementation/story-context/instructions.md +209 -0
  151. package/.bmad/bmm/workflows/4-implementation/story-context/workflow.yaml +61 -0
  152. package/.bmad/bmm/workflows/4-implementation/story-done/instructions.md +111 -0
  153. package/.bmad/bmm/workflows/4-implementation/story-done/workflow.yaml +26 -0
  154. package/.bmad/bmm/workflows/4-implementation/story-ready/instructions.md +117 -0
  155. package/.bmad/bmm/workflows/4-implementation/story-ready/workflow.yaml +23 -0
  156. package/.bmad/bmm/workflows/document-project/checklist.md +245 -0
  157. package/.bmad/bmm/workflows/document-project/documentation-requirements.csv +12 -0
  158. package/.bmad/bmm/workflows/document-project/instructions.md +222 -0
  159. package/.bmad/bmm/workflows/document-project/templates/deep-dive-template.md +345 -0
  160. package/.bmad/bmm/workflows/document-project/templates/index-template.md +169 -0
  161. package/.bmad/bmm/workflows/document-project/templates/project-overview-template.md +103 -0
  162. package/.bmad/bmm/workflows/document-project/templates/project-scan-report-schema.json +160 -0
  163. package/.bmad/bmm/workflows/document-project/templates/source-tree-template.md +135 -0
  164. package/.bmad/bmm/workflows/document-project/workflow.yaml +29 -0
  165. package/.bmad/bmm/workflows/document-project/workflows/deep-dive-instructions.md +298 -0
  166. package/.bmad/bmm/workflows/document-project/workflows/deep-dive.yaml +31 -0
  167. package/.bmad/bmm/workflows/document-project/workflows/full-scan-instructions.md +1106 -0
  168. package/.bmad/bmm/workflows/document-project/workflows/full-scan.yaml +31 -0
  169. package/.bmad/bmm/workflows/frame-expert/_shared/excalidraw-helpers.md +127 -0
  170. package/.bmad/bmm/workflows/frame-expert/_shared/excalidraw-library.json +90 -0
  171. package/.bmad/bmm/workflows/frame-expert/_shared/excalidraw-templates.yaml +127 -0
  172. package/.bmad/bmm/workflows/frame-expert/_shared/validate-json-instructions.md +79 -0
  173. package/.bmad/bmm/workflows/frame-expert/create-dataflow/checklist.md +39 -0
  174. package/.bmad/bmm/workflows/frame-expert/create-dataflow/instructions.md +131 -0
  175. package/.bmad/bmm/workflows/frame-expert/create-dataflow/workflow.yaml +23 -0
  176. package/.bmad/bmm/workflows/frame-expert/create-diagram/checklist.md +43 -0
  177. package/.bmad/bmm/workflows/frame-expert/create-diagram/instructions.md +142 -0
  178. package/.bmad/bmm/workflows/frame-expert/create-diagram/workflow.yaml +24 -0
  179. package/.bmad/bmm/workflows/frame-expert/create-flowchart/checklist.md +49 -0
  180. package/.bmad/bmm/workflows/frame-expert/create-flowchart/instructions.md +242 -0
  181. package/.bmad/bmm/workflows/frame-expert/create-flowchart/workflow.yaml +27 -0
  182. package/.bmad/bmm/workflows/frame-expert/create-wireframe/checklist.md +38 -0
  183. package/.bmad/bmm/workflows/frame-expert/create-wireframe/instructions.md +133 -0
  184. package/.bmad/bmm/workflows/frame-expert/create-wireframe/workflow.yaml +23 -0
  185. package/.bmad/bmm/workflows/techdoc/documentation-standards.md +262 -0
  186. package/.bmad/bmm/workflows/testarch/atdd/atdd-checklist-template.md +363 -0
  187. package/.bmad/bmm/workflows/testarch/atdd/checklist.md +373 -0
  188. package/.bmad/bmm/workflows/testarch/atdd/instructions.md +785 -0
  189. package/.bmad/bmm/workflows/testarch/atdd/workflow.yaml +45 -0
  190. package/.bmad/bmm/workflows/testarch/automate/checklist.md +580 -0
  191. package/.bmad/bmm/workflows/testarch/automate/instructions.md +1303 -0
  192. package/.bmad/bmm/workflows/testarch/automate/workflow.yaml +52 -0
  193. package/.bmad/bmm/workflows/testarch/ci/checklist.md +246 -0
  194. package/.bmad/bmm/workflows/testarch/ci/github-actions-template.yaml +165 -0
  195. package/.bmad/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +128 -0
  196. package/.bmad/bmm/workflows/testarch/ci/instructions.md +517 -0
  197. package/.bmad/bmm/workflows/testarch/ci/workflow.yaml +45 -0
  198. package/.bmad/bmm/workflows/testarch/framework/checklist.md +321 -0
  199. package/.bmad/bmm/workflows/testarch/framework/instructions.md +455 -0
  200. package/.bmad/bmm/workflows/testarch/framework/workflow.yaml +47 -0
  201. package/.bmad/bmm/workflows/testarch/nfr-assess/checklist.md +405 -0
  202. package/.bmad/bmm/workflows/testarch/nfr-assess/instructions.md +722 -0
  203. package/.bmad/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +443 -0
  204. package/.bmad/bmm/workflows/testarch/nfr-assess/workflow.yaml +47 -0
  205. package/.bmad/bmm/workflows/testarch/test-design/checklist.md +234 -0
  206. package/.bmad/bmm/workflows/testarch/test-design/instructions.md +782 -0
  207. package/.bmad/bmm/workflows/testarch/test-design/test-design-template.md +285 -0
  208. package/.bmad/bmm/workflows/testarch/test-design/workflow.yaml +48 -0
  209. package/.bmad/bmm/workflows/testarch/test-review/checklist.md +470 -0
  210. package/.bmad/bmm/workflows/testarch/test-review/instructions.md +608 -0
  211. package/.bmad/bmm/workflows/testarch/test-review/test-review-template.md +388 -0
  212. package/.bmad/bmm/workflows/testarch/test-review/workflow.yaml +46 -0
  213. package/.bmad/bmm/workflows/testarch/trace/checklist.md +654 -0
  214. package/.bmad/bmm/workflows/testarch/trace/instructions.md +1045 -0
  215. package/.bmad/bmm/workflows/testarch/trace/trace-template.md +673 -0
  216. package/.bmad/bmm/workflows/testarch/trace/workflow.yaml +55 -0
  217. package/.bmad/bmm/workflows/workflow-status/init/instructions.md +334 -0
  218. package/.bmad/bmm/workflows/workflow-status/init/workflow.yaml +28 -0
  219. package/.bmad/bmm/workflows/workflow-status/instructions.md +388 -0
  220. package/.bmad/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +138 -0
  221. package/.bmad/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +126 -0
  222. package/.bmad/bmm/workflows/workflow-status/paths/game-design.yaml +52 -0
  223. package/.bmad/bmm/workflows/workflow-status/paths/method-brownfield.yaml +122 -0
  224. package/.bmad/bmm/workflows/workflow-status/paths/method-greenfield.yaml +113 -0
  225. package/.bmad/bmm/workflows/workflow-status/paths/quick-flow-brownfield.yaml +58 -0
  226. package/.bmad/bmm/workflows/workflow-status/paths/quick-flow-greenfield.yaml +47 -0
  227. package/.bmad/bmm/workflows/workflow-status/project-levels.yaml +59 -0
  228. package/.bmad/bmm/workflows/workflow-status/workflow-status-template.yaml +24 -0
  229. package/.bmad/bmm/workflows/workflow-status/workflow.yaml +28 -0
  230. package/.bmad/core/agents/bmad-master.md +72 -0
  231. package/.bmad/core/agents/bmad-web-orchestrator.agent.xml +113 -0
  232. package/.bmad/core/config.yaml +11 -0
  233. package/.bmad/core/tasks/adv-elicit-methods.csv +39 -0
  234. package/.bmad/core/tasks/advanced-elicitation-methods.csv +21 -0
  235. package/.bmad/core/tasks/advanced-elicitation.xml +106 -0
  236. package/.bmad/core/tasks/index-docs.xml +65 -0
  237. package/.bmad/core/tasks/validate-workflow.xml +89 -0
  238. package/.bmad/core/tasks/workflow.xml +270 -0
  239. package/.bmad/core/tools/shard-doc.xml +109 -0
  240. package/.bmad/core/workflows/brainstorming/README.md +261 -0
  241. package/.bmad/core/workflows/brainstorming/brain-methods.csv +36 -0
  242. package/.bmad/core/workflows/brainstorming/instructions.md +315 -0
  243. package/.bmad/core/workflows/brainstorming/template.md +106 -0
  244. package/.bmad/core/workflows/brainstorming/workflow.yaml +38 -0
  245. package/.bmad/core/workflows/party-mode/instructions.md +202 -0
  246. package/.bmad/core/workflows/party-mode/workflow.yaml +28 -0
  247. package/.bmad/docs/claude-code-instructions.md +25 -0
  248. package/.claude/commands/agent-vibes-bmad-party.md +117 -0
  249. package/.claude/commands/bmad/bmm/agents/analyst.md +14 -0
  250. package/.claude/commands/bmad/bmm/agents/architect.md +14 -0
  251. package/.claude/commands/bmad/bmm/agents/dev.md +14 -0
  252. package/.claude/commands/bmad/bmm/agents/frame-expert.md +14 -0
  253. package/.claude/commands/bmad/bmm/agents/pm.md +14 -0
  254. package/.claude/commands/bmad/bmm/agents/sm.md +14 -0
  255. package/.claude/commands/bmad/bmm/agents/tea.md +14 -0
  256. package/.claude/commands/bmad/bmm/agents/tech-writer.md +14 -0
  257. package/.claude/commands/bmad/bmm/agents/ux-designer.md +14 -0
  258. package/.claude/commands/bmad/bmm/workflows/architecture.md +13 -0
  259. package/.claude/commands/bmad/bmm/workflows/brainstorm-project.md +13 -0
  260. package/.claude/commands/bmad/bmm/workflows/code-review.md +13 -0
  261. package/.claude/commands/bmad/bmm/workflows/correct-course.md +13 -0
  262. package/.claude/commands/bmad/bmm/workflows/create-dataflow.md +13 -0
  263. package/.claude/commands/bmad/bmm/workflows/create-diagram.md +13 -0
  264. package/.claude/commands/bmad/bmm/workflows/create-epics-and-stories.md +13 -0
  265. package/.claude/commands/bmad/bmm/workflows/create-flowchart.md +13 -0
  266. package/.claude/commands/bmad/bmm/workflows/create-story.md +13 -0
  267. package/.claude/commands/bmad/bmm/workflows/create-ux-design.md +13 -0
  268. package/.claude/commands/bmad/bmm/workflows/create-wireframe.md +13 -0
  269. package/.claude/commands/bmad/bmm/workflows/dev-story.md +13 -0
  270. package/.claude/commands/bmad/bmm/workflows/document-project.md +13 -0
  271. package/.claude/commands/bmad/bmm/workflows/domain-research.md +13 -0
  272. package/.claude/commands/bmad/bmm/workflows/epic-tech-context.md +13 -0
  273. package/.claude/commands/bmad/bmm/workflows/implementation-readiness.md +13 -0
  274. package/.claude/commands/bmad/bmm/workflows/prd.md +13 -0
  275. package/.claude/commands/bmad/bmm/workflows/product-brief.md +13 -0
  276. package/.claude/commands/bmad/bmm/workflows/research.md +13 -0
  277. package/.claude/commands/bmad/bmm/workflows/retrospective.md +13 -0
  278. package/.claude/commands/bmad/bmm/workflows/sprint-planning.md +13 -0
  279. package/.claude/commands/bmad/bmm/workflows/story-context.md +13 -0
  280. package/.claude/commands/bmad/bmm/workflows/story-done.md +13 -0
  281. package/.claude/commands/bmad/bmm/workflows/story-ready.md +13 -0
  282. package/.claude/commands/bmad/bmm/workflows/tech-spec.md +13 -0
  283. package/.claude/commands/bmad/bmm/workflows/workflow-init.md +13 -0
  284. package/.claude/commands/bmad/bmm/workflows/workflow-status.md +13 -0
  285. package/.claude/commands/bmad/core/agents/bmad-master.md +14 -0
  286. package/.claude/commands/bmad/core/tasks/advanced-elicitation.md +9 -0
  287. package/.claude/commands/bmad/core/tasks/index-docs.md +9 -0
  288. package/.claude/commands/bmad/core/tools/shard-doc.md +9 -0
  289. package/.claude/commands/bmad/core/workflows/brainstorming.md +13 -0
  290. package/.claude/commands/bmad/core/workflows/party-mode.md +13 -0
  291. package/.claude/github-star-reminder.txt +1 -1
  292. package/.claude/hooks/README-TTS-QUEUE.md +135 -0
  293. package/.claude/hooks/bmad-party-manager.sh +225 -0
  294. package/.claude/hooks/bmad-speak.sh +110 -0
  295. package/.claude/hooks/bmad-tts-injector.sh +8 -3
  296. package/.claude/hooks/bmad-voice-manager.sh +61 -29
  297. package/.claude/hooks/play-tts.sh +5 -0
  298. package/.claude/hooks/stop.sh +221 -0
  299. package/.claude/hooks/tts-queue-worker.sh +68 -0
  300. package/.claude/hooks/tts-queue.sh +105 -0
  301. package/.claude/verbosity.txt +1 -0
  302. package/README.md +8 -8
  303. package/RELEASE_NOTES.md +171 -370
  304. package/package.json +1 -1
  305. package/src/bmad-detector.js +3 -3
  306. package/src/commands/bmad-voices.js +392 -0
  307. package/src/installer.js +243 -51
  308. package/.claude/hooks/user-prompt-output.sh +0 -111
  309. package/.claude/plugins/bmad-voices-enabled.flag +0 -0
  310. package/.claude/plugins/bmad-voices.md +0 -51
  311. /package/{.bmad-core → v4-backup/.bmad-core}/agent-teams/team-all.yaml +0 -0
  312. /package/{.bmad-core → v4-backup/.bmad-core}/agent-teams/team-fullstack.yaml +0 -0
  313. /package/{.bmad-core → v4-backup/.bmad-core}/agent-teams/team-ide-minimal.yaml +0 -0
  314. /package/{.bmad-core → v4-backup/.bmad-core}/agent-teams/team-no-ui.yaml +0 -0
  315. /package/{.bmad-core → v4-backup/.bmad-core}/agents/analyst.md +0 -0
  316. /package/{.bmad-core → v4-backup/.bmad-core}/agents/architect.md +0 -0
  317. /package/{.bmad-core → v4-backup/.bmad-core}/agents/bmad-master.md +0 -0
  318. /package/{.bmad-core → v4-backup/.bmad-core}/agents/bmad-orchestrator.md +0 -0
  319. /package/{.bmad-core → v4-backup/.bmad-core}/agents/dev.md +0 -0
  320. /package/{.bmad-core → v4-backup/.bmad-core}/agents/pm.md +0 -0
  321. /package/{.bmad-core → v4-backup/.bmad-core}/agents/po.md +0 -0
  322. /package/{.bmad-core → v4-backup/.bmad-core}/agents/qa.md +0 -0
  323. /package/{.bmad-core → v4-backup/.bmad-core}/agents/sm.md +0 -0
  324. /package/{.bmad-core → v4-backup/.bmad-core}/agents/ux-expert.md +0 -0
  325. /package/{.bmad-core → v4-backup/.bmad-core}/checklists/architect-checklist.md +0 -0
  326. /package/{.bmad-core → v4-backup/.bmad-core}/checklists/change-checklist.md +0 -0
  327. /package/{.bmad-core → v4-backup/.bmad-core}/checklists/pm-checklist.md +0 -0
  328. /package/{.bmad-core → v4-backup/.bmad-core}/checklists/po-master-checklist.md +0 -0
  329. /package/{.bmad-core → v4-backup/.bmad-core}/checklists/story-dod-checklist.md +0 -0
  330. /package/{.bmad-core → v4-backup/.bmad-core}/checklists/story-draft-checklist.md +0 -0
  331. /package/{.bmad-core → v4-backup/.bmad-core}/core-config.yaml +0 -0
  332. /package/{.bmad-core → v4-backup/.bmad-core}/data/bmad-kb.md +0 -0
  333. /package/{.bmad-core → v4-backup/.bmad-core}/data/brainstorming-techniques.md +0 -0
  334. /package/{.bmad-core → v4-backup/.bmad-core}/data/elicitation-methods.md +0 -0
  335. /package/{.bmad-core → v4-backup/.bmad-core}/data/technical-preferences.md +0 -0
  336. /package/{.bmad-core → v4-backup/.bmad-core}/data/test-levels-framework.md +0 -0
  337. /package/{.bmad-core → v4-backup/.bmad-core}/data/test-priorities-matrix.md +0 -0
  338. /package/{.bmad-core → v4-backup/.bmad-core}/enhanced-ide-development-workflow.md +0 -0
  339. /package/{.bmad-core → v4-backup/.bmad-core}/install-manifest.yaml +0 -0
  340. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/advanced-elicitation.md +0 -0
  341. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/apply-qa-fixes.md +0 -0
  342. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/brownfield-create-epic.md +0 -0
  343. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/brownfield-create-story.md +0 -0
  344. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/correct-course.md +0 -0
  345. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/create-brownfield-story.md +0 -0
  346. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/create-deep-research-prompt.md +0 -0
  347. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/create-doc.md +0 -0
  348. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/create-next-story.md +0 -0
  349. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/document-project.md +0 -0
  350. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/execute-checklist.md +0 -0
  351. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/facilitate-brainstorming-session.md +0 -0
  352. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/generate-ai-frontend-prompt.md +0 -0
  353. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/index-docs.md +0 -0
  354. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/kb-mode-interaction.md +0 -0
  355. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/nfr-assess.md +0 -0
  356. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/qa-gate.md +0 -0
  357. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/review-story.md +0 -0
  358. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/risk-profile.md +0 -0
  359. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/shard-doc.md +0 -0
  360. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/test-design.md +0 -0
  361. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/trace-requirements.md +0 -0
  362. /package/{.bmad-core → v4-backup/.bmad-core}/tasks/validate-next-story.md +0 -0
  363. /package/{.bmad-core → v4-backup/.bmad-core}/templates/architecture-tmpl.yaml +0 -0
  364. /package/{.bmad-core → v4-backup/.bmad-core}/templates/brainstorming-output-tmpl.yaml +0 -0
  365. /package/{.bmad-core → v4-backup/.bmad-core}/templates/brownfield-architecture-tmpl.yaml +0 -0
  366. /package/{.bmad-core → v4-backup/.bmad-core}/templates/brownfield-prd-tmpl.yaml +0 -0
  367. /package/{.bmad-core → v4-backup/.bmad-core}/templates/competitor-analysis-tmpl.yaml +0 -0
  368. /package/{.bmad-core → v4-backup/.bmad-core}/templates/front-end-architecture-tmpl.yaml +0 -0
  369. /package/{.bmad-core → v4-backup/.bmad-core}/templates/front-end-spec-tmpl.yaml +0 -0
  370. /package/{.bmad-core → v4-backup/.bmad-core}/templates/fullstack-architecture-tmpl.yaml +0 -0
  371. /package/{.bmad-core → v4-backup/.bmad-core}/templates/market-research-tmpl.yaml +0 -0
  372. /package/{.bmad-core → v4-backup/.bmad-core}/templates/prd-tmpl.yaml +0 -0
  373. /package/{.bmad-core → v4-backup/.bmad-core}/templates/project-brief-tmpl.yaml +0 -0
  374. /package/{.bmad-core → v4-backup/.bmad-core}/templates/qa-gate-tmpl.yaml +0 -0
  375. /package/{.bmad-core → v4-backup/.bmad-core}/templates/story-tmpl.yaml +0 -0
  376. /package/{.bmad-core → v4-backup/.bmad-core}/user-guide.md +0 -0
  377. /package/{.bmad-core → v4-backup/.bmad-core}/utils/bmad-doc-template.md +0 -0
  378. /package/{.bmad-core → v4-backup/.bmad-core}/utils/workflow-management.md +0 -0
  379. /package/{.bmad-core → v4-backup/.bmad-core}/workflows/brownfield-fullstack.yaml +0 -0
  380. /package/{.bmad-core → v4-backup/.bmad-core}/workflows/brownfield-service.yaml +0 -0
  381. /package/{.bmad-core → v4-backup/.bmad-core}/workflows/brownfield-ui.yaml +0 -0
  382. /package/{.bmad-core → v4-backup/.bmad-core}/workflows/greenfield-fullstack.yaml +0 -0
  383. /package/{.bmad-core → v4-backup/.bmad-core}/workflows/greenfield-service.yaml +0 -0
  384. /package/{.bmad-core → v4-backup/.bmad-core}/workflows/greenfield-ui.yaml +0 -0
  385. /package/{.bmad-core → v4-backup/.bmad-core}/working-in-the-brownfield.md +0 -0
package/RELEASE_NOTES.md CHANGED
@@ -1,454 +1,255 @@
1
- # Release v2.4.3 - macOS Compatibility Fixes (2025-01-15)
1
+ # Release v2.7.0 - Party Mode Voice Improvements
2
2
 
3
- ## 🤖 AI Summary
3
+ **Release Date:** 2025-11-18
4
+ **Type:** Minor Release (New Features)
4
5
 
5
- This patch release resolves three critical macOS installation issues discovered during user testing. The fixes ensure seamless installation on macOS by adding proper audio playback support for ElevenLabs TTS, detecting the user's shell environment correctly (zsh vs bash), fixing Piper installer PATH issues, and handling optional plugin manifest files gracefully. These changes complete the macOS compatibility work started in v2.4.0, making AgentVibes fully functional across all platforms.
6
+ ## 🎯 AI Summary
6
7
 
7
- ## 📋 Changes
8
+ AgentVibes v2.7.0 transforms BMAD party mode into a professional multi-agent voice conversation system. This release introduces a sophisticated TTS queue architecture that enables sequential voice playback without blocking Claude Code, natural 2-second pauses between speakers, and customizable agent introductions. The configuration system has been reorganized to use the official `.claude/config/` directory, and several critical text-to-speech bugs have been fixed.
8
9
 
9
- ### 🐛 Bug Fixes
10
-
11
- - **Fixed ElevenLabs Audio Playback on macOS**
12
- - Added platform detection to use native `afplay` on macOS
13
- - Previously used Linux-only players (paplay/aplay) that don't exist on macOS
14
- - Audio files now play correctly instead of failing silently
15
- - File: `.claude/hooks/play-tts-elevenlabs.sh` lines 387-399
16
-
17
- - **Fixed Shell Environment Detection**
18
- - Installer now detects user's default shell (zsh vs bash)
19
- - Environment variables written to correct config file (.zshrc or .bashrc)
20
- - Scripts now execute using user's shell with proper environment
21
- - Replaced hardcoded `bash` calls with shell-aware execution
22
- - File: `src/installer.js` - Added `getUserShell()` and `execScript()` helpers
23
-
24
- - **Fixed Piper Version Check on macOS**
25
- - Version check now uses full path `$INSTALL_DIR/piper --version`
26
- - Previously failed because PATH wasn't updated in same shell session
27
- - Eliminates false "piper: command not found" error after successful install
28
- - File: `.claude/hooks/piper-installer.sh` line 200
29
-
30
- - **Fixed Plugin Manifest Installation Error**
31
- - Installer now checks if source `.claude-plugin/plugin.json` exists
32
- - Skips silently if file doesn't exist (optional feature)
33
- - Prevents ENOENT error: "no such file or directory" during installation
34
- - File: `src/installer.js` lines 682-704
35
-
36
- ## 🎯 User Impact
37
-
38
- **For macOS Users**: All three critical installation issues are now fixed! You can install AgentVibes on macOS without errors:
39
-
40
- 1. **ElevenLabs TTS audio plays correctly** - Uses native macOS `afplay` command
41
- 2. **Environment variables work** - Installer detects zsh and writes to .zshrc
42
- 3. **Piper installer succeeds** - No more false "command not found" errors
43
- 4. **No plugin manifest errors** - Installation completes cleanly
44
-
45
- **What Was Broken**:
46
- - ElevenLabs audio generated but didn't play (wrong audio player for macOS)
47
- - API keys written to .zshrc but scripts ran with bash (no environment)
48
- - Piper binary installed successfully but version check failed
49
- - Plugin manifest copy failed with ENOENT error
50
-
51
- **What's Fixed**: Complete macOS installation workflow now works end-to-end.
52
-
53
- ## 📦 Files Changed
54
-
55
- ### Modified
56
- - `.claude/hooks/play-tts-elevenlabs.sh` - Added macOS audio playback support
57
- - `.claude/hooks/piper-installer.sh` - Fixed version check PATH issue
58
- - `src/installer.js` - Added shell detection, fixed plugin manifest handling
59
-
60
- ### Statistics
61
- - 3 files changed
62
- - 26 insertions(+)
63
- - 7 deletions(-)
64
-
65
- ## 🔄 Breaking Changes
66
-
67
- None. This release only fixes bugs without changing any existing functionality.
68
-
69
- ## 🚀 Upgrade Notes
70
-
71
- Simply run:
72
- ```bash
73
- npx agentvibes@latest install --yes
74
- ```
75
-
76
- All fixes are applied automatically during installation. No manual configuration needed!
77
-
78
- ## 🙏 Credits
79
-
80
- Special thanks to **Tyler Worley** and **Brian Madison** for thorough macOS testing and reporting these issues! Their detailed bug reports with screenshots made these fixes possible.
81
-
82
- ## 🔗 Related
83
-
84
- - v2.4.2 - BMAD TTS Auto-Injection
85
- - v2.4.1 - macOS Piper Audio Playback Fix
86
- - v2.4.0 - macOS Piper TTS Support
87
-
88
- ---
89
-
90
- **Full Changelog**: https://github.com/paulpreibisch/AgentVibes/compare/v2.4.2...v2.4.3
10
+ **Key Highlights:**
11
+ - 🎭 **TTS Queue System** - Sequential non-blocking voice playback for party mode
12
+ - ⏸️ **Natural Speaker Pauses** - 2-second delay between agents for conversation flow
13
+ - 🎤 **Speaker Introductions** - Configurable intro text (e.g., "John, Product Manager here")
14
+ - 📁 **Config Reorganization** - Moved from `.claude/plugins/` to official `.claude/config/`
15
+ - 🐛 **Text Escaping Fixes** - No more "backslash exclamation" in speech
91
16
 
92
17
  ---
93
18
 
94
- # Release v2.4.2 - BMAD TTS Auto-Injection (2025-01-15)
95
-
96
- ## 🤖 AI Summary
97
-
98
- This patch release makes BMAD integration completely automatic! Previously, the installer only created documentation about BMAD integration but didn't actually modify the agent files. Now the installer automatically runs `bmad-tts-injector.sh enable` when BMAD is detected, ensuring BMAD agents will speak immediately after installation without requiring manual configuration steps.
19
+ ## New Features
99
20
 
100
- ## 📋 Changes
21
+ ### TTS Queue System for Party Mode
101
22
 
102
- ### Improvements
103
- - **Automatic BMAD TTS Injection**
104
- - Installer now automatically injects TTS hooks into BMAD agent files
105
- - Detects BMAD installation and enables TTS during AgentVibes installation
106
- - No manual steps required - agents speak immediately after install
107
- - File: `src/installer.js` lines 1004-1036
23
+ **Non-Blocking Sequential Playback** (commit: b4c7dd71)
24
+ - New `tts-queue.sh` and `tts-queue-worker.sh` background queue system
25
+ - Agents queue TTS requests and return immediately (non-blocking)
26
+ - Queue worker plays audio sequentially in the background
27
+ - Claude Code continues at full speed while voices play in order
28
+ - Base64 encoding handles special characters safely (apostrophes, quotes, etc.)
29
+ - Auto-starting worker with 5-second idle timeout
30
+ - Prevents audio overlap in multi-agent party mode discussions
108
31
 
109
- ### 🔧 Technical Changes
110
- - **Enhanced Installer Logic**
111
- - Import `execSync` from `node:child_process` to run shell scripts
112
- - Automatically execute `bmad-tts-injector.sh enable` when BMAD detected
113
- - Add comprehensive error handling with user-friendly fallback messages
114
- - Update success message to reflect automatic TTS injection status
115
- - Show injection status and available commands in completion box
116
-
117
- ## 🎯 User Impact
118
-
119
- **For BMAD Users**: When you install AgentVibes, TTS is now **automatically injected** into all your BMAD agent files. Your agents will speak immediately - no need to run `bmad-tts-injector.sh enable` manually!
120
-
121
- **What Changed**: The installer detects BMAD and automatically runs the TTS injection script, modifying agent files to include TTS hooks. If injection fails for any reason, you'll see a friendly error message with manual fallback instructions.
122
-
123
- **Installation is Simple**:
124
- ```bash
125
- npx agentvibes install --yes
126
- # TTS is automatically injected into BMAD agents!
32
+ **Benefits:**
33
+ ```
34
+ Before: Agent 1 text [WAIT 3s] Agent 2 text → [WAIT 3s] → Agent 3 text
35
+ After: Agent 1, 2, 3 text (instant) [Audio plays sequentially in background]
127
36
  ```
128
37
 
129
- ## 📦 Files Changed
130
-
131
- ### Modified
132
- - `src/installer.js` - Added automatic BMAD TTS injection during installation
133
-
134
- ### Statistics
135
- - 1 file changed
136
- - 40 insertions(+)
137
- - 4 deletions(-)
138
-
139
- ## 🔄 Breaking Changes
38
+ ### Natural Conversation Flow
140
39
 
141
- None. This release enhances the installation experience for BMAD users without affecting existing functionality.
40
+ **2-Second Pause Between Speakers** (commit: b4c7dd71)
41
+ - Automatic pause added after each agent finishes speaking
42
+ - Gives users time to process what was said before next agent speaks
43
+ - Creates natural conversation rhythm in party mode
44
+ - Implemented in queue worker for consistent timing
142
45
 
143
- ## 🚀 Upgrade Notes
46
+ ### Customizable Speaker Introductions
144
47
 
145
- Simply run:
146
- ```bash
147
- npx agentvibes@latest install --yes
148
- ```
48
+ **Agent Identification System** (commit: b4c7dd71)
49
+ - New "Intro" column in voice mapping table
50
+ - Default introductions for all 10 BMAD agents:
51
+ - "John, Product Manager here"
52
+ - "Mary, Business Analyst here"
53
+ - "Winston, Architect here"
54
+ - And 7 more specialized intros
55
+ - Intro text automatically prepended before dialogue
56
+ - Fully customizable via markdown table
57
+ - Leave blank to disable intro for specific agents
58
+ - New `get-intro` command in `bmad-voice-manager.sh`
149
59
 
150
- If you previously installed AgentVibes and manually ran `bmad-tts-injector.sh enable`, this update won't affect you. The injection script is idempotent and safe to run multiple times.
60
+ ---
151
61
 
152
- ## 🙏 Credits
62
+ ## 🔧 Configuration Improvements
153
63
 
154
- This improvement eliminates a manual configuration step that users frequently asked about, making BMAD integration seamless.
64
+ ### Official Config Directory Migration
155
65
 
156
- ## 🔗 Related
66
+ **Moved to .claude/config/** (commit: b4c7dd71)
67
+ - Migrated `bmad-voices.md` from `.claude/plugins/` to `.claude/config/`
68
+ - Moved `bmad-voices-enabled.flag` to config directory
69
+ - Updated all references in `bmad-voice-manager.sh`
70
+ - Aligns with Claude Code's official directory structure
71
+ - Avoids potential conflicts with future plugin system
157
72
 
158
- - v2.4.1 - macOS Audio Playback Fix
159
- - v2.4.0 - macOS Piper TTS Support
160
- - BMAD Plugin Documentation: `docs/bmad-plugin.md`
73
+ **Why This Matters:**
74
+ - `.claude/config/` is the official location for configuration files
75
+ - `.claude/plugins/` was never an official Claude Code directory
76
+ - Better organization alongside `agentvibes.json`
77
+ - Future-proof against official plugin system conflicts
161
78
 
162
79
  ---
163
80
 
164
- **Full Changelog**: https://github.com/paulpreibisch/AgentVibes/compare/v2.4.1...v2.4.2
81
+ ## 🐛 Bug Fixes
165
82
 
166
- ---
83
+ ### Text Escaping Issues
167
84
 
168
- # Release v2.4.1 - macOS Audio Playback Fix (2025-01-15)
85
+ **Backslash Escaping Fix** (commit: b4c7dd71)
86
+ - Fixed: TTS would speak "backslash exclamation" when text contained `\!`
87
+ - Solution: Added defensive stripping in `play-tts.sh` lines 49-52
88
+ - Removes `\!` and `\$` escape sequences before TTS
89
+ - Clean speech output without unwanted "backslash" words
90
+ - Also applied to `bmad-speak.sh` for BMAD agent dialogue
169
91
 
170
- ## 🤖 AI Summary
92
+ ### Voice Mapping Column Numbers
171
93
 
172
- This patch release fixes a critical audio playback issue on macOS where Piper TTS audio files were being created but not playing. The fix adds platform detection to use the native macOS `afplay` audio player instead of trying to use Linux-only audio players (mpv/aplay/paplay) that don't exist on macOS.
94
+ **AWK Column Parsing** (commit: b4c7dd71)
95
+ - Fixed: Voice lookups after adding Intro column
96
+ - AWK pipe-delimited parsing has empty $1, shifted all columns
97
+ - Updated all column references in `bmad-voice-manager.sh`:
98
+ - Voice columns: 5 (ElevenLabs), 6 (Piper)
99
+ - Intro column: 4
100
+ - Personality column: 7
101
+ - Voice selection now works correctly with new table structure
173
102
 
174
- ## 📋 Changes
103
+ ---
175
104
 
176
- ### 🐛 Bug Fixes
177
- - **Fixed macOS Audio Playback in Piper TTS**
178
- - Added platform detection to use `afplay` on macOS (Darwin)
179
- - Keeps existing Linux audio players (mpv/aplay/paplay) for WSL/Linux
180
- - Audio files now play correctly on macOS instead of silently failing
181
- - File: `.claude/hooks/play-tts-piper.sh` line 329-339
105
+ ## 📚 Documentation
182
106
 
183
- ## 🎯 User Impact
107
+ ### TTS Queue Architecture
184
108
 
185
- **For macOS Users**: Audio playback now works! If you were seeing "🎵 Saved to:" messages but hearing no sound, this update fixes that. Simply run `npx agentvibes@latest install --yes` to get the fix.
109
+ **New Documentation** (commit: b4c7dd71)
110
+ - Added comprehensive `README-TTS-QUEUE.md` (135 lines)
111
+ - Architecture diagrams and flow explanations
112
+ - Queue file format and worker lifecycle details
113
+ - Troubleshooting guide for common issues
114
+ - Performance benefits comparison (before/after)
115
+ - Thread safety and auto-restart behavior
186
116
 
187
- **What Was Broken**: After v2.4.0 added macOS Piper TTS support, audio files were being generated successfully but the playback failed silently because the script was trying to use Linux audio players that don't exist on macOS.
117
+ ### Voice Configuration Guide
188
118
 
189
- **What's Fixed**: The script now detects macOS and uses the native `afplay` command for audio playback.
119
+ **Updated Table Format** (commit: b4c7dd71)
120
+ - Documented new 6-column format with Intro field
121
+ - Clear instructions for editing introductions
122
+ - Examples of customizing agent identification
123
+ - Explanation of leaving Intro blank to disable
190
124
 
191
- ## 📦 Files Changed
125
+ ---
192
126
 
193
- ### Modified
194
- - `.claude/hooks/play-tts-piper.sh` - Added macOS platform detection for audio playback
127
+ ## 🔧 Technical Details
195
128
 
196
- ### Statistics
197
- - 1 file changed
198
- - 10 insertions(+)
199
- - 2 deletions(-)
129
+ ### Files Added
130
+ - `.claude/hooks/tts-queue.sh` (105 lines) - Queue manager for TTS requests
131
+ - `.claude/hooks/tts-queue-worker.sh` (68 lines) - Background sequential audio player
132
+ - `.claude/hooks/README-TTS-QUEUE.md` (135 lines) - Queue system documentation
133
+ - `.claude/config/bmad-voices.md` (moved from plugins)
134
+ - `.claude/config/bmad-voices-enabled.flag` (moved from plugins)
200
135
 
201
- ## 🔄 Breaking Changes
136
+ ### Files Modified
137
+ - `.claude/hooks/bmad-speak.sh` - Display name mapping, intro support, queue integration
138
+ - `.claude/hooks/bmad-voice-manager.sh` - Config path update, intro functions, column fixes
139
+ - `.claude/hooks/play-tts.sh` - Backslash escaping fix
202
140
 
203
- None. This is a pure bug fix release.
141
+ ### Files Removed
142
+ - `.claude/plugins/bmad-voices.md` (moved to config)
204
143
 
205
- ## 🚀 Upgrade Notes
144
+ ### Queue System Architecture
206
145
 
207
- Simply run:
146
+ **Queue File Format** (Base64 encoded):
208
147
  ```bash
209
- npx agentvibes@latest install --yes
148
+ TEXT_B64=<base64-encoded-text>
149
+ VOICE_B64=<base64-encoded-voice-name>
210
150
  ```
211
151
 
212
- This will update the hooks with the fixed audio playback script.
152
+ **Worker Lifecycle:**
153
+ 1. Auto-starts when first item added to empty queue
154
+ 2. Processes oldest items first (timestamp-sorted)
155
+ 3. Blocks during audio playback (lock mechanism)
156
+ 4. Adds 2-second pause after each item
157
+ 5. Auto-exits after 5 seconds idle
213
158
 
214
- ## 🙏 Credits
215
-
216
- Special thanks to:
217
- - **BMadCode** for reporting the issue and testing on macOS! (Official AgentVibes contributor 🎉)
218
- - macOS users who helped identify the silent audio playback problem
219
-
220
- ## 🔗 Related
221
-
222
- - v2.4.0 - Initial macOS Piper TTS support
223
- - Issue: Audio files created but not playing on macOS
224
- - Fix: Platform detection for native audio player selection
225
-
226
- ---
227
-
228
- **Full Changelog**: https://github.com/paulpreibisch/AgentVibes/compare/v2.4.0...v2.4.1
159
+ **Thread Safety:**
160
+ - Queue items use nanosecond timestamps for uniqueness
161
+ - Audio lock file prevents simultaneous playback
162
+ - Worker PID tracking prevents multiple workers
229
163
 
230
164
  ---
231
165
 
232
- # Release v2.4.0 - macOS Piper TTS Support (2025-01-15)
233
-
234
- ## 🤖 AI Summary
235
-
236
- This minor release brings **full Piper TTS support to macOS** via precompiled binaries, eliminating the Python dependency conflicts that previously prevented macOS users from using free offline TTS. Mac users can now install Piper TTS with zero Python dependencies - just download and run! The installer automatically detects your Mac architecture (Intel or Apple Silicon) and downloads the appropriate binary. This release also includes comprehensive GitHub Actions CI testing to validate Piper installation across all macOS versions (13, 14, 15) and both architectures.
237
-
238
- ## 📋 Changes
239
-
240
- ### ✨ New Features
241
- - **macOS Piper TTS Support via Precompiled Binaries**
242
- - Downloads official Piper binaries from rhasspy/piper releases
243
- - Automatic architecture detection (Apple Silicon M1/M2/M3 vs Intel)
244
- - Installs to `~/.local/bin/piper` with no Python dependencies
245
- - Zero pipx or pip conflicts - pure binary installation
246
- - Supports both `arm64` (Apple Silicon) and `x86_64` (Intel) architectures
247
-
248
- - **Comprehensive macOS CI Testing**
249
- - Tests Piper binary installation on macOS 13, 14, and 15
250
- - Tests user-reported `--no-deps` pip workaround method
251
- - Validates both Intel and Apple Silicon architectures
252
- - Confirms standard pipx failure and binary success
253
- - Runs across 9 macOS configurations (3 OS × 3 Node versions)
166
+ ## 📊 Stats
254
167
 
255
- ### 🐛 Bug Fixes
256
- - **Fixed macOS Piper Installation Failures**
257
- - Resolved pipx dependency conflict issues reported by users
258
- - Removed incorrect platform restriction blocking macOS
259
- - Fixed "Piper TTS is only supported on WSL and Linux" error
168
+ - **Commits:** 1
169
+ - **Files Changed:** 8
170
+ - **Lines Added:** 420
171
+ - **Lines Removed:** 50
172
+ - **New Scripts:** 2 (queue manager + worker)
173
+ - **Documentation:** 1 comprehensive guide
260
174
 
261
- ### 📚 Documentation
262
- - **Updated Provider Documentation**
263
- - Corrected platform support matrix to include macOS
264
- - Added macOS-specific installation requirements
265
- - Clarified binary vs pipx installation methods
266
- - Updated "Choose Piper TTS if" section with macOS callout
267
-
268
- - **Installer Script Documentation**
269
- - Added platform detection logic documentation
270
- - Documented binary download and extraction process
271
- - Added PATH setup instructions for macOS users
175
+ ---
272
176
 
273
- ### 🔧 Maintenance
274
- - **Refactored Release Process**
275
- - Extracted `showReleaseInfo()` function for code reuse
276
- - Added critical ordering warning to `/release` command
277
- - Documented README update before npm publish requirement
177
+ ## 🚀 Upgrade Guide
278
178
 
279
- ## 🎯 User Impact
179
+ ### From v2.6.0
280
180
 
281
- **For macOS Users**: You can now use **completely free offline Piper TTS** on your Mac! No more ElevenLabs API key required. No more Python/pipx dependency hell. Just run `.claude/hooks/piper-installer.sh` and you're done. Works on both Intel Macs and Apple Silicon (M1/M2/M3).
181
+ **No breaking changes** - this is a backward-compatible feature release.
282
182
 
283
- **For All Users**: The updated documentation now correctly reflects that Piper TTS works on **ALL platforms**: Windows, macOS, Linux, and WSL.
183
+ To get the new features:
284
184
 
285
- **Installation is Simple**:
286
185
  ```bash
287
- # Run AgentVibes installer
288
- npx agentvibes install --yes
289
-
290
- # Or directly run Piper installer
291
- .claude/hooks/piper-installer.sh
186
+ # Update AgentVibes
187
+ npx agentvibes update
292
188
 
293
- # Add to PATH (if needed)
294
- echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc
295
- source ~/.zshrc
189
+ # Party mode will automatically use the queue system
190
+ # Voice introductions work immediately with defaults
191
+ # Config files automatically migrated to .claude/config/
296
192
  ```
297
193
 
298
- **Architecture Support**:
299
- - ✅ Apple Silicon (M1/M2/M3): Downloads `piper_macos_aarch64.tar.gz`
300
- - ✅ Intel Mac (x86_64): Downloads `piper_macos_x64.tar.gz`
301
-
302
- ## 📦 Files Changed
303
-
304
- ### Modified
305
- - `.claude/hooks/piper-installer.sh` - Added macOS binary installation support
306
- - `.github/workflows/test-macos.yml` - Added comprehensive Piper installation tests
307
- - `docs/providers.md` - Updated macOS support documentation
308
- - `.claude/commands/release.md` - Added README update ordering warning
309
- - `src/installer.js` - Refactored release info display
310
-
311
- ### Statistics
312
- - 5 files changed
313
- - 241 insertions(+)
314
- - 130 deletions(-)
194
+ ### Customizing Speaker Introductions
315
195
 
316
- ## 🔄 Breaking Changes
196
+ Edit `.claude/config/bmad-voices.md`:
317
197
 
318
- None. This release is fully backward compatible. Linux/WSL users continue using pipx installation, macOS users now get binary installation.
319
-
320
- ## 🚀 Upgrade Notes
321
-
322
- Simply run:
323
- ```bash
324
- npx agentvibes@latest install --yes
198
+ ```markdown
199
+ | Agent ID | Agent Name | Intro | ElevenLabs Voice | Piper Voice | Personality |
200
+ |----------|------------|-------|------------------|-------------|-------------|
201
+ | pm | John | John here | Matthew Schmitz | en_US-ryan-high | professional |
325
202
  ```
326
203
 
327
- Existing configurations are preserved. If you're on macOS and previously couldn't install Piper, it will work now!
328
-
329
- ## 🙏 Credits
330
-
331
- Special thanks to:
332
- - **BMadCode** for reporting the macOS installation issue
333
- - **rhasspy/piper** project for providing macOS binaries
334
- - Community members who suggested the `--no-deps` workaround
335
-
336
- ## 📊 Testing
337
-
338
- This release includes extensive CI testing:
339
- - ✅ 9 macOS configurations (macOS 13/14/15 × Node 18/20/22)
340
- - ✅ Both architecture types (Intel and Apple Silicon)
341
- - ✅ Binary download and extraction validation
342
- - ✅ Piper execution tests
343
- - ✅ Fallback to pipx testing (confirms original issue)
344
-
345
- ---
346
-
347
- **Full Changelog**: https://github.com/paulpreibisch/AgentVibes/compare/v2.3.1...v2.4.0
204
+ Change "John here" to your preferred introduction text, or leave blank to disable.
348
205
 
349
206
  ---
350
207
 
351
- ## v2.3.0 - Command Visibility Management & Maintenance (2025-11-06)
352
-
353
- ### 🤖 AI Summary
354
-
355
- This minor release introduces command visibility management features allowing MCP users to hide/show AgentVibes slash commands, plus important maintenance improvements. Users who primarily interact with AgentVibes through MCP tools can now declutter their Claude Code command palette by hiding slash commands, while still retaining full MCP functionality. The release also includes improved .gitignore rules to exclude runtime and user-generated files from version control.
356
-
357
- ### 📋 Changes
358
-
359
- #### ✨ New Features
360
- - **Command Visibility Management**: New `/agent-vibes:hide` and `/agent-vibes:show` commands
361
- - Hide all AgentVibes slash commands from Claude Code interface
362
- - Keeps only hide/show commands visible when hidden
363
- - MCP functionality remains completely unaffected
364
- - Commands safely backed up to `.claude/.agentvibes-backup/`
365
- - Perfect for users who prefer MCP tools over slash commands
366
-
367
- #### 🔧 Maintenance
368
- - **Enhanced .gitignore**: Improved exclusion rules for runtime files
369
- - `.claude/plugins/*.flag` - Plugin state flags
370
- - `.claude/piper-voices/` - Downloaded voice models
371
- - `.claude/piper-voices-dir.txt` - Voice directory config
372
- - `.claude/github-star-reminder.txt` - UI reminder state
373
- - `.claude/.agentvibes-backup/` - Hidden command backups
374
- - `.claude/.agentvibes-hidden.flag` - Command visibility state
375
-
376
- #### 📚 Documentation
377
- - **README**: Updated version to v2.2.3
378
- - **MCP Config**: Cleaned up `.mcp-minimal.json` configuration
208
+ ## 💡 Usage Examples
379
209
 
380
- ### 🎯 User Impact
210
+ ### Queue Status Commands
381
211
 
382
- **For MCP Users**: If you primarily use AgentVibes through MCP tools and find the slash commands cluttering your command palette, you can now use `/agent-vibes:hide` to clean up the interface. Your MCP functionality will work exactly the same. Use `/agent-vibes:show` anytime to restore commands.
212
+ ```bash
213
+ # Check queue status
214
+ bash .claude/hooks/tts-queue.sh status
383
215
 
384
- **For All Users**: The improved .gitignore ensures that runtime-generated files (voice models, state flags, reminders) are never accidentally committed to version control, keeping your git history clean.
216
+ # Clear all pending TTS (emergency stop)
217
+ bash .claude/hooks/tts-queue.sh clear
218
+ ```
385
219
 
386
- **Command Organization**: The 29 AgentVibes slash commands can now be completely hidden with a single command, leaving only the hide/show toggles visible. This is ideal for users who:
387
- - Prefer using MCP tools directly
388
- - Want a cleaner command palette
389
- - Are setting up AgentVibes for others
390
- - Have memorized their favorite commands
220
+ ### Party Mode Improvements
391
221
 
392
- ### 📦 Files Changed
393
- - `.claude/commands/agent-vibes/hide.md` - NEW: Hide commands feature
394
- - `.claude/commands/agent-vibes/show.md` - NEW: Show commands feature
395
- - `.gitignore` - Enhanced runtime file exclusions
396
- - `.mcp-minimal.json` - Configuration cleanup
397
- - `README.md` - Version update to v2.2.3
222
+ When multiple BMAD agents respond:
398
223
 
399
- ### 🔄 Breaking Changes
400
- None. This release is fully backward compatible.
224
+ **Before:**
225
+ - All voices spoke simultaneously (overlapping audio)
226
+ - No natural pauses between speakers
227
+ - No identification of which agent is speaking
401
228
 
402
- ### 🚀 Upgrade Notes
403
- Simply run `npx agentvibes@latest` to get the new features. Existing configurations and settings are preserved.
229
+ **After:**
230
+ - Sequential playback with correct voices
231
+ - 2-second pauses for natural flow
232
+ - Each agent identifies themselves (e.g., "Mary, Business Analyst here")
233
+ - Claude Code remains responsive during TTS
404
234
 
405
235
  ---
406
236
 
407
- ## v2.2.1 - Documentation & Installer UX Improvements (2025-11-03)
408
-
409
- ### 🤖 AI Summary
410
-
411
- This patch release improves the user experience during installation and updates the documentation to reflect the latest v2.2.0 features. The MCP server configuration display has been redesigned with cleaner visual formatting, making it easier to copy the JSON configuration without accidentally including border characters. The README now properly highlights v2.2.0's provider-aware features, BMAD v6 support, and the transition from output-styles to SessionStart hooks.
412
-
413
- ### 📋 Changes
237
+ ## 🤝 Contributors
414
238
 
415
- #### Improvements
416
- - **Installer UX**: Split MCP configuration display into three sections for cleaner formatting
417
- - Top boxed section with intro and description
418
- - Middle section (no box) showing only the JSON config for easy copy-paste
419
- - Bottom boxed section with setup links and guides
420
- - Prevents accidental copying of border characters when copying JSON config
239
+ - Paul Preibisch (@paulpreibisch)
240
+ - Claude AI (code generation assistant)
421
241
 
422
- #### 📚 Documentation
423
- - **README**: Updated latest release section to showcase v2.2.0 features
424
- - Provider-aware voice switching
425
- - **BMAD v6 support** with full backward compatibility to v4
426
- - MCP NPX configuration improvements
427
- - Improved installer UX highlights
428
- - Better voice mapping details
429
- - **Architecture Change**: Documented transition from output-styles to SessionStart hooks
430
- - SessionStart hook now automatically loads TTS protocol on every session
431
- - Cleaner, more reliable activation mechanism
432
- - No need for manual output-style selection
433
-
434
- ### 🎯 User Impact
435
-
436
- **For New Users**: The improved installer display makes it much easier to copy the MCP server configuration into your `~/.claude/mcp.json` file without formatting issues. You'll also benefit from the new SessionStart hook architecture which automatically activates TTS on every Claude Code session.
437
-
438
- **For Existing Users**: When running `npx agentvibes install` or viewing installation instructions, you'll see a cleaner, more professional display that's easier to read and use. Note that AgentVibes now uses SessionStart hooks instead of output-styles for automatic activation.
242
+ ---
439
243
 
440
- **BMAD Users**: Full support for BMAD-METHOD v6-alpha with automatic agent voice assignment, while maintaining complete backward compatibility with v4.
244
+ ## 🔗 Links
441
245
 
442
- ### 📦 Files Changed
443
- - `README.md` - Updated v2.2.0 release highlights
444
- - `src/installer.js` - Improved MCP configuration display formatting
445
- - `.claude/github-star-reminder.txt` - Updated reminder state
446
- - `AgentVibes.code-workspace` - Workspace configuration updates
246
+ - **npm Package:** https://www.npmjs.com/package/agentvibes
247
+ - **GitHub Repository:** https://github.com/paulpreibisch/AgentVibes
248
+ - **GitHub Release:** https://github.com/paulpreibisch/AgentVibes/releases/tag/v2.7.0
447
249
 
448
250
  ---
449
251
 
450
- ## v2.2.0 - Provider-Aware Features, BMAD v6 Support & MCP Improvements (2025-11-02)
252
+ **Full Changelog:** https://github.com/paulpreibisch/AgentVibes/compare/v2.6.0...v2.7.0
451
253
 
452
- ### 🤖 AI Summary
254
+ ---
453
255
 
454
- Major enhancements to multi-provider support, BMAD integration, and MCP server configuration! This release makes AgentVibes smarter about which TTS provider you're using and adds full support for BMAD-METHOD v6-alpha with complete backward compatibility to v4.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "agentvibes",
4
- "version": "2.5.0",
4
+ "version": "2.7.0",
5
5
  "description": "Now your AI Agents can finally talk back! Professional TTS voice for Claude Code and Claude Desktop (via MCP) with multi-provider support.",
6
6
  "homepage": "https://agentvibes.org",
7
7
  "keywords": [
@@ -9,7 +9,7 @@ import yaml from 'js-yaml';
9
9
  */
10
10
  export async function detectBMAD(targetDir) {
11
11
  // Check v6 first (newer version)
12
- const v6Manifest = path.join(targetDir, 'bmad/_cfg/manifest.yaml');
12
+ const v6Manifest = path.join(targetDir, '.bmad/_cfg/manifest.yaml');
13
13
  try {
14
14
  await fs.access(v6Manifest);
15
15
  const manifestContent = await fs.readFile(v6Manifest, 'utf8');
@@ -19,8 +19,8 @@ export async function detectBMAD(targetDir) {
19
19
  version: 6,
20
20
  detailedVersion: manifest.installation?.version || '6.0.0-alpha.x',
21
21
  manifestPath: v6Manifest,
22
- configPath: path.join(targetDir, 'bmad/core/config.yaml'),
23
- bmadPath: path.join(targetDir, 'bmad'),
22
+ configPath: path.join(targetDir, '.bmad/core/config.yaml'),
23
+ bmadPath: path.join(targetDir, '.bmad'),
24
24
  installed: true
25
25
  };
26
26
  } catch {}