Compare commits

..

4 Commits

Author SHA1 Message Date
Dicky Moore 7a9d445be1
Merge 16f084575f into 9223e2be21 2025-11-26 13:49:11 -06:00
Brian 16f084575f
Merge branch 'main' into bugfix/workflow-launcher-core-path 2025-11-26 13:49:09 -06:00
fikri-kompanion 9223e2be21
fix: give kilocode tool access to bmad modes (#961)
Co-authored-by: Ahmad Fikrizaman <ahmadfikrizaman@gmail.com>
Co-authored-by: Brian <bmadcode@gmail.com>
2025-11-26 13:48:16 -06:00
Brian Madison 2cac74cfb5 agent vibes injection and installer update 2025-11-26 11:00:46 -06:00
4 changed files with 8 additions and 10 deletions

3
.gitignore vendored
View File

@ -69,4 +69,5 @@ z*/
.claude
.codex
.github/chatmodes
.agent
.agent
.agentvibes/

View File

@ -2,6 +2,7 @@
<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>
<!-- TTS_INJECTION:party-mode -->
<workflow>
@ -97,14 +98,7 @@
<substep n="3d" goal="Format and Present Responses">
<action>For each agent response, output text THEN trigger their voice:</action>
<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>
<!-- TTS_INJECTION:party-mode -->
<format>
[Icon Emoji] [Agent Name]: [Their response in their voice/style]

View File

@ -123,6 +123,9 @@ class KiloSetup extends BaseIdeSetup {
modeEntry += ` groups:\n`;
modeEntry += ` - read\n`;
modeEntry += ` - edit\n`;
modeEntry += ` - browser\n`;
modeEntry += ` - command\n`;
modeEntry += ` - mcp\n`;
return modeEntry;
}

View File

@ -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
},
]);