agentvibes 5.1.4 → 5.2.1

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 (69) 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/audio-cache-utils.sh +246 -246
  5. package/.claude/hooks/background-music-manager.sh +404 -404
  6. package/.claude/hooks/bmad-speak-enhanced.sh +165 -165
  7. package/.claude/hooks/bmad-speak.sh +290 -290
  8. package/.claude/hooks/bmad-tts-injector.sh +568 -568
  9. package/.claude/hooks/bmad-voice-manager.sh +928 -928
  10. package/.claude/hooks/clawdbot-receiver-SECURE.sh +129 -129
  11. package/.claude/hooks/clawdbot-receiver.sh +107 -107
  12. package/.claude/hooks/clean-audio-cache.sh +22 -22
  13. package/.claude/hooks/cleanup-cache.sh +106 -106
  14. package/.claude/hooks/configure-rdp-mode.sh +137 -137
  15. package/.claude/hooks/download-extra-voices.sh +244 -244
  16. package/.claude/hooks/effects-manager.sh +268 -268
  17. package/.claude/hooks/github-star-reminder.sh +154 -154
  18. package/.claude/hooks/language-manager.sh +362 -362
  19. package/.claude/hooks/learn-manager.sh +492 -492
  20. package/.claude/hooks/macos-voice-manager.sh +205 -205
  21. package/.claude/hooks/migrate-background-music.sh +125 -125
  22. package/.claude/hooks/migrate-to-agentvibes.sh +161 -161
  23. package/.claude/hooks/optimize-background-music.sh +87 -87
  24. package/.claude/hooks/path-resolver.sh +60 -60
  25. package/.claude/hooks/personality-manager.sh +448 -448
  26. package/.claude/hooks/piper-download-voices.sh +233 -225
  27. package/.claude/hooks/piper-installer.sh +292 -292
  28. package/.claude/hooks/piper-multispeaker-registry.sh +171 -171
  29. package/.claude/hooks/piper-voice-manager.sh +125 -0
  30. package/.claude/hooks/play-tts-agentvibes-receiver-for-voiceless-connections.sh +97 -90
  31. package/.claude/hooks/play-tts-enhanced.sh +105 -105
  32. package/.claude/hooks/play-tts-piper.sh +16 -5
  33. package/.claude/hooks/play-tts-ssh-remote.sh +168 -167
  34. package/.claude/hooks/play-tts-termux-ssh.sh +169 -169
  35. package/.claude/hooks/play-tts.sh +35 -14
  36. package/.claude/hooks/prepare-release.sh +54 -54
  37. package/.claude/hooks/provider-commands.sh +617 -617
  38. package/.claude/hooks/provider-manager.sh +399 -399
  39. package/.claude/hooks/replay-target-audio.sh +95 -95
  40. package/.claude/hooks/sentiment-manager.sh +201 -201
  41. package/.claude/hooks/session-start-tts.sh +4 -1
  42. package/.claude/hooks/speed-manager.sh +291 -291
  43. package/.claude/hooks/stop-tts.sh +84 -84
  44. package/.claude/hooks/termux-installer.sh +261 -261
  45. package/.claude/hooks/translate-manager.sh +341 -341
  46. package/.claude/hooks/tts-queue-worker.sh +145 -145
  47. package/.claude/hooks/tts-queue.sh +165 -165
  48. package/.claude/hooks/verbosity-manager.sh +185 -178
  49. package/.claude/hooks/voice-manager.sh +552 -548
  50. package/.claude/hooks-windows/download-extra-voices.ps1 +243 -185
  51. package/.claude/hooks-windows/play-tts-piper.ps1 +7 -2
  52. package/.claude/hooks-windows/play-tts.ps1 +9 -3
  53. package/.claude/hooks-windows/session-start-tts.ps1 +2 -1
  54. package/.claude/hooks-windows/verbosity-manager.ps1 +126 -119
  55. package/README.md +19 -2
  56. package/RELEASE_NOTES.md +74 -0
  57. package/bin/agentvibes-voice-browser.js +1939 -1840
  58. package/bin/mcp-server.sh +206 -206
  59. package/mcp-server/server.py +87 -15
  60. package/package.json +1 -1
  61. package/src/console/tabs/receiver-tab.js +1527 -1483
  62. package/src/console/tabs/settings-tab.js +2 -2
  63. package/src/console/tabs/setup-tab.js +112 -31
  64. package/src/console/tabs/voices-tab.js +130 -13
  65. package/src/i18n/en.js +202 -202
  66. package/src/installer.js +79 -213
  67. package/src/services/llm-provider-service.js +126 -75
  68. package/src/services/verbosity-service.js +159 -157
  69. 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|agent_vibes_chillwave_v2_loop.mp3|0.15|en_US-libritts-high::Leo-7|Claude Code 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