Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:4
forks:1
updated:May 6, 2026 at 03:28
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| 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
# 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