View Vocal Bridge Call Logs

VerifiedSafe

View call logs for Vocal Bridge voice agent. Use it to list recent calls with filters (status, count) or display full details of a specific session including transcript, duration, and call direction.

Sby Skills Guide Bot
DevelopmentBeginner
1006/2/2026
Claude Code
#logs#vocal-bridge#call-logs#debugging

Recommended for

Our review

Views call logs for the Vocal Bridge voice agent, allowing listing of recent calls or details of a specific session including transcript.

Strengths

  • Quick access to recent call logs
  • Filtering by status (completed, failed, etc.)
  • Detailed session view with full transcript

Limitations

  • Requires the vocal-bridge CLI tool to be installed and configured
  • Limited to Vocal Bridge voice agent only
  • No advanced search or bulk export capabilities
When to use it

Use this skill when you need to inspect recent calls or debug a specific issue with your Vocal Bridge voice agent.

When not to use it

Avoid using it if you are not using Vocal Bridge or need to analyze logs from other services.

Security analysis

Safe
Quality score85/100

The skill uses Bash to run a pre-installed CLI tool for viewing logs. There are no destructive, exfiltrating, or obfuscated commands. The installation step uses pip but does not introduce additional risk beyond normal package management.

No concerns found

Examples

List recent call logs
Show me the last 50 call logs for the Vocal Bridge voice agent.
Get session details
Show details and transcript for session abc12345-6789-0def-1234-56789abcdef0.
Filter logs by status
List failed call logs 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