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.
Files changed (32) hide show
  1. package/.agentvibes/config.json +23 -13
  2. package/.claude/commands/agent-vibes/verbosity.md +98 -89
  3. package/.claude/config/audio-effects.cfg +4 -1
  4. package/.claude/hooks/bmad-speak.sh +2 -2
  5. package/.claude/hooks/piper-download-voices.sh +233 -225
  6. package/.claude/hooks/piper-installer.sh +1 -1
  7. package/.claude/hooks/piper-voice-manager.sh +125 -0
  8. package/.claude/hooks/play-tts-agentvibes-receiver-for-voiceless-connections.sh +97 -90
  9. package/.claude/hooks/play-tts-enhanced.sh +1 -1
  10. package/.claude/hooks/play-tts-piper.sh +16 -5
  11. package/.claude/hooks/play-tts-ssh-remote.sh +168 -167
  12. package/.claude/hooks/play-tts.sh +21 -9
  13. package/.claude/hooks/session-start-tts.sh +4 -1
  14. package/.claude/hooks/stop-tts.sh +1 -1
  15. package/.claude/hooks/verbosity-manager.sh +185 -178
  16. package/.claude/hooks-windows/download-extra-voices.ps1 +243 -185
  17. package/.claude/hooks-windows/play-tts-piper.ps1 +7 -2
  18. package/.claude/hooks-windows/play-tts.ps1 +7 -1
  19. package/.claude/hooks-windows/session-start-tts.ps1 +2 -1
  20. package/.claude/hooks-windows/verbosity-manager.ps1 +126 -119
  21. package/README.md +10 -2
  22. package/RELEASE_NOTES.md +36 -0
  23. package/bin/agentvibes-voice-browser.js +1939 -1840
  24. package/mcp-server/server.py +52 -9
  25. package/package.json +1 -1
  26. package/src/console/tabs/receiver-tab.js +1527 -1483
  27. package/src/console/tabs/settings-tab.js +2 -2
  28. package/src/console/tabs/setup-tab.js +53 -8
  29. package/src/console/tabs/voices-tab.js +130 -13
  30. package/src/i18n/en.js +202 -202
  31. package/src/services/verbosity-service.js +159 -157
  32. package/templates/agentvibes-receiver.sh +3 -2
@@ -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
- ## Verbosity Levels
16
-
17
- ### LOW (Minimal)
18
- - Acknowledgments only (start of task)
19
- - ✅ Completions only (end of task)
20
- - 🔇 No reasoning spoken during work
21
- - Perfect for: Quiet work sessions, minimal distraction
22
-
23
- ### MEDIUM (Balanced)
24
- - Acknowledgments
25
- - 🤔 Major decisions ("I'll use grep to search")
26
- - Key findings ("Found 12 instances")
27
- - Completions
28
- - Perfect for: Understanding major decisions without full narration
29
-
30
- ### HIGH (Maximum Transparency)
31
- - Acknowledgments
32
- - 💭 All reasoning ("Let me search for all instances")
33
- - 🤔 All decisions ("I'll use grep for this")
34
- - All findings ("Found it at line 1323")
35
- - Completions
36
- - Perfect for: Full transparency, learning mode, debugging complex tasks
37
-
38
- ## How It Works
39
-
40
- Claude uses **emoji markers** in its reasoning text:
41
- - 💭 = Reasoning/thinking
42
- - 🤔 = Decisions
43
- - = Findings/results
44
-
45
- Based on your verbosity level, AgentVibes automatically detects these markers and speaks them aloud.
46
-
47
- ## Examples
48
-
49
- ### LOW Verbosity
50
- ```
51
- User: "Find all TODO comments"
52
- [TTS: "I'll search for those"]
53
- [Work happens silently...]
54
- [TTS: "Found 12 TODO comments"]
55
- ```
56
-
57
- ### MEDIUM Verbosity
58
- ```
59
- User: "Find all TODO comments"
60
- [TTS: "I'll search for those"]
61
- 🤔 I'll use grep to search all files
62
- [Work happens...]
63
- Found 12 TODO comments across 5 files
64
- [TTS: "Found 12 TODO comments"]
65
- ```
66
-
67
- ### HIGH Verbosity
68
- ```
69
- User: "Find all TODO comments"
70
- [TTS: "I'll search for those"]
71
- 💭 Let me search through the codebase for TODO comments
72
- 🤔 I'll use the Grep tool with pattern "TODO"
73
- [Grep runs...]
74
- ✓ Found 12 TODO comments across 5 files
75
- 💭 Let me organize these by file
76
- [TTS: "Found 12 TODO comments in 5 files"]
77
- ```
78
-
79
- ## Notes
80
-
81
- - Changes take effect on next Claude Code session restart
82
- - Verbosity is saved per-project (if `.claude/` exists) or globally
83
- - You can also control verbosity via MCP: `mcp__agentvibes__set_verbosity(level="high")`
84
-
85
- ## Related Commands
86
-
87
- - `/agent-vibes:personality` - Set voice personality style
88
- - `/agent-vibes:switch` - Change voice
89
- - `/agent-vibes:provider` - Switch TTS provider
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|agent_vibes_chillwave_v2_loop.mp3|0.15|en_US-lessac-high|Claude Code here|piper
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
  # ---------------------------------------------------------------------------