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
Use when you need a quick overview of voice agent call performance.
Do not use for detailed per-call analysis or real-time monitoring.
Security analysis
CautionThe 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.
- •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 the call statistics for my Vocal Bridge voice agent.Get the call statistics for the voice agent in JSON format.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.
Prompt Engineering
Data & AI
Prompt engineering best practices and templates to maximize AI outputs.
Data Visualization
Data & AI
Generates data visualizations and charts tailored to your data.
RAG Architecture Setup
Data & AI
Setup guide for RAG (Retrieval-Augmented Generation) architectures.