Our review
Views call logs for the Vocal Bridge voice agent, including session details and transcripts.
Strengths
- Simple syntax for listing and filtering logs
- Detailed view including full transcript
- JSON support for automated processing
Limitations
- Requires the 'vocal-bridge' CLI to be installed first
- Depends on Vocal Bridge infrastructure
- Recordings are not directly downloadable via this command
When you need to review the call history of a Vocal Bridge voice agent or analyze a specific session.
If you need to modify logs or manage the underlying infrastructure; this command is read-only.
Security analysis
CautionThe skill uses Bash to execute a CLI tool for viewing logs. While the commands are legitimate, the use of Bash with user-supplied arguments without sanitization poses a command injection risk. Additionally, installing a package via pip introduces a supply chain risk, though the package appears to be from a known source.
- •Uses Bash with unsanitized arguments, potentially allowing command injection if $ARGUMENTS is not properly validated.
- •Installs a Python package via pip, introducing a supply chain risk if the package is compromised or impersonated.
Examples
Show the last 10 call logs from Vocal BridgeList all completed calls from Vocal Bridge with status completedGet the full transcript and details for call session abc12345-xxxx-xxxx-xxxx-xxxxxxxxxxxx from Vocal Bridgename: logs description: View call logs for the Vocal Bridge voice agent. Can list recent calls or show details of a specific session including transcript. allowed-tools: Bash
View call logs for the voice agent.
First ensure CLI is installed:
pip install --upgrade vocal-bridge
List Recent Logs
If $ARGUMENTS is empty or contains options, list recent logs:
vb logs $ARGUMENTS
Common options:
-n 50- Show 50 logs (default 20)--status completed- Filter by status (completed/failed/abandoned/in_progress)--json- Output as JSON
View Session Details
If $ARGUMENTS contains a UUID (session ID), show details:
vb logs <session_id>
This shows:
- Session ID and status
- Start/end time and duration
- Message count
- Caller phone and direction
- Full transcript
- Error message (if failed)
- Recording availability (if available, use
/vocal-bridge:download <session_id>to download)
Use --json flag for machine-readable output.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.