agentvibes 2.14.6 → 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 +18 -10
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.6",
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
@@ -128,17 +128,17 @@ function showReleaseInfo() {
128
128
  console.log(
129
129
  boxen(
130
130
  chalk.white.bold('═══════════════════════════════════════════════════════════════\n') +
131
- chalk.cyan.bold(' 📦 AgentVibes v2.14.4 - Fully Automated Install\n') +
131
+ chalk.cyan.bold(' 📦 AgentVibes v2.14.7 - macOS Say Provider Support\n') +
132
132
  chalk.white.bold('═══════════════════════════════════════════════════════════════\n\n') +
133
133
  chalk.green.bold('🎙️ WHAT\'S NEW:\n\n') +
134
- chalk.cyan('AgentVibes v2.14.4 fixes the --yes flag to skip ALL prompts.\n') +
135
- chalk.cyan('Now `npx agentvibes install --yes` runs fully unattended,\n') +
136
- chalk.cyan('perfect for CI/CD pipelines and automated deployments.\n\n') +
134
+ chalk.cyan('AgentVibes v2.14.7 adds macOS Say to the provider selection.\n') +
135
+ chalk.cyan('Mac users now see all 3 TTS options during install:\n') +
136
+ chalk.cyan('Piper (free), macOS Say (built-in), and ElevenLabs (premium).\n\n') +
137
137
  chalk.green.bold('✨ KEY HIGHLIGHTS:\n\n') +
138
- chalk.gray(' Fully Automated Install - --yes skips ALL interactive prompts\n') +
139
- chalk.gray(' 🤖 CI/CD Ready - Perfect for automated deployments\n') +
140
- chalk.gray(' No Breaking Changes - Interactive mode unchanged\n') +
141
- chalk.gray(' 🎯 133 Tests Passing - Full test suite coverage\n\n') +
138
+ chalk.gray(' 🍎 macOS Say Provider - Zero setup, built-in system voices\n') +
139
+ chalk.gray(' 🔧 BMAD Fix - core/agents now get TTS injection\n') +
140
+ chalk.gray(' Fully Automated Install - --yes for CI/CD pipelines\n') +
141
+ chalk.gray(' 🎯 All Tests Passing - Full test suite coverage\n\n') +
142
142
  chalk.white.bold('═══════════════════════════════════════════════════════════════\n\n') +
143
143
  chalk.gray('📖 Full Release Notes: RELEASE_NOTES.md\n') +
144
144
  chalk.gray('🌐 Website: https://agentvibes.org\n') +
@@ -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');