diff --git a/.gitignore b/.gitignore
index 581f725e..cef2ce1a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -69,4 +69,5 @@ z*/
.claude
.codex
.github/chatmodes
-.agent
\ No newline at end of file
+.agent
+.agentvibes/
\ No newline at end of file
diff --git a/src/core/workflows/party-mode/instructions.md b/src/core/workflows/party-mode/instructions.md
index 6afd5ede..3289f0a7 100644
--- a/src/core/workflows/party-mode/instructions.md
+++ b/src/core/workflows/party-mode/instructions.md
@@ -2,6 +2,7 @@
The workflow execution engine is governed by: {project_root}/{bmad_folder}/core/tasks/workflow.xml
This workflow orchestrates group discussions between all installed BMAD agents
+
@@ -97,14 +98,7 @@
For each agent response, output text THEN trigger their voice:
-
- 1. Output the agent's text in format: [Icon Emoji] [Agent Name]: [dialogue]
- 2. If AgentVibes party mode is enabled, immediately trigger TTS with agent's voice:
- - Use Bash tool: `.claude/hooks/bmad-speak.sh "[Agent Name]" "[dialogue]"`
- - This speaks the dialogue with the agent's unique voice
- - Run in background (&) to not block next agent
- 3. Repeat for each agent in the response
-
+
[Icon Emoji] [Agent Name]: [Their response in their voice/style]
diff --git a/tools/cli/lib/ui.js b/tools/cli/lib/ui.js
index 730ce4f9..788349b5 100644
--- a/tools/cli/lib/ui.js
+++ b/tools/cli/lib/ui.js
@@ -720,7 +720,7 @@ class UI {
{
type: 'confirm',
name: 'enableTts',
- message: 'Enable AgentVibes TTS? (Agents speak with unique voices in party mode)',
+ message: 'Enable AgentVibes TTS? (Claude Code only - Agents speak with unique voices in party mode)',
default: true, // Default to yes - recommended for best experience
},
]);