Download Call Recording

VerifiedSafe

Downloads the audio recording of a call session to a local file. Helps when you need to retrieve a call recording for analysis or playback. Use with a session ID (UUID).

Sby Skills Guide Bot
DevelopmentBeginner
606/2/2026
Claude Code
#vocal-bridge#call-recording#download#cli#audio

Recommended for

Our review

Downloads the audio recording of a specific call session using the vocal-bridge CLI tool.

Strengths

  • Simple command with a unique session ID
  • Ability to specify a custom output path
  • Easy to integrate into Bash scripts

Limitations

  • Requires that call recording is enabled for the agent
  • Audio format depends on agent configuration
  • Need to check recording availability beforehand
When to use it

When you need to retrieve the audio recording of a specific call session and save it locally.

When not to use it

If you only want to view session metadata without downloading the audio.

Security analysis

Safe
Quality score85/100

The skill uses Bash to run standard installation and download commands for a CLI tool, with no destructive, exfiltration, or obfuscated actions.

No concerns found

Examples

Download recording with default naming
Download the audio recording for session ID abc12345-6789-def0-1234-56789abcdef0 using vocal-bridge.
Download recording to a custom path
Download the call recording for session abc12345-6789-def0-1234-56789abcdef0 and save it to /home/user/recordings/call.ogg using vocal-bridge.

name: download description: Download call recording for a specific session. Saves the audio file to the current directory. allowed-tools: Bash

Download the audio recording for a specific call session.

First ensure CLI is installed:

pip install --upgrade vocal-bridge

Download Recording

$ARGUMENTS should contain a session ID (UUID):

vb logs download $ARGUMENTS

This downloads the audio file to the current directory with filename recording_<id>.<format>.

Custom Output Path

To save to a specific location, use the -o flag:

vb logs download <session_id> -o /path/to/call.ogg

Notes

  • Recordings are only available if the agent has call recording enabled
  • Audio format depends on agent configuration (usually ogg or wav)
  • Use /vocal-bridge:logs <session_id> first to check if a recording is available
Related skills