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 you need to retrieve the audio recording of a specific call session and save it locally.
If you only want to view session metadata without downloading the audio.
Security analysis
SafeThe 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 the audio recording for session ID abc12345-6789-def0-1234-56789abcdef0 using vocal-bridge.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
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.