一键导入
setup
Check and install the Vocal Bridge CLI. Run this automatically before using other Vocal Bridge commands if the CLI is not installed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check and install the Vocal Bridge CLI. Run this automatically before using other Vocal Bridge commands if the CLI is not installed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
View and update all agent configuration settings including style, capabilities, MCP servers, and more.
Show help for Vocal Bridge Claude Code plugin commands
Create and deploy a new voice agent (paid subscribers only)
Evaluate a call recording with a multimodal LLM. Sends the audio, the agent's prompt and configuration, the structured session log (transcript + tool calls + client actions), and the raw session report for a qualitative QA assessment. Pilot subscribers only, 100 evals per day.
Delete a Vocal Bridge voice agent permanently. Releases the phone number and removes the agent.
Place an outbound phone call through your Vocal Bridge agent (Paid subscribers only).
| name | setup |
| description | Check and install the Vocal Bridge CLI. Run this automatically before using other Vocal Bridge commands if the CLI is not installed. |
| allowed-tools | Bash |
Check if the Vocal Bridge CLI is installed and install it if needed.
Try these in order:
which vb - Check if in PATHpython -m vocal_bridge.cli --version - Check if installed as modulepip show vocal-bridge - Check if package is installedIf the CLI is not found, install using pip:
pip install --upgrade vocal-bridge
Or if using uv:
uv pip install --upgrade vocal-bridge
Run: vb --version or python -m vocal_bridge.cli --version
If installation succeeds, inform the user they can now use Vocal Bridge commands like /vocal-bridge:login.
If pip install fails, suggest using the standalone script:
mkdir -p ~/.local/bin
curl -fsSL https://vocalbridgeai.com/cli/vb.py -o ~/.local/bin/vb && chmod +x ~/.local/bin/vb
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc # or ~/.zshrc