agentvibes 4.6.7 → 5.0.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.
- package/.agentvibes/bmad-voice-map.json +104 -0
- package/.agentvibes/config.json +13 -12
- package/.agentvibes/copilot-sessions.log +4 -0
- package/.claude/audio/tracks/README.md +51 -52
- package/.claude/config/audio-effects-bmad.cfg +50 -0
- package/.claude/config/audio-effects.cfg +4 -4
- package/.claude/config/background-music-enabled.txt +1 -0
- package/.claude/config/personality.txt +1 -0
- package/.claude/hooks/play-tts-piper.sh +3 -1
- package/.claude/hooks/play-tts.sh +373 -301
- package/.claude/hooks/session-start-tts.sh +81 -81
- package/.claude/hooks-windows/audio-processor.ps1 +181 -0
- package/.claude/hooks-windows/play-tts-piper.ps1 +259 -245
- package/.claude/hooks-windows/play-tts.ps1 +101 -9
- package/.claude/hooks-windows/session-start-tts.ps1 +114 -114
- package/README.md +107 -7
- package/RELEASE_NOTES.md +54 -0
- package/bin/bmad-speak.js +16 -8
- package/mcp-server/server.py +15 -8
- package/package.json +1 -1
- package/src/console/app.js +899 -897
- package/src/console/footer-config.js +50 -50
- package/src/console/navigation.js +65 -65
- package/src/console/tabs/agents-tab.js +1896 -1886
- package/src/console/tabs/music-tab.js +1046 -1039
- package/src/console/tabs/placeholder-tab.js +81 -80
- package/src/console/tabs/settings-tab.js +939 -3988
- package/src/console/tabs/setup-tab.js +1811 -0
- package/src/console/tabs/voices-tab.js +1720 -1713
- package/src/installer.js +6147 -6092
- package/src/services/llm-provider-service.js +407 -0
- package/src/services/navigation-service.js +123 -123
- package/src/services/tts-engine-service.js +69 -0
- package/.claude/audio/tracks/dreamy_house_loop.mp3 +0 -0
- package/src/console/tabs/install-tab.js +0 -1081
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agents": {
|
|
3
|
+
"bmad-agent-analyst": {
|
|
4
|
+
"voice": "en_US-lessac-high",
|
|
5
|
+
"pretext": "I'm Mary, your business analyst",
|
|
6
|
+
"personality": "excited",
|
|
7
|
+
"backgroundMusic": {
|
|
8
|
+
"enabled": true,
|
|
9
|
+
"track": "agent_vibes_bossa_nova_v2_loop.mp3",
|
|
10
|
+
"volume": 25
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"bmad-agent-tech-writer": {
|
|
14
|
+
"voice": "en_US-ljspeech-high",
|
|
15
|
+
"pretext": "I'm Paige, your technical writer",
|
|
16
|
+
"personality": "patient",
|
|
17
|
+
"backgroundMusic": {
|
|
18
|
+
"enabled": true,
|
|
19
|
+
"track": "agent_vibes_celtic_harp_v1_loop.mp3",
|
|
20
|
+
"volume": 20
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"bmad-agent-pm": {
|
|
24
|
+
"voice": "en_US-ryan-high",
|
|
25
|
+
"pretext": "I'm John, your product manager",
|
|
26
|
+
"personality": "direct",
|
|
27
|
+
"backgroundMusic": {
|
|
28
|
+
"enabled": true,
|
|
29
|
+
"track": "agent_vibes_japanese_city_pop_v1_loop.mp3",
|
|
30
|
+
"volume": 30
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"bmad-agent-ux-designer": {
|
|
34
|
+
"voice": "en_US-amy-medium",
|
|
35
|
+
"pretext": "I'm Sally, your UX designer",
|
|
36
|
+
"personality": "creative",
|
|
37
|
+
"backgroundMusic": {
|
|
38
|
+
"enabled": true,
|
|
39
|
+
"track": "agent_vibes_chillwave_v2_loop.mp3",
|
|
40
|
+
"volume": 28
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"bmad-agent-architect": {
|
|
44
|
+
"voice": "en_GB-alan-medium",
|
|
45
|
+
"pretext": "I'm Winston, your architect",
|
|
46
|
+
"personality": "pragmatic",
|
|
47
|
+
"backgroundMusic": {
|
|
48
|
+
"enabled": true,
|
|
49
|
+
"track": "agent_vibes_harpsichord_v2_loop.mp3",
|
|
50
|
+
"volume": 22
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"bmad-agent-dev": {
|
|
54
|
+
"voice": "en_US-joe-medium",
|
|
55
|
+
"pretext": "I'm Amelia, your developer",
|
|
56
|
+
"personality": "sarcastic",
|
|
57
|
+
"backgroundMusic": {
|
|
58
|
+
"enabled": true,
|
|
59
|
+
"track": "dreamy_house_loop.mp3",
|
|
60
|
+
"volume": 32
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"bmad-agent-qa": {
|
|
64
|
+
"voice": "en_US-kusal-medium",
|
|
65
|
+
"pretext": "I'm Quinn, your QA engineer",
|
|
66
|
+
"personality": "direct",
|
|
67
|
+
"backgroundMusic": {
|
|
68
|
+
"enabled": true,
|
|
69
|
+
"track": "agent_vibes_tabla_dream_pop_v1_loop.mp3",
|
|
70
|
+
"volume": 26
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"bmad-agent-quick-flow-solo-dev": {
|
|
74
|
+
"voice": "en_US-john-medium",
|
|
75
|
+
"pretext": "I'm Barry, your quick flow developer",
|
|
76
|
+
"personality": "confident",
|
|
77
|
+
"backgroundMusic": {
|
|
78
|
+
"enabled": true,
|
|
79
|
+
"track": "agent_vibes_dark_chill_step_loop.mp3",
|
|
80
|
+
"volume": 30
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"bmad-agent-sm": {
|
|
84
|
+
"voice": "en_US-kristin-medium",
|
|
85
|
+
"pretext": "I'm Bob, your scrum master",
|
|
86
|
+
"personality": "crisp",
|
|
87
|
+
"backgroundMusic": {
|
|
88
|
+
"enabled": true,
|
|
89
|
+
"track": "agentvibes_soft_flamenco_loop.mp3",
|
|
90
|
+
"volume": 24
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"bmad-tea": {
|
|
94
|
+
"voice": "en_GB-southern_english_female-low",
|
|
95
|
+
"pretext": "I'm Murat, your test architect",
|
|
96
|
+
"personality": "analytical",
|
|
97
|
+
"backgroundMusic": {
|
|
98
|
+
"enabled": true,
|
|
99
|
+
"track": "agent_vibes_ganawa_ambient_v2_loop.mp3",
|
|
100
|
+
"volume": 23
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
package/.agentvibes/config.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
{
|
|
2
|
-
"backgroundMusic": {
|
|
3
|
-
"track": "
|
|
4
|
-
"enabled": true,
|
|
5
|
-
"volume": 10
|
|
6
|
-
},
|
|
7
|
-
"voice": "en_US-libritts-high::
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"backgroundMusic": {
|
|
3
|
+
"track": "agent_vibes_chillwave_v2_loop.mp3",
|
|
4
|
+
"enabled": true,
|
|
5
|
+
"volume": 10
|
|
6
|
+
},
|
|
7
|
+
"voice": "en_US-libritts-high::Derek-6",
|
|
8
|
+
"pretext": "AgentVibes here",
|
|
9
|
+
"provider": "piper",
|
|
10
|
+
"effects": {
|
|
11
|
+
"reverbPreset": "light"
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -1,52 +1,51 @@
|
|
|
1
|
-
# Background Music for AgentVibes
|
|
2
|
-
|
|
3
|
-
This folder contains background music tracks that play behind TTS voice output.
|
|
4
|
-
|
|
5
|
-
## Adding Your Own Music
|
|
6
|
-
|
|
7
|
-
1. **Copy audio files here:**
|
|
8
|
-
```bash
|
|
9
|
-
cp ~/Music/your-track.mp3 .claude/audio/tracks/
|
|
10
|
-
```
|
|
11
|
-
|
|
12
|
-
2. **Edit the config** (`.claude/config/audio-effects.cfg`):
|
|
13
|
-
```
|
|
14
|
-
# Format: AGENT_NAME|SOX_EFFECTS|BACKGROUND_FILE|VOLUME
|
|
15
|
-
|
|
16
|
-
# Party mode (multi-agent discussions)
|
|
17
|
-
_party_mode||your-track.mp3|0.40
|
|
18
|
-
|
|
19
|
-
# Individual agents
|
|
20
|
-
John||electronica.mp3|0.30
|
|
21
|
-
Winston||ambient.mp3|0.25
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
3. **Enable background music:**
|
|
25
|
-
```
|
|
26
|
-
/agent-vibes:background-music on
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
## Supported Formats
|
|
30
|
-
|
|
31
|
-
- MP3 (`.mp3`) - recommended
|
|
32
|
-
- WAV (`.wav`)
|
|
33
|
-
- OGG (`.ogg`)
|
|
34
|
-
|
|
35
|
-
## Tips
|
|
36
|
-
|
|
37
|
-
- **Volume**: Use 0.20-0.40 range (20-40%) so voice stays clear
|
|
38
|
-
- **Track length**: Longer tracks work better (2+ minutes)
|
|
39
|
-
- **Genre**: Instrumental/ambient works best - vocals can compete with TTS
|
|
40
|
-
- **Continuous playback**: Music continues from where it left off between messages
|
|
41
|
-
|
|
42
|
-
## Included Tracks
|
|
43
|
-
|
|
44
|
-
- `
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
- `/agent-vibes:background-music
|
|
50
|
-
- `/agent-vibes:background-music
|
|
51
|
-
- `/agent-vibes:background-music
|
|
52
|
-
- `/agent-vibes:background-music` - Show status
|
|
1
|
+
# Background Music for AgentVibes
|
|
2
|
+
|
|
3
|
+
This folder contains background music tracks that play behind TTS voice output.
|
|
4
|
+
|
|
5
|
+
## Adding Your Own Music
|
|
6
|
+
|
|
7
|
+
1. **Copy audio files here:**
|
|
8
|
+
```bash
|
|
9
|
+
cp ~/Music/your-track.mp3 .claude/audio/tracks/
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
2. **Edit the config** (`.claude/config/audio-effects.cfg`):
|
|
13
|
+
```
|
|
14
|
+
# Format: AGENT_NAME|SOX_EFFECTS|BACKGROUND_FILE|VOLUME
|
|
15
|
+
|
|
16
|
+
# Party mode (multi-agent discussions)
|
|
17
|
+
_party_mode||your-track.mp3|0.40
|
|
18
|
+
|
|
19
|
+
# Individual agents
|
|
20
|
+
John||electronica.mp3|0.30
|
|
21
|
+
Winston||ambient.mp3|0.25
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
3. **Enable background music:**
|
|
25
|
+
```
|
|
26
|
+
/agent-vibes:background-music on
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Supported Formats
|
|
30
|
+
|
|
31
|
+
- MP3 (`.mp3`) - recommended
|
|
32
|
+
- WAV (`.wav`)
|
|
33
|
+
- OGG (`.ogg`)
|
|
34
|
+
|
|
35
|
+
## Tips
|
|
36
|
+
|
|
37
|
+
- **Volume**: Use 0.20-0.40 range (20-40%) so voice stays clear
|
|
38
|
+
- **Track length**: Longer tracks work better (2+ minutes)
|
|
39
|
+
- **Genre**: Instrumental/ambient works best - vocals can compete with TTS
|
|
40
|
+
- **Continuous playback**: Music continues from where it left off between messages
|
|
41
|
+
|
|
42
|
+
## Included Tracks
|
|
43
|
+
|
|
44
|
+
- `agent-vibes-dark-chill-step.mp3` - Atmospheric ambient for party mode
|
|
45
|
+
|
|
46
|
+
## Commands
|
|
47
|
+
|
|
48
|
+
- `/agent-vibes:background-music on` - Enable
|
|
49
|
+
- `/agent-vibes:background-music off` - Disable
|
|
50
|
+
- `/agent-vibes:background-music volume 0.3` - Set volume (0.0-1.0)
|
|
51
|
+
- `/agent-vibes:background-music` - Show status
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# AgentVibes Audio Effects Configuration
|
|
2
|
+
# Format: AGENT_NAME|SOX_EFFECTS|BACKGROUND_FILE|BACKGROUND_VOLUME
|
|
3
|
+
#
|
|
4
|
+
# SOX_EFFECTS: sox effect chain (leave empty for none)
|
|
5
|
+
# - reverb <reverberance> <HF-damping> <room-scale>
|
|
6
|
+
# - pitch <cents> (100 cents = 1 semitone)
|
|
7
|
+
# - equalizer <freq> <width>q <gain-dB>
|
|
8
|
+
# - gain <dB>
|
|
9
|
+
# - compand <attack,decay> <soft-knee-dB:in-dB,out-dB>
|
|
10
|
+
#
|
|
11
|
+
# BACKGROUND_FILE: path to ambient audio (relative to .claude/audio/tracks/)
|
|
12
|
+
# BACKGROUND_VOLUME: 0.0-1.0 (0.20-0.40 recommended)
|
|
13
|
+
#
|
|
14
|
+
# BMAD Agents - each with unique audio personality and background music
|
|
15
|
+
|
|
16
|
+
# Business Analyst Mary - energized, treasure-hunter personality
|
|
17
|
+
bmad-agent-analyst||agent_vibes_bossa_nova_v2_loop.mp3|0.25
|
|
18
|
+
|
|
19
|
+
# Technical Writer Paige - patient educator
|
|
20
|
+
bmad-agent-tech-writer||agent_vibes_celtic_harp_v1_loop.mp3|0.20
|
|
21
|
+
|
|
22
|
+
# Product Manager John - direct, data-focused
|
|
23
|
+
bmad-agent-pm||agent_vibes_japanese_city_pop_v1_loop.mp3|0.30
|
|
24
|
+
|
|
25
|
+
# UX Designer Sally - creative, empathetic
|
|
26
|
+
bmad-agent-ux-designer||agent_vibes_chillwave_v2_loop.mp3|0.28
|
|
27
|
+
|
|
28
|
+
# Architect Winston - pragmatic, authoritative
|
|
29
|
+
bmad-agent-architect||agent_vibes_harpsichord_v2_loop.mp3|0.22
|
|
30
|
+
|
|
31
|
+
# Developer Amelia - confident, sarcastic
|
|
32
|
+
bmad-agent-dev||dreamy_house_loop.mp3|0.32
|
|
33
|
+
|
|
34
|
+
# QA Engineer Quinn - direct, practical
|
|
35
|
+
bmad-agent-qa||agent_vibes_tabla_dream_pop_v1_loop.mp3|0.26
|
|
36
|
+
|
|
37
|
+
# Quick Flow Solo Dev Barry - confident, implementation-focused
|
|
38
|
+
bmad-agent-quick-flow-solo-dev||agent_vibes_dark_chill_step_loop.mp3|0.30
|
|
39
|
+
|
|
40
|
+
# Scrum Master Bob - crisp, organized
|
|
41
|
+
bmad-agent-sm||agentvibes_soft_flamenco_loop.mp3|0.24
|
|
42
|
+
|
|
43
|
+
# Test Architect Murat - analytical, data-driven
|
|
44
|
+
bmad-tea||agent_vibes_ganawa_ambient_v2_loop.mp3|0.23
|
|
45
|
+
|
|
46
|
+
# Party mode room ambiance - used when multiple agents are talking
|
|
47
|
+
_party_mode||agent_vibes_dark_chill_step_loop.mp3|0.35
|
|
48
|
+
|
|
49
|
+
# Default (no agent specified)
|
|
50
|
+
default||agent_vibes_chillwave_v2_loop.mp3|0.15
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
# AgentVibes Audio Effects Configuration|||
|
|
1
|
+
# AgentVibes Audio Effects Configuration
|
|
3
2
|
# Format: AGENT_NAME|SOX_EFFECTS|BACKGROUND_FILE|BACKGROUND_VOLUME
|
|
4
3
|
#|||
|
|
5
4
|
# SOX_EFFECTS: sox effect chain (leave empty for none)|||
|
|
@@ -50,5 +49,6 @@ BMad Master|reverb 50 60 100 pitch -100|agentvibes_soft_flamenco_loop.mp3|0.30
|
|
|
50
49
|
_party_mode|compand 0.3,1 6:-70,-60,-20|agent_vibes_dark_chill_step_loop.mp3|0.40
|
|
51
50
|
|||
|
|
52
51
|
# Default (no agent specified) - clean with Bachata background|||
|
|
53
|
-
default||
|
|
54
|
-
analyst|reverb 70 50 100|agentvibes_soft_flamenco_loop.mp3|0.30
|
|
52
|
+
default||agent_vibes_chillwave_v2_loop.mp3|0.15
|
|
53
|
+
analyst|reverb 70 50 100|agentvibes_soft_flamenco_loop.mp3|0.30
|
|
54
|
+
llm:claude-code|light|agent_vibes_chillwave_v2_loop.mp3|0.15|en_US-lessac-high|Codex Worktree here
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
true
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pragmatic
|
|
@@ -439,7 +439,9 @@ if [[ -f "$SCRIPT_DIR/audio-processor.sh" ]]; then
|
|
|
439
439
|
_tmp=$(mktemp "$AUDIO_DIR/tts-processed-XXXXXX"); PROCESSED_FILE="${_tmp}.wav"; mv "$_tmp" "$PROCESSED_FILE"
|
|
440
440
|
_CLEANUP_FILES+=("$PROCESSED_FILE")
|
|
441
441
|
# audio-processor.sh returns: FILE_PATH|BACKGROUND_FILE
|
|
442
|
-
|
|
442
|
+
# Lookup order: LLM key (from --llm) → default
|
|
443
|
+
_AGENT_KEY="${AGENTVIBES_LLM_KEY:-default}"
|
|
444
|
+
PROCESSOR_OUTPUT=$("$SCRIPT_DIR/audio-processor.sh" "$TEMP_FILE" "$_AGENT_KEY" "$PROCESSED_FILE" "$AGENT_PROFILE_FILE" 2>/dev/null) || {
|
|
443
445
|
echo "Warning: Audio processing failed, using unprocessed audio" >&2
|
|
444
446
|
PROCESSED_FILE="$TEMP_FILE"
|
|
445
447
|
PROCESSOR_OUTPUT="$TEMP_FILE|"
|