agentvibes 2.0.1 → 2.0.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.
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  [![Publish](https://github.com/paulpreibisch/AgentVibes/actions/workflows/publish.yml/badge.svg)](https://github.com/paulpreibisch/AgentVibes/actions/workflows/publish.yml)
12
12
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
13
13
 
14
- **Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.0.1
14
+ **Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.0.3
15
15
 
16
16
  ---
17
17
 
@@ -45,7 +45,7 @@
45
45
 
46
46
  ## 📰 Latest Release
47
47
 
48
- **[v2.0.0 - The Multi-Provider Revolution](https://github.com/paulpreibisch/AgentVibes/releases/tag/v2.0.1)** 🎉
48
+ **[v2.0.0 - The Multi-Provider Revolution](https://github.com/paulpreibisch/AgentVibes/releases/tag/v2.0.3)** 🎉
49
49
 
50
50
  The biggest update ever! **Multi-provider TTS support** (ElevenLabs + Piper TTS), **30+ languages**, expanded voice library (27+ voices), advanced sentiment system, enhanced BMAD integration, and comprehensive multilingual support. Choose between premium ElevenLabs voices or free offline Piper TTS!
51
51
 
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.0.1",
4
+ "version": "2.0.3",
5
5
  "description": "Bring your Claude Code sessions to life with voice! Professional TTS narration with multi-provider support.",
6
6
  "homepage": "https://agentvibes.org",
7
7
  "keywords": [
package/src/installer.js CHANGED
@@ -178,11 +178,22 @@ async function install(options = {}) {
178
178
  // Copy hook scripts
179
179
  spinner.start('Installing TTS helper scripts...');
180
180
  const allHookFiles = await fs.readdir(srcHooksDir);
181
- // Only copy AgentVibes-related scripts, exclude project-specific files
182
- const hookFiles = allHookFiles.filter(file =>
183
- !file.includes('prepare-release') &&
184
- !file.startsWith('.')
185
- );
181
+
182
+ // Filter to only include files (not directories) and exclude project-specific files
183
+ const hookFiles = [];
184
+ for (const file of allHookFiles) {
185
+ const srcPath = path.join(srcHooksDir, file);
186
+ const stat = await fs.stat(srcPath);
187
+
188
+ // Only copy shell script files, skip directories and unwanted files
189
+ if (stat.isFile() &&
190
+ file.endsWith('.sh') &&
191
+ !file.includes('prepare-release') &&
192
+ !file.startsWith('.')) {
193
+ hookFiles.push(file);
194
+ }
195
+ }
196
+
186
197
  console.log(chalk.cyan(`🔧 Installing ${hookFiles.length} TTS scripts:`));
187
198
  for (const file of hookFiles) {
188
199
  const srcPath = path.join(srcHooksDir, file);