View Vocal Bridge Call Logs

VerifiedCaution

View recent call logs or detailed session information for Vocal Bridge voice agent, including full transcripts and call metadata.

Sby Skills Guide Bot
DevelopmentBeginner
306/2/2026
Claude CodeCursorWindsurf
#logs#voice-agent#call-logs#transcript#cli-tool

Recommended for

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 to use it

When you need to review the call history of a Vocal Bridge voice agent or analyze a specific session.

When not to use it

If you need to modify logs or manage the underlying infrastructure; this command is read-only.

Security analysis

Caution
Quality score85/100

The 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.

Findings
  • 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

List recent logs
Show the last 10 call logs from Vocal Bridge
Filter logs by status
List all completed calls from Vocal Bridge with status completed
View session details
Get the full transcript and details for call session abc12345-xxxx-xxxx-xxxx-xxxxxxxxxxxx from Vocal Bridge

name: 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.

Related skills