agentvibes 4.6.5 → 4.6.7

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "agentvibes",
4
- "version": "4.6.5",
4
+ "version": "4.6.7",
5
5
  "description": "Now your AI Agents can finally talk back! Professional TTS voice for Claude Code, Claude Desktop (via MCP), and Clawdbot with multi-provider support.",
6
6
  "homepage": "https://agentvibes.org",
7
7
  "keywords": [
@@ -124,7 +124,7 @@ const COLORS = {
124
124
  sectionHdr: '#7b1fa2',
125
125
  labelFg: '#e3f2fd',
126
126
  valueFg: '#ffff00',
127
- activeFg: '#ce93d8',
127
+
128
128
  btnDefault: '#6a1b9a',
129
129
  btnFocus: '#2e7d32', // Green — focused/selected
130
130
  btnFocusFg: '#ffffff',
@@ -304,7 +304,7 @@ ${_tl('bmadDesc')}
304
304
  fg: COLORS.labelFg,
305
305
  bg: COLORS.contentBg,
306
306
  border: { fg: COLORS.borderFg },
307
- selected: { bg: '#4a148c', fg: COLORS.activeFg, bold: true },
307
+ selected: { bg: 'blue', fg: 'yellow' },
308
308
  item: { fg: COLORS.labelFg },
309
309
  },
310
310
  });
@@ -681,7 +681,7 @@ ${_tl('bmadDesc')}
681
681
  fg: COLORS.labelFg,
682
682
  bg: COLORS.contentBg,
683
683
  border: { fg: '#4a148c' },
684
- selected: { bg: '#4a148c', fg: COLORS.activeFg, bold: true },
684
+ selected: { bg: 'blue', fg: 'yellow' },
685
685
  item: { fg: COLORS.labelFg },
686
686
  },
687
687
  });
@@ -1529,7 +1529,7 @@ ${_tl('bmadDesc')}
1529
1529
  fg: COLORS.labelFg,
1530
1530
  bg: COLORS.contentBg,
1531
1531
  border: { fg: COLORS.btnFocus },
1532
- selected: { bg: '#4a148c', fg: COLORS.activeFg, bold: true },
1532
+ selected: { bg: 'blue', fg: 'yellow' },
1533
1533
  item: { fg: COLORS.labelFg },
1534
1534
  },
1535
1535
  });
@@ -942,13 +942,10 @@ export function createInstallTab(screen, services) {
942
942
  _screen--;
943
943
  _showCurrentScreen();
944
944
  } else {
945
- box.hide();
946
- screen.render();
947
- // Defer so the escape keypress event finishes propagating before focus changes.
948
- // Calling focusMainTabBar() synchronously here would set focus to the tab bar
949
- // item mid-event, causing its own key(['escape']) handler to fire in the same
950
- // emission and call onFocus() → re-focus a button inside the now-hidden box.
951
- if (typeof focusMainTabBar === 'function') setTimeout(() => focusMainTabBar(), 0);
945
+ // User pressed Escape at the first screen — they want out of the installer.
946
+ // Switch to Settings so they can configure without being stuck on the install tab.
947
+ // (focusMainTabBar would re-focus the install tab item, which loops back here.)
948
+ setTimeout(() => navigationService?.switchTab('settings'), 0);
952
949
  }
953
950
  });
954
951
 
@@ -146,9 +146,12 @@ export function createReadmeTab(screen, services) {
146
146
  // Load README.md
147
147
 
148
148
  function _loadReadme() {
149
+ // Package root — works whether installed globally (node_modules/.bin) or run from source
150
+ const pkgRoot = path.resolve(new URL(import.meta.url).pathname, '..', '..', '..', '..');
149
151
  const candidates = [
150
152
  path.resolve(process.cwd(), 'README.md'),
151
153
  path.resolve(process.cwd(), 'readme.md'),
154
+ path.resolve(pkgRoot, 'README.md'), // AgentVibes package README fallback
152
155
  ];
153
156
  for (const p of candidates) {
154
157
  if (fs.existsSync(p)) {
@@ -1760,37 +1760,57 @@ export function createSettingsTab(screen, services) {
1760
1760
  style: { fg: COLORS.valueFg, bg: COLORS.contentBg },
1761
1761
  });
1762
1762
 
1763
- let _langListIdx = 0;
1764
-
1765
- const languageList = blessed.box({
1763
+ // Visible list height — cap at 10 rows (fits standard 24-row terminals with headers)
1764
+ const LANG_LIST_HEIGHT = Math.min(SUPPORTED_LANGUAGES.length, 10);
1765
+
1766
+ // blessed.list: natively focusable, handles selection highlight, scrolling.
1767
+ // keys:true needed so keypress events propagate to the element (keyable=true).
1768
+ // We immediately removeAllListeners('keypress') to strip blessed's built-in up/down nav —
1769
+ // our manual .key() handlers (registered on 'key down'/'key up') are the sole navigators.
1770
+ const languageList = blessed.list({
1766
1771
  parent: box,
1767
1772
  top: 7,
1768
1773
  left: 4,
1769
- width: 40,
1770
- height: Math.min(SUPPORTED_LANGUAGES.length + 2, 12),
1771
- tags: true,
1772
- content: '',
1773
- style: { fg: COLORS.labelFg, bg: COLORS.contentBg },
1774
+ width: 44,
1775
+ height: LANG_LIST_HEIGHT + 2, // +2 for border
1776
+ keys: true,
1777
+ mouse: true,
1778
+ tags: false,
1779
+ items: SUPPORTED_LANGUAGES.map(l => l.name),
1780
+ style: {
1781
+ selected: { bg: 'green', fg: 'white', bold: true },
1782
+ item: { fg: 'white' },
1783
+ border: { fg: 'cyan' },
1784
+ focus: { border: { fg: 'yellow' } },
1785
+ },
1786
+ border: { type: 'line' },
1787
+ scrollable: true,
1788
+ scrollbar: { style: { bg: 'blue' } },
1774
1789
  });
1790
+ // Strip blessed's built-in keypress nav (up/down/j/k/etc.) — our .key() handlers take over.
1791
+ // .key() registers on 'key <name>' events (not 'keypress'), so they survive this removal.
1792
+ languageList.removeAllListeners('keypress');
1775
1793
 
1776
- function _renderLangList() {
1777
- const lines = SUPPORTED_LANGUAGES.map((l, i) =>
1778
- i === _langListIdx
1779
- ? `{green-fg}► ${l.name}{/green-fg}`
1780
- : ` ${l.name}`
1781
- );
1782
- languageList.setContent(lines.join('\n'));
1783
- }
1794
+ // Hint shown below the list
1795
+ const langHint = blessed.text({
1796
+ parent: box,
1797
+ top: 7 + LANG_LIST_HEIGHT + 3,
1798
+ left: 4,
1799
+ content: '{gray-fg}↑↓ navigate · Enter to apply{/gray-fg}',
1800
+ tags: true,
1801
+ style: { bg: COLORS.contentBg },
1802
+ });
1784
1803
 
1804
+ // Apply button — kept for mouse users; keyboard users just press Enter on the list
1785
1805
  const langApplyBtn = _createButton(box, screen, '✓ Apply Language', COLORS, () => {
1786
- const selected = SUPPORTED_LANGUAGES[_langListIdx];
1806
+ const selected = SUPPORTED_LANGUAGES[languageList.selected ?? 0];
1787
1807
  if (selected && services.languageService) {
1788
1808
  services.languageService.setLang(selected.value);
1789
1809
  refreshLanguageDisplay();
1790
1810
  _showNotice(screen, `Language: ${selected.name}`);
1791
1811
  }
1792
1812
  }, { bg: '#2e7d32' });
1793
- langApplyBtn.top = 7 + Math.min(SUPPORTED_LANGUAGES.length + 2, 12) + 1;
1813
+ langApplyBtn.top = 7 + LANG_LIST_HEIGHT + 5;
1794
1814
  langApplyBtn.left = 4;
1795
1815
 
1796
1816
  function refreshLanguageDisplay() {
@@ -1798,19 +1818,11 @@ export function createSettingsTab(screen, services) {
1798
1818
  const found = SUPPORTED_LANGUAGES.find(l => l.value === currentLang);
1799
1819
  languageCurrentValue.setContent(found ? found.name : currentLang);
1800
1820
  const idx = SUPPORTED_LANGUAGES.findIndex(l => l.value === currentLang);
1801
- if (idx >= 0) _langListIdx = idx;
1802
- _renderLangList();
1821
+ if (idx >= 0) languageList.select(idx);
1803
1822
  screen.render();
1804
1823
  }
1805
1824
 
1806
- // Key navigation for language list
1807
- box.key(['up', 'down'], (ch, key) => {
1808
- if (_activeSubTab !== 'language') return;
1809
- if (key.name === 'up') _langListIdx = Math.max(0, _langListIdx - 1);
1810
- if (key.name === 'down') _langListIdx = Math.min(SUPPORTED_LANGUAGES.length - 1, _langListIdx + 1);
1811
- _renderLangList();
1812
- screen.render();
1813
- });
1825
+ // Key navigation wired after _navigateRow is defined (see below)
1814
1826
 
1815
1827
  // -------------------------------------------------------------------------
1816
1828
  // Display state + button-level focus navigation (story 7.6)
@@ -1847,8 +1859,7 @@ export function createSettingsTab(screen, services) {
1847
1859
  language: [
1848
1860
  languageSectionHeader,
1849
1861
  languageCurrentLabel, languageCurrentValue,
1850
- languageList,
1851
- langApplyBtn,
1862
+ languageList, langHint, langApplyBtn,
1852
1863
  ],
1853
1864
  };
1854
1865
 
@@ -1858,7 +1869,7 @@ export function createSettingsTab(screen, services) {
1858
1869
  effects: [[reverbChangeBtn, reverbTestBtn], [trackChangeBtn, musicToggleBtn, musicTestBtn], [volumeChangeBtn]],
1859
1870
  personality: [[verbosityChangeBtn], [personalityChangeBtn, personalityTestBtn], [introEditBtn, introClearBtn]],
1860
1871
  output: [[audioDstChangeBtn], [audioSshEditBtn, audioStreamModeBtn]],
1861
- language: [[langApplyBtn]],
1872
+ language: [[languageList], [langApplyBtn]],
1862
1873
  };
1863
1874
 
1864
1875
  const _subTabItemsArray = SUB_TABS.map(id => _subTabItemsMap[id]);
@@ -1906,7 +1917,7 @@ export function createSettingsTab(screen, services) {
1906
1917
 
1907
1918
  const _buttons = [
1908
1919
  _subTabItemsMap.voice, _subTabItemsMap.effects,
1909
- _subTabItemsMap.personality, _subTabItemsMap.output,
1920
+ _subTabItemsMap.personality, _subTabItemsMap.output, _subTabItemsMap.language,
1910
1921
  switchBtn, changeBtn, playBtn,
1911
1922
  reverbChangeBtn, reverbTestBtn,
1912
1923
  trackChangeBtn, musicToggleBtn, musicTestBtn,
@@ -1914,6 +1925,7 @@ export function createSettingsTab(screen, services) {
1914
1925
  verbosityChangeBtn, personalityChangeBtn, personalityTestBtn,
1915
1926
  introEditBtn, introClearBtn,
1916
1927
  audioDstChangeBtn, audioSshEditBtn, audioStreamModeBtn,
1928
+ languageList, langApplyBtn,
1917
1929
  fullPreviewBtn,
1918
1930
  saveGloballyBtn, saveLocallyBtn, cancelChangesBtn,
1919
1931
  ];
@@ -2030,74 +2042,6 @@ export function createSettingsTab(screen, services) {
2030
2042
  return;
2031
2043
  }
2032
2044
 
2033
- // _rows layout: [0]=sub-tab bar, [1..lastContent]=per-tab rows, then 3 shared bottom rows
2034
- const BOTTOM_ROWS = 2; // [fullPreviewBtn], [saveGlobally+saveLocally+cancelChanges]
2035
- const lastContentIdx = _rows.length - BOTTOM_ROWS - 1;
2036
-
2037
- // Cross-tab forward: ↓ from the effective last visible content row → jump to next sub-tab
2038
- if (delta > 0 && rowIdx >= 1 && rowIdx <= lastContentIdx) {
2039
- let isEffectiveLast = true;
2040
- for (let r = rowIdx + 1; r <= lastContentIdx; r++) {
2041
- if (_isRowVisible(_rows[r])) { isEffectiveLast = false; break; }
2042
- }
2043
- if (isEffectiveLast) {
2044
- const tabIdx = SUB_TABS.indexOf(_activeSubTab);
2045
- if (tabIdx < SUB_TABS.length - 1) {
2046
- const nextTab = SUB_TABS[tabIdx + 1];
2047
- _showSubTab(nextTab, true);
2048
- const firstRow = _rowsBySubTab[nextTab].find(row => _isRowVisible(row));
2049
- if (firstRow) {
2050
- const btn = _firstVisibleBtn(firstRow);
2051
- _currentIdx = _buttons.indexOf(btn);
2052
- _focusButton(btn);
2053
- return;
2054
- }
2055
- }
2056
- // On the last sub-tab: fall through to normal (go to fullPreviewBtn)
2057
- }
2058
- }
2059
-
2060
- // Cross-tab backward: ↑ from first content row (row 1) → jump to previous sub-tab's last row
2061
- if (delta < 0 && rowIdx === 1) {
2062
- const tabIdx = SUB_TABS.indexOf(_activeSubTab);
2063
- if (tabIdx > 0) {
2064
- const prevTab = SUB_TABS[tabIdx - 1];
2065
- _showSubTab(prevTab, true);
2066
- const prevRows = _rowsBySubTab[prevTab];
2067
- let lastRow = null;
2068
- for (let i = prevRows.length - 1; i >= 0; i--) {
2069
- if (_isRowVisible(prevRows[i])) { lastRow = prevRows[i]; break; }
2070
- }
2071
- if (lastRow) {
2072
- const btn = _firstVisibleBtn(lastRow);
2073
- _currentIdx = _buttons.indexOf(btn);
2074
- _focusButton(btn);
2075
- return;
2076
- }
2077
- }
2078
- // First sub-tab: fall through (goes to sub-tab bar at row 0)
2079
- }
2080
-
2081
- // In the bottom save row: ↓ navigates to the next visible sibling within the row
2082
- // rather than wrapping to row 0 (sub-tab bar) via modulo.
2083
- const lastRowIdx = _rows.length - 1;
2084
- if (delta > 0 && rowIdx === lastRowIdx) {
2085
- const row = _rows[lastRowIdx];
2086
- const posInRow = row.indexOf(focused);
2087
- for (let i = posInRow + 1; i < row.length; i++) {
2088
- if (!row[i].hidden) {
2089
- _currentIdx = _buttons.indexOf(row[i]);
2090
- _focusButton(row[i]);
2091
- return;
2092
- }
2093
- }
2094
- // Last sibling in the row — wrap up to sub-tab bar (row 0)
2095
- const topBtn = _firstVisibleBtn(_rows[0]);
2096
- _currentIdx = _buttons.indexOf(topBtn);
2097
- _focusButton(topBtn);
2098
- return;
2099
- }
2100
-
2101
2045
  // Skip rows where ALL buttons are hidden (e.g. SSH alias row when destination is local).
2102
2046
  // Use _firstVisibleBtn so we land on the first visible button in a mixed row.
2103
2047
  let attempts = 0;
@@ -2105,17 +2049,56 @@ export function createSettingsTab(screen, services) {
2105
2049
  rowIdx = (rowIdx + delta + _rows.length) % _rows.length;
2106
2050
  attempts++;
2107
2051
  } while (!_isRowVisible(_rows[rowIdx]) && attempts < _rows.length);
2108
- const btn = _firstVisibleBtn(_rows[rowIdx]);
2052
+ // When landing on the sub-tab bar (row 0), focus the ACTIVE sub-tab item, not the first one
2053
+ const btn = rowIdx === 0
2054
+ ? (_subTabItemsMap[_activeSubTab] ?? _firstVisibleBtn(_rows[0]))
2055
+ : _firstVisibleBtn(_rows[rowIdx]);
2109
2056
  _currentIdx = _buttons.indexOf(btn);
2110
2057
  _focusButton(btn);
2111
2058
  }
2112
2059
 
2113
2060
  for (const btn of _buttons) {
2114
- btn.key(['down'], () => _navigateRow(1));
2115
- btn.key(['up'], () => _navigateRow(-1));
2061
+ btn.key(['down'], () => {
2062
+ if (btn === languageList) return; // languageList has its own boundary-aware down handler
2063
+ _navigateRow(1);
2064
+ });
2065
+ btn.key(['up'], () => {
2066
+ if (btn === languageList) return; // languageList has its own boundary-aware up handler
2067
+ _navigateRow(-1);
2068
+ });
2116
2069
  btn.key(['escape'], () => { if (typeof focusMainTabBar === 'function') setTimeout(() => focusMainTabBar(), 0); });
2117
2070
  }
2118
2071
 
2072
+ // Language list — fully manual navigation (keys:false on the list disables blessed's built-in
2073
+ // so only our handlers run, giving us clean boundary detection without double-move issues).
2074
+ languageList.key(['down'], () => {
2075
+ const cur = languageList.selected ?? 0;
2076
+ if (cur >= SUPPORTED_LANGUAGES.length - 1) {
2077
+ _navigateRow(1); // past last item → Apply button
2078
+ } else {
2079
+ languageList.select(cur + 1);
2080
+ screen.render();
2081
+ }
2082
+ });
2083
+ languageList.key(['up'], () => {
2084
+ const cur = languageList.selected ?? 0;
2085
+ if (cur <= 0) {
2086
+ _navigateRow(-1); // past first item → sub-tab bar
2087
+ } else {
2088
+ languageList.select(cur - 1);
2089
+ screen.render();
2090
+ }
2091
+ });
2092
+ languageList.key(['enter', 'return', 'space'], () => {
2093
+ const selected = SUPPORTED_LANGUAGES[languageList.selected ?? 0];
2094
+ if (selected && services.languageService) {
2095
+ services.languageService.setLang(selected.value);
2096
+ refreshLanguageDisplay();
2097
+ _showNotice(screen, `Language: ${selected.name}`);
2098
+ }
2099
+ });
2100
+ languageList.key(['escape'], () => { if (typeof focusMainTabBar === 'function') setTimeout(() => focusMainTabBar(), 0); });
2101
+
2119
2102
  // ← / → within content rows — uses _buttonGroups (static); sub-tab bar has its own wiring
2120
2103
  const _rows = []; // populated dynamically by _showSubTab()
2121
2104
 
@@ -2129,8 +2112,9 @@ export function createSettingsTab(screen, services) {
2129
2112
  [introEditBtn, introClearBtn],
2130
2113
  [audioDstChangeBtn],
2131
2114
  [audioSshEditBtn, audioStreamModeBtn],
2132
- [fullPreviewBtn],
2133
- [saveGloballyBtn, saveLocallyBtn, cancelChangesBtn],
2115
+ [languageList],
2116
+ [langApplyBtn],
2117
+ [fullPreviewBtn, saveGloballyBtn, saveLocallyBtn, cancelChangesBtn],
2134
2118
  ];
2135
2119
 
2136
2120
  for (const row of _buttonGroups) {
@@ -2425,9 +2409,12 @@ export function createSettingsTab(screen, services) {
2425
2409
  },
2426
2410
 
2427
2411
  onFocus() {
2412
+ // Land on the active sub-tab bar item so the user can ↑↓ from there.
2428
2413
  // Use _focusButton (not raw .focus()) so olines get invalidated before render,
2429
2414
  // preventing the ghost-duplicate-row artifact on initial tab activation.
2430
- _focusButton(_buttons[_currentIdx]);
2415
+ const activeSubTabItem = _subTabItemsMap[_activeSubTab];
2416
+ _currentIdx = _buttons.indexOf(activeSubTabItem);
2417
+ _focusButton(activeSubTabItem);
2431
2418
  },
2432
2419
 
2433
2420
  onBlur() {
package/src/installer.js CHANGED
@@ -5352,6 +5352,12 @@ Troubleshooting:
5352
5352
  await fs.writeFile(langConfigPath, lang, { mode: 0o600 });
5353
5353
  }
5354
5354
 
5355
+ // Default translation to auto: syncs with BMAD communication_language if set, otherwise no translation
5356
+ const translateFile = path.join(claudeDir, 'tts-translate-to.txt');
5357
+ try { await fs.access(translateFile); } catch {
5358
+ await fs.writeFile(translateFile, 'auto', { mode: 0o600 });
5359
+ }
5360
+
5355
5361
  // Apply verbosity, personality, pretext
5356
5362
  await fs.writeFile(path.join(claudeDir, 'tts-verbosity.txt'), userConfig.verbosity);
5357
5363
  if (userConfig.personality && userConfig.personality !== 'none') {
@@ -1 +0,0 @@
1
- true