agentvibes 2.4.3-beta.1 → 2.4.3-beta.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 +10 -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.4.3-beta.
|
|
4
|
+
"version": "2.4.3-beta.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
|
@@ -680,9 +680,18 @@ async function configureSessionStartHook(targetDir, spinner) {
|
|
|
680
680
|
* @param {Object} spinner - Ora spinner instance
|
|
681
681
|
*/
|
|
682
682
|
async function installPluginManifest(targetDir, spinner) {
|
|
683
|
+
const srcPluginManifest = path.join(__dirname, '..', '.claude-plugin', 'plugin.json');
|
|
684
|
+
|
|
685
|
+
// Check if source plugin manifest exists (optional feature)
|
|
686
|
+
try {
|
|
687
|
+
await fs.access(srcPluginManifest);
|
|
688
|
+
} catch {
|
|
689
|
+
// Source doesn't exist - skip silently as this is optional
|
|
690
|
+
return;
|
|
691
|
+
}
|
|
692
|
+
|
|
683
693
|
spinner.start('Installing AgentVibes plugin manifest...');
|
|
684
694
|
const pluginDir = path.join(targetDir, '.claude-plugin');
|
|
685
|
-
const srcPluginManifest = path.join(__dirname, '..', '.claude-plugin', 'plugin.json');
|
|
686
695
|
const destPluginManifest = path.join(pluginDir, 'plugin.json');
|
|
687
696
|
|
|
688
697
|
try {
|