Compare commits
1 Commits
7a9d445be1
...
1f691e1e83
| Author | SHA1 | Date |
|---|---|---|
|
|
1f691e1e83 |
|
|
@ -69,5 +69,4 @@ z*/
|
||||||
.claude
|
.claude
|
||||||
.codex
|
.codex
|
||||||
.github/chatmodes
|
.github/chatmodes
|
||||||
.agent
|
.agent
|
||||||
.agentvibes/
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
<critical>The workflow execution engine is governed by: {project_root}/{bmad_folder}/core/tasks/workflow.xml</critical>
|
<critical>The workflow execution engine is governed by: {project_root}/{bmad_folder}/core/tasks/workflow.xml</critical>
|
||||||
<critical>This workflow orchestrates group discussions between all installed BMAD agents</critical>
|
<critical>This workflow orchestrates group discussions between all installed BMAD agents</critical>
|
||||||
|
|
||||||
<!-- TTS_INJECTION:party-mode -->
|
<!-- TTS_INJECTION:party-mode -->
|
||||||
|
|
||||||
<workflow>
|
<workflow>
|
||||||
|
|
@ -98,7 +97,14 @@
|
||||||
<substep n="3d" goal="Format and Present Responses">
|
<substep n="3d" goal="Format and Present Responses">
|
||||||
<action>For each agent response, output text THEN trigger their voice:</action>
|
<action>For each agent response, output text THEN trigger their voice:</action>
|
||||||
|
|
||||||
<!-- TTS_INJECTION:party-mode -->
|
<procedure>
|
||||||
|
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
|
||||||
|
</procedure>
|
||||||
|
|
||||||
<format>
|
<format>
|
||||||
[Icon Emoji] [Agent Name]: [Their response in their voice/style]
|
[Icon Emoji] [Agent Name]: [Their response in their voice/style]
|
||||||
|
|
|
||||||
|
|
@ -123,9 +123,6 @@ class KiloSetup extends BaseIdeSetup {
|
||||||
modeEntry += ` groups:\n`;
|
modeEntry += ` groups:\n`;
|
||||||
modeEntry += ` - read\n`;
|
modeEntry += ` - read\n`;
|
||||||
modeEntry += ` - edit\n`;
|
modeEntry += ` - edit\n`;
|
||||||
modeEntry += ` - browser\n`;
|
|
||||||
modeEntry += ` - command\n`;
|
|
||||||
modeEntry += ` - mcp\n`;
|
|
||||||
|
|
||||||
return modeEntry;
|
return modeEntry;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -720,7 +720,7 @@ class UI {
|
||||||
{
|
{
|
||||||
type: 'confirm',
|
type: 'confirm',
|
||||||
name: 'enableTts',
|
name: 'enableTts',
|
||||||
message: 'Enable AgentVibes TTS? (Claude Code only - Agents speak with unique voices in party mode)',
|
message: 'Enable AgentVibes TTS? (Agents speak with unique voices in party mode)',
|
||||||
default: true, // Default to yes - recommended for best experience
|
default: true, // Default to yes - recommended for best experience
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue