agentvibes 2.1.1 → 2.1.2
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 +1 -1
- package/src/installer.js +1 -1
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.1.
|
|
4
|
+
"version": "2.1.2",
|
|
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
|
@@ -609,7 +609,7 @@ async function install(options = {}) {
|
|
|
609
609
|
|
|
610
610
|
// Check if piper is installed
|
|
611
611
|
try {
|
|
612
|
-
execSync('piper
|
|
612
|
+
execSync('command -v piper', { stdio: 'ignore' });
|
|
613
613
|
console.log(chalk.green('✅ Piper TTS is already installed\n'));
|
|
614
614
|
} catch {
|
|
615
615
|
// Piper not installed - offer to install it
|