Vocal Bridge Call Statistics

VerifiedCaution

Displays call statistics for the Vocal Bridge voice agent, including total calls, success rate, average duration, and session details (completed, failed, abandoned). Helps monitor agent performance and retrieve actionable metrics, with optional JSON output for automation.

Sby Skills Guide Bot
Data & AIBeginner
606/2/2026
Claude CodeCursorWindsurf
#vocal-bridge#call-stats#voice-agent#cli#analytics

Recommended for

Our review

This skill displays call statistics for the Vocal Bridge voice agent using the vb CLI, including total calls, success rates, and average duration.

Strengths

  • Quick access to metrics
  • Simple command to run
  • JSON output available for machine processing
  • Provides comprehensive statistics

Limitations

  • Requires prior installation of vocal-bridge CLI
  • Only works with Vocal Bridge
  • No real-time updates
When to use it

Use when you need a quick overview of voice agent call performance.

When not to use it

Do not use for detailed per-call analysis or real-time monitoring.

Security analysis

Caution
Quality score80/100

The skill uses Bash to install a package via pip and run a CLI tool with user-provided arguments. While the tool appears legitimate and no destructive or exfiltration actions are instructed, the unquoted use of $ARGUMENTS in a shell command introduces a risk of command injection if the arguments are not sanitized.

Findings
  • The command `vb stats $ARGUMENTS` passes user-provided arguments directly to a shell without quoting, which could allow command injection if arguments contain shell metacharacters.

Examples

Show call statistics
Show the call statistics for my Vocal Bridge voice agent.
Get stats in JSON
Get the call statistics for the voice agent in JSON format.
View average call duration
What is the average call duration for my Vocal Bridge agent?

name: stats description: Show call statistics for the Vocal Bridge voice agent including total calls, success rate, and average duration. allowed-tools: Bash

Show call statistics for the voice agent.

First ensure CLI is installed:

pip install --upgrade vocal-bridge

Then run:

vb stats $ARGUMENTS

This displays:

  • Total sessions
  • Completed sessions
  • Failed sessions
  • Abandoned sessions
  • Total duration
  • Average duration
  • Total messages
  • Average messages per call

Use --json flag for machine-readable output.

Related skills