agentvibes 4.0.0 → 4.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/.claude/config/audio-effects.cfg +3 -2
- package/.claude/config/background-music-position.txt +1 -1
- package/.claude/hooks/audio-processor.sh +87 -43
- package/.claude/hooks/bmad-speak.sh +184 -27
- package/.claude/hooks/play-tts-enhanced.sh +40 -5
- package/.claude/hooks/play-tts-macos.sh +29 -6
- package/.claude/hooks/play-tts-piper.sh +174 -67
- package/.claude/hooks/play-tts-soprano.sh +42 -6
- package/.claude/hooks/play-tts-ssh-remote.sh +117 -38
- package/.claude/hooks/play-tts.sh +12 -9
- package/.claude/hooks/session-start-tts.sh +10 -0
- package/.claude/hooks/stop-tts.sh +84 -0
- package/.claude/hooks/tts-queue-worker.sh +51 -20
- package/.claude/hooks/tts-queue.sh +37 -8
- package/.claude/hooks/voice-manager.sh +5 -1
- package/CLAUDE.md +0 -11
- package/README.md +176 -78
- package/RELEASE_NOTES.md +1197 -60
- package/bin/agentvibes-voice-browser.js +35 -21
- package/mcp-server/server.py +36 -0
- package/package.json +1 -3
- package/src/console/app.js +23 -5
- package/src/console/constants/personalities.js +44 -0
- package/src/console/footer-config.js +8 -0
- package/src/console/navigation.js +3 -1
- package/src/console/tabs/agents-tab.js +1219 -72
- package/src/console/tabs/install-tab.js +2 -1
- package/src/console/tabs/placeholder-tab.js +9 -1
- package/src/console/tabs/receiver-tab.js +1212 -0
- package/src/console/tabs/settings-tab.js +33 -323
- package/src/console/widgets/destroy-list.js +25 -0
- package/src/console/widgets/format-utils.js +89 -0
- package/src/console/widgets/notice.js +55 -0
- package/src/console/widgets/personality-picker.js +185 -0
- package/src/console/widgets/reverb-picker.js +94 -0
- package/src/console/widgets/track-picker.js +285 -0
- package/src/installer.js +54 -2
- package/src/services/agent-voice-store.js +282 -22
- package/src/services/config-service.js +24 -0
- package/src/services/navigation-service.js +1 -1
- package/src/utils/music-file-validator.js +41 -31
- package/templates/agentvibes-receiver.sh +431 -111
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
copyCommandFiles, copyHookFiles, copyPersonalityFiles,
|
|
23
23
|
copyPluginFiles, copyBmadConfigFiles, copyBackgroundMusicFiles,
|
|
24
24
|
copyConfigFiles, configureSessionStartHook,
|
|
25
|
-
installPluginManifest, checkAndInstallPiper,
|
|
25
|
+
installPluginManifest, checkAndInstallPiper, ensureGitRepo,
|
|
26
26
|
} from '../../installer.js';
|
|
27
27
|
|
|
28
28
|
const _execFileAsync = promisify(execFile);
|
|
@@ -368,6 +368,7 @@ export function createInstallTab(screen, services) {
|
|
|
368
368
|
await copyConfigFiles(targetDir, spinner);
|
|
369
369
|
await configureSessionStartHook(targetDir, spinner);
|
|
370
370
|
await installPluginManifest(targetDir, spinner);
|
|
371
|
+
await ensureGitRepo(targetDir, spinner);
|
|
371
372
|
|
|
372
373
|
spinner.start('Writing configuration...');
|
|
373
374
|
await _writeInstallConfig(targetDir, provider);
|
|
@@ -34,12 +34,20 @@ export function createPlaceholderTab(contentArea, label) {
|
|
|
34
34
|
return box;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
/** Map of tabId → display label for all
|
|
37
|
+
/** Map of tabId → display label for all tabs */
|
|
38
38
|
export const TAB_DISPLAY_LABELS = {
|
|
39
39
|
settings: 'Settings',
|
|
40
40
|
voices: 'Voices',
|
|
41
41
|
music: 'Music',
|
|
42
|
+
agents: 'BMad',
|
|
43
|
+
receiver: 'Receiver',
|
|
42
44
|
readme: 'Readme',
|
|
43
45
|
help: 'Help',
|
|
44
46
|
install: 'Install',
|
|
45
47
|
};
|
|
48
|
+
|
|
49
|
+
/** Override shortcut key for tabs where first letter conflicts */
|
|
50
|
+
export const TAB_SHORTCUT_KEYS = {
|
|
51
|
+
agents: 'B',
|
|
52
|
+
receiver: 'X',
|
|
53
|
+
};
|