agentvibes 2.14.7 → 2.14.8

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/installer.js +10 -2
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": "2.14.7",
4
+ "version": "2.14.8",
5
5
  "description": "Now your AI Agents can finally talk back! Professional TTS voice for Claude Code and Claude Desktop (via MCP) with multi-provider support.",
6
6
  "homepage": "https://agentvibes.org",
7
7
  "keywords": [
package/src/installer.js CHANGED
@@ -1404,13 +1404,16 @@ async function install(options = {}) {
1404
1404
  console.log(chalk.gray(` • 30+ language support with native voices`));
1405
1405
  console.log(chalk.gray(` • BMAD integration for multi-agent sessions\n`));
1406
1406
 
1407
+ // Provider labels for display
1408
+ const providerLabels = { elevenlabs: 'ElevenLabs', piper: 'Piper TTS', macos: 'macOS Say' };
1409
+
1407
1410
  // Final confirmation
1408
1411
  if (!options.yes) {
1409
1412
  const { confirm } = await inquirer.prompt([
1410
1413
  {
1411
1414
  type: 'confirm',
1412
1415
  name: 'confirm',
1413
- message: chalk.yellow(`Proceed with installation using ${selectedProvider === 'elevenlabs' ? 'ElevenLabs' : 'Piper TTS'}?`),
1416
+ message: chalk.yellow(`Proceed with installation using ${providerLabels[selectedProvider] || selectedProvider}?`),
1414
1417
  default: true,
1415
1418
  },
1416
1419
  ]);
@@ -1469,7 +1472,6 @@ async function install(options = {}) {
1469
1472
  await fs.writeFile(piperConfigPath, piperVoicesPath);
1470
1473
  }
1471
1474
 
1472
- const providerLabels = { elevenlabs: 'ElevenLabs', piper: 'Piper TTS', macos: 'macOS Say' };
1473
1475
  spinner.succeed(chalk.green(`Provider set to: ${providerLabels[selectedProvider] || selectedProvider}\n`));
1474
1476
 
1475
1477
  // Detect and migrate old configuration
@@ -1502,6 +1504,12 @@ async function install(options = {}) {
1502
1504
  } else {
1503
1505
  console.log(chalk.yellow(` • ElevenLabs API key: Set manually later`));
1504
1506
  }
1507
+ } else if (selectedProvider === 'macos') {
1508
+ // macOS Say provider summary
1509
+ console.log(chalk.white(` • Using macOS built-in Say command`));
1510
+ console.log(chalk.white(` • System voices available (Samantha, Alex, etc.)`));
1511
+ console.log(chalk.green(` • No API key needed ✓`));
1512
+ console.log(chalk.green(` • Zero setup required ✓`));
1505
1513
  } else {
1506
1514
  // Check for installed Piper voices
1507
1515
  const piperVoicesDir = path.join(process.env.HOME || process.env.USERPROFILE, '.claude', 'piper-voices');