en un clic
help
Show help for Vocal Bridge Claude Code plugin commands
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Show help for Vocal Bridge Claude Code plugin commands
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
View and update all agent configuration settings including style, capabilities, MCP servers, and more.
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).
Get developer documentation for integrating your Vocal Bridge agent into applications.
| name | help |
| description | Show help for Vocal Bridge Claude Code plugin commands |
| Command | Description |
|---|---|
/vocal-bridge:login [api_key] | Authenticate with API key |
/vocal-bridge:status | Check authentication status |
/vocal-bridge:agent | Show agent information |
/vocal-bridge:create | Create and deploy a new agent (paid subscribers only) |
/vocal-bridge:delete [agent_id] | Delete an agent permanently |
/vocal-bridge:logs [session_id] | View call logs |
/vocal-bridge:download <session_id> | Download call recording |
/vocal-bridge:stats | Show call statistics |
/vocal-bridge:prompt [show|set] | Manage system prompt |
/vocal-bridge:config [show|get|set|edit|options] | Manage all agent settings |
/vocal-bridge:call <phone_number> | Place an outbound call (Pilot only) |
/vocal-bridge:eval <session_id> | Evaluate a call recording with a multimodal LLM (Pilot only, 100/day) |
/vocal-bridge:debug | Stream debug events |
/vocal-bridge:setup | Install CLI if needed |
/vocal-bridge:login vb_your_api_key to authenticate/vocal-bridge:agent to verify connection# Login with your API key
/vocal-bridge:login vb_abc123xyz
# Check connection status
/vocal-bridge:status
# View recent call logs
/vocal-bridge:logs
# View last 50 failed calls
/vocal-bridge:logs -n 50 --status failed
# View specific call transcript
/vocal-bridge:logs 550e8400-e29b-41d4-a716-446655440000
# Download call recording
/vocal-bridge:download 550e8400-e29b-41d4-a716-446655440000
# Create a new agent (paid subscribers only)
/vocal-bridge:create --name "My Agent" --style Chatty --prompt "You are helpful."
# Delete an agent (requires confirmation)
/vocal-bridge:delete
# Show call statistics
/vocal-bridge:stats
# View current prompt
/vocal-bridge:prompt show
# View all agent settings
/vocal-bridge:config show
# Export a config section as JSON
/vocal-bridge:config get model-settings
/vocal-bridge:config get client-actions
# Show valid options for a setting (ALWAYS do this before changing settings)
/vocal-bridge:config options voice
/vocal-bridge:config options "TTS Model"
# Update agent settings
/vocal-bridge:config set --debug-mode true
# Partial update with merge (only changes specified fields)
/vocal-bridge:config set --model-settings-file update.json --merge
# Set session limits
/vocal-bridge:config set --max-call-duration 15
/vocal-bridge:config set --max-history-messages 50
# Continuous speech ("keep talking" mode) for tutors, narrators, guided flows
/vocal-bridge:config set --continuous-mode true
/vocal-bridge:config set --continuous-mode true --continuous-mode-delay 3
# Enable outbound calling
/vocal-bridge:config set --outbound-enabled true --accept-outbound-tos
# Place an outbound call
/vocal-bridge:call +14155551234
# Evaluate a call recording (Pilot only, 100/day)
/vocal-bridge:eval 550e8400-e29b-41d4-a716-446655440000
/vocal-bridge:eval <session_id> --objective "Schedule an interview" --scenario "User is busy"
# Edit full config in editor
/vocal-bridge:config edit
# Stream debug events
/vocal-bridge:debug
The plugin automatically installs the CLI when needed. You can also install manually:
pip install vocal-bridge
Or download the standalone script:
curl -fsSL https://vocalbridgeai.com/cli/vb.py -o vb && chmod +x vb