agentvibes 5.1.4 → 5.2.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/config.json +23 -13
- package/.claude/commands/agent-vibes/verbosity.md +98 -89
- package/.claude/config/audio-effects.cfg +4 -1
- package/.claude/hooks/bmad-speak.sh +2 -2
- package/.claude/hooks/piper-download-voices.sh +233 -225
- package/.claude/hooks/piper-installer.sh +1 -1
- package/.claude/hooks/piper-voice-manager.sh +125 -0
- package/.claude/hooks/play-tts-agentvibes-receiver-for-voiceless-connections.sh +97 -90
- package/.claude/hooks/play-tts-enhanced.sh +1 -1
- package/.claude/hooks/play-tts-piper.sh +16 -5
- package/.claude/hooks/play-tts-ssh-remote.sh +168 -167
- package/.claude/hooks/play-tts.sh +21 -9
- package/.claude/hooks/session-start-tts.sh +4 -1
- package/.claude/hooks/stop-tts.sh +1 -1
- package/.claude/hooks/verbosity-manager.sh +185 -178
- package/.claude/hooks-windows/download-extra-voices.ps1 +243 -185
- package/.claude/hooks-windows/play-tts-piper.ps1 +7 -2
- package/.claude/hooks-windows/play-tts.ps1 +7 -1
- package/.claude/hooks-windows/session-start-tts.ps1 +2 -1
- package/.claude/hooks-windows/verbosity-manager.ps1 +126 -119
- package/README.md +10 -2
- package/RELEASE_NOTES.md +36 -0
- package/bin/agentvibes-voice-browser.js +1939 -1840
- package/mcp-server/server.py +52 -9
- package/package.json +1 -1
- package/src/console/tabs/receiver-tab.js +1527 -1483
- package/src/console/tabs/settings-tab.js +2 -2
- package/src/console/tabs/setup-tab.js +53 -8
- package/src/console/tabs/voices-tab.js +130 -13
- package/src/i18n/en.js +202 -202
- package/src/services/verbosity-service.js +159 -157
- package/templates/agentvibes-receiver.sh +3 -2
package/.agentvibes/config.json
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
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
|
+
{
|
|
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
|
+
"setupCompleted": true,
|
|
14
|
+
"thumbsUp": [
|
|
15
|
+
"en_US-libritts-high::Adam-10",
|
|
16
|
+
"en_US-libritts-high::Leo-7"
|
|
17
|
+
],
|
|
18
|
+
"favorites": [
|
|
19
|
+
"en_US-libritts-high::Adam-10",
|
|
20
|
+
"en_US-libritts-high::Leo-7"
|
|
21
|
+
],
|
|
22
|
+
"thumbsDown": []
|
|
23
|
+
}
|
|
@@ -1,89 +1,98 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Get or set AgentVibes verbosity level (low/medium/high)
|
|
3
|
-
tags: [user]
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
Get or set the AgentVibes verbosity level to control how much Claude speaks while working.
|
|
7
|
-
|
|
8
|
-
## Usage
|
|
9
|
-
|
|
10
|
-
- `/agent-vibes:verbosity` - Show current verbosity level
|
|
11
|
-
- `/agent-vibes:verbosity low` - Set to LOW (minimal)
|
|
12
|
-
- `/agent-vibes:verbosity medium` - Set to MEDIUM (balanced)
|
|
13
|
-
- `/agent-vibes:verbosity high` - Set to HIGH (maximum transparency)
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
- ✅
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
##
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
[Work happens...]
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
[
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
1
|
+
---
|
|
2
|
+
description: Get or set AgentVibes verbosity level (low/medium/high/caveman)
|
|
3
|
+
tags: [user]
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Get or set the AgentVibes verbosity level to control how much Claude speaks while working.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
|
|
10
|
+
- `/agent-vibes:verbosity` - Show current verbosity level
|
|
11
|
+
- `/agent-vibes:verbosity low` - Set to LOW (minimal)
|
|
12
|
+
- `/agent-vibes:verbosity medium` - Set to MEDIUM (balanced)
|
|
13
|
+
- `/agent-vibes:verbosity high` - Set to HIGH (maximum transparency)
|
|
14
|
+
- `/agent-vibes:verbosity caveman` - Set to CAVEMAN (ultra-terse, max token savings)
|
|
15
|
+
|
|
16
|
+
## Verbosity Levels
|
|
17
|
+
|
|
18
|
+
### LOW (Minimal)
|
|
19
|
+
- ✅ Acknowledgments only (start of task)
|
|
20
|
+
- ✅ Completions only (end of task)
|
|
21
|
+
- 🔇 No reasoning spoken during work
|
|
22
|
+
- Perfect for: Quiet work sessions, minimal distraction
|
|
23
|
+
|
|
24
|
+
### MEDIUM (Balanced)
|
|
25
|
+
- ✅ Acknowledgments
|
|
26
|
+
- 🤔 Major decisions ("I'll use grep to search")
|
|
27
|
+
- ✓ Key findings ("Found 12 instances")
|
|
28
|
+
- ✅ Completions
|
|
29
|
+
- Perfect for: Understanding major decisions without full narration
|
|
30
|
+
|
|
31
|
+
### HIGH (Maximum Transparency)
|
|
32
|
+
- ✅ Acknowledgments
|
|
33
|
+
- 💭 All reasoning ("Let me search for all instances")
|
|
34
|
+
- 🤔 All decisions ("I'll use grep for this")
|
|
35
|
+
- ✓ All findings ("Found it at line 1323")
|
|
36
|
+
- ✅ Completions
|
|
37
|
+
- Perfect for: Full transparency, learning mode, debugging complex tasks
|
|
38
|
+
|
|
39
|
+
### CAVEMAN (Ultra-Terse)
|
|
40
|
+
- ⚡ Fragments only — no articles, filler, or hedging
|
|
41
|
+
- 🔤 Abbreviations (DB/auth/config/fn/impl)
|
|
42
|
+
- ➡️ Arrows instead of prose (X -> Y)
|
|
43
|
+
- 📉 65-75% fewer output tokens
|
|
44
|
+
- Perfect for: Maximum token savings, cost-conscious sessions
|
|
45
|
+
- Inspired by [caveman](https://github.com/JuliusBrussee/caveman) (MIT)
|
|
46
|
+
|
|
47
|
+
## How It Works
|
|
48
|
+
|
|
49
|
+
Claude uses **emoji markers** in its reasoning text:
|
|
50
|
+
- 💭 = Reasoning/thinking
|
|
51
|
+
- 🤔 = Decisions
|
|
52
|
+
- ✓ = Findings/results
|
|
53
|
+
|
|
54
|
+
Based on your verbosity level, AgentVibes automatically detects these markers and speaks them aloud.
|
|
55
|
+
|
|
56
|
+
## Examples
|
|
57
|
+
|
|
58
|
+
### LOW Verbosity
|
|
59
|
+
```
|
|
60
|
+
User: "Find all TODO comments"
|
|
61
|
+
[TTS: "I'll search for those"]
|
|
62
|
+
[Work happens silently...]
|
|
63
|
+
[TTS: "Found 12 TODO comments"]
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### MEDIUM Verbosity
|
|
67
|
+
```
|
|
68
|
+
User: "Find all TODO comments"
|
|
69
|
+
[TTS: "I'll search for those"]
|
|
70
|
+
🤔 I'll use grep to search all files
|
|
71
|
+
[Work happens...]
|
|
72
|
+
✓ Found 12 TODO comments across 5 files
|
|
73
|
+
[TTS: "Found 12 TODO comments"]
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### HIGH Verbosity
|
|
77
|
+
```
|
|
78
|
+
User: "Find all TODO comments"
|
|
79
|
+
[TTS: "I'll search for those"]
|
|
80
|
+
💭 Let me search through the codebase for TODO comments
|
|
81
|
+
🤔 I'll use the Grep tool with pattern "TODO"
|
|
82
|
+
[Grep runs...]
|
|
83
|
+
✓ Found 12 TODO comments across 5 files
|
|
84
|
+
💭 Let me organize these by file
|
|
85
|
+
[TTS: "Found 12 TODO comments in 5 files"]
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## Notes
|
|
89
|
+
|
|
90
|
+
- Changes take effect on next Claude Code session restart
|
|
91
|
+
- Verbosity is saved per-project (if `.claude/` exists) or globally
|
|
92
|
+
- You can also control verbosity via MCP: `mcp__agentvibes__set_verbosity(level="high")`
|
|
93
|
+
|
|
94
|
+
## Related Commands
|
|
95
|
+
|
|
96
|
+
- `/agent-vibes:personality` - Set voice personality style
|
|
97
|
+
- `/agent-vibes:switch` - Change voice
|
|
98
|
+
- `/agent-vibes:provider` - Switch TTS provider
|
|
@@ -50,7 +50,10 @@ _party_mode|compand 0.3,1 6:-70,-60,-20|agent_vibes_dark_chill_step_loop.mp3|0.4
|
|
|
50
50
|
|||
|
|
51
51
|
# Default (no agent specified) - clean with Bachata background|||
|
|
52
52
|
default||agent_vibes_chillwave_v2_loop.mp3|0.15
|
|
53
|
+
|||
|
|
54
|
+
# Claude Code LLM default - pretext + music for remote receivers without per-LLM config|||
|
|
55
|
+
llm:default|reverb 20 50 50|agent_vibes_chillwave_v2_loop.mp3|0.15||AgentVibes here
|
|
53
56
|
analyst|reverb 70 50 100|agentvibes_soft_flamenco_loop.mp3|0.30
|
|
54
|
-
llm:claude-code|light|
|
|
57
|
+
llm:claude-code|light|Midnight Charleston Stomp.mp3|0.15|en_US-libritts-high::Leo-7|AgentVibes here|piper
|
|
55
58
|
llm:copilot|light|agent_vibes_bossa_nova_v2_loop.mp3|0.15|en_US-libritts-high::Anna-11|Copilot here|piper
|
|
56
59
|
llm:codex|light|agent_vibes_chillwave_v2_loop.mp3|0.15|en_US-lessac-high|Codex here|piper
|
|
@@ -203,11 +203,11 @@ AGENT_VOICE="$PROFILE_VOICE"
|
|
|
203
203
|
AGENT_INTRO="$PROFILE_PRETEXT"
|
|
204
204
|
|
|
205
205
|
if [[ -z "$AGENT_VOICE" ]] && [[ -n "$AGENT_ID" ]] && [[ -f "$SCRIPT_DIR/bmad-voice-manager.sh" ]]; then
|
|
206
|
-
AGENT_VOICE=$(cd "$PROJECT_ROOT" && "$SCRIPT_DIR/bmad-voice-manager.sh" get-voice "$AGENT_ID" 2>/dev/null || true)
|
|
206
|
+
AGENT_VOICE=$(cd "$PROJECT_ROOT" && bash "$SCRIPT_DIR/bmad-voice-manager.sh" get-voice "$AGENT_ID" 2>/dev/null || true)
|
|
207
207
|
fi
|
|
208
208
|
|
|
209
209
|
if [[ -z "$AGENT_INTRO" ]] && [[ -n "$AGENT_ID" ]] && [[ -f "$SCRIPT_DIR/bmad-voice-manager.sh" ]]; then
|
|
210
|
-
AGENT_INTRO=$(cd "$PROJECT_ROOT" && "$SCRIPT_DIR/bmad-voice-manager.sh" get-intro "$AGENT_ID" 2>/dev/null || true)
|
|
210
|
+
AGENT_INTRO=$(cd "$PROJECT_ROOT" && bash "$SCRIPT_DIR/bmad-voice-manager.sh" get-intro "$AGENT_ID" 2>/dev/null || true)
|
|
211
211
|
fi
|
|
212
212
|
|
|
213
213
|
# ---------------------------------------------------------------------------
|