agentvibes 2.12.2 → 2.12.3

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.
@@ -136,7 +136,7 @@ npx agentvibes@latest install
136
136
 
137
137
  ```bash
138
138
  # Start Claude Code session
139
- claude-code
139
+ claude
140
140
 
141
141
  # Run party mode
142
142
  /bmad:core:workflows:party-mode
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.12.2",
4
+ "version": "2.12.3",
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
@@ -585,32 +585,7 @@ async function copyPersonalityFiles(targetDir, spinner) {
585
585
  return personalityMdFiles.length;
586
586
  }
587
587
 
588
- /**
589
- * Copy output style files to target directory
590
- * @param {string} targetDir - Target installation directory
591
- * @param {Object} spinner - Ora spinner instance
592
- * @returns {Promise<number>} Number of files copied
593
- */
594
- async function copyOutputStyles(targetDir, spinner) {
595
- spinner.start('Installing output styles...');
596
- const srcOutputStylesDir = path.join(__dirname, '..', 'templates', 'output-styles');
597
- const outputStylesDir = path.join(targetDir, '.claude', 'output-styles');
598
-
599
- await fs.mkdir(outputStylesDir, { recursive: true });
600
-
601
- const outputStyleFiles = await fs.readdir(srcOutputStylesDir);
602
- console.log(chalk.cyan(`📝 Installing ${outputStyleFiles.length} output styles:`));
603
-
604
- for (const file of outputStyleFiles) {
605
- const srcPath = path.join(srcOutputStylesDir, file);
606
- const destPath = path.join(outputStylesDir, file);
607
- await fs.copyFile(srcPath, destPath);
608
- console.log(chalk.gray(` ✓ ${file}`));
609
- }
610
-
611
- spinner.succeed(chalk.green('Installed output styles!\n'));
612
- return outputStyleFiles.length;
613
- }
588
+ // Output styles removed - deprecated in favor of SessionStart hook system
614
589
 
615
590
  /**
616
591
  * Copy plugin files to target directory
@@ -1199,18 +1174,7 @@ async function updateAgentVibes(targetDir, options) {
1199
1174
  const personalityResult = await updatePersonalityFiles(targetDir, srcPersonalitiesDir);
1200
1175
  console.log(chalk.green(`✓ Updated ${personalityResult.updated} personalities, added ${personalityResult.new} new`));
1201
1176
 
1202
- // Update output styles
1203
- spinner.text = 'Updating output styles...';
1204
- const srcOutputStylesDir = path.join(__dirname, '..', '.claude', 'output-styles');
1205
- const outputStylesDir = path.join(claudeDir, 'output-styles');
1206
- const outputStyleFiles = await fs.readdir(srcOutputStylesDir);
1207
-
1208
- for (const file of outputStyleFiles) {
1209
- const srcPath = path.join(srcOutputStylesDir, file);
1210
- const destPath = path.join(outputStylesDir, file);
1211
- await fs.copyFile(srcPath, destPath);
1212
- }
1213
- console.log(chalk.green(`✓ Updated ${outputStyleFiles.length} output styles`));
1177
+ // Output styles removed - deprecated in favor of SessionStart hook system
1214
1178
 
1215
1179
  // Update plugin files
1216
1180
  const pluginFileCount = await copyPluginFiles(targetDir, { start: () => {}, succeed: () => {}, info: () => {}, fail: () => {} });
@@ -1327,7 +1291,7 @@ async function install(options = {}) {
1327
1291
  console.log(chalk.gray(` • 16 slash commands → ${targetDir}/.claude/commands/agent-vibes/`));
1328
1292
  console.log(chalk.gray(` • Multi-provider TTS system (ElevenLabs + Piper TTS) → ${targetDir}/.claude/hooks/`));
1329
1293
  console.log(chalk.gray(` • 19 personality templates → ${targetDir}/.claude/personalities/`));
1330
- console.log(chalk.gray(` • Agent Vibes output style ${targetDir}/.claude/output-styles/`));
1294
+ console.log(chalk.gray(` • SessionStart hook for automatic TTS activation`));
1331
1295
  console.log(chalk.gray(` • 27+ curated voices (ElevenLabs premium)`));
1332
1296
  console.log(chalk.gray(` • 50+ neural voices (Piper TTS - free & offline)`));
1333
1297
  console.log(chalk.gray(` • 30+ language support with native voices`));
@@ -1358,7 +1322,6 @@ async function install(options = {}) {
1358
1322
  const claudeDir = path.join(targetDir, '.claude');
1359
1323
  const commandsDir = path.join(claudeDir, 'commands');
1360
1324
  const hooksDir = path.join(claudeDir, 'hooks');
1361
- const outputStylesDir = path.join(claudeDir, 'output-styles');
1362
1325
 
1363
1326
  let exists = false;
1364
1327
  try {
@@ -1370,10 +1333,8 @@ async function install(options = {}) {
1370
1333
  spinner.info(chalk.yellow('Creating .claude directory structure...'));
1371
1334
  console.log(chalk.gray(` → ${commandsDir}`));
1372
1335
  console.log(chalk.gray(` → ${hooksDir}`));
1373
- console.log(chalk.gray(` → ${outputStylesDir}`));
1374
1336
  await fs.mkdir(commandsDir, { recursive: true });
1375
1337
  await fs.mkdir(hooksDir, { recursive: true });
1376
- await fs.mkdir(outputStylesDir, { recursive: true });
1377
1338
  console.log(chalk.green(' ✓ Directories created!\n'));
1378
1339
  } else {
1379
1340
  spinner.succeed(chalk.green('.claude directory found!'));
@@ -1384,7 +1345,6 @@ async function install(options = {}) {
1384
1345
  const commandFileCount = await copyCommandFiles(targetDir, spinner);
1385
1346
  const hookFileCount = await copyHookFiles(targetDir, spinner);
1386
1347
  const personalityFileCount = await copyPersonalityFiles(targetDir, spinner);
1387
- const outputStyleCount = await copyOutputStyles(targetDir, spinner);
1388
1348
  const pluginFileCount = await copyPluginFiles(targetDir, spinner);
1389
1349
  const bmadConfigFileCount = await copyBmadConfigFiles(targetDir, spinner);
1390
1350
 
@@ -1417,7 +1377,7 @@ async function install(options = {}) {
1417
1377
  console.log(chalk.white(` • ${commandFileCount} slash commands installed`));
1418
1378
  console.log(chalk.white(` • ${hookFileCount} TTS scripts installed`));
1419
1379
  console.log(chalk.white(` • ${personalityFileCount} personality templates installed`));
1420
- console.log(chalk.white(` • ${outputStyleCount} output styles installed`));
1380
+ console.log(chalk.white(` • SessionStart hook configured for automatic TTS`));
1421
1381
  if (pluginFileCount > 0) {
1422
1382
  console.log(chalk.white(` • ${pluginFileCount} BMAD plugin files installed`));
1423
1383
  }