agentvibes 2.2.0-beta.6 → 2.2.0-beta.7
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 +8 -8
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.2.0-beta.
|
|
4
|
+
"version": "2.2.0-beta.7",
|
|
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
|
@@ -926,14 +926,14 @@ async function install(options = {}) {
|
|
|
926
926
|
chalk.gray(' "Set personality to sarcastic" instead of /agent-vibes:personality sarcastic\n\n') +
|
|
927
927
|
chalk.cyan('📋 Claude Code MCP Configuration:\n\n') +
|
|
928
928
|
chalk.white('Add this to your ') + chalk.cyan('~/.claude/mcp.json') + chalk.white(':\n\n') +
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
929
|
+
'{\n' +
|
|
930
|
+
' "mcpServers": {\n' +
|
|
931
|
+
' "agentvibes": {\n' +
|
|
932
|
+
' "command": "npx",\n' +
|
|
933
|
+
' "args": ["-y", "agentvibes-mcp-server"]\n' +
|
|
934
|
+
' }\n' +
|
|
935
|
+
' }\n' +
|
|
936
|
+
'}\n\n' +
|
|
937
937
|
chalk.cyan('📱 Claude Desktop / Warp Terminal:\n') +
|
|
938
938
|
chalk.white(' npx agentvibes setup-mcp-for-claude-desktop\n\n') +
|
|
939
939
|
chalk.cyan('📖 Full Guide:\n') +
|