Download audio recordings from Coval voice simulations. Use when user wants to listen to or analyze call recordings.
Scanned 9/19/2026
Install to Claude Code
npx -y skills add coval-ai/coval-external-skills --skill download-audio --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Download Audio?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/coval-ai-download-audio)More formats (shields.io, HTML) on the badges page.
---
name: download-audio
description: Download audio recordings from Coval voice simulations. Use when user wants to listen to or analyze call recordings.
argument-hint: "[simulation-id or run-id]"
---
# Download Simulation Audio
Download audio for `$ARGUMENTS`.
## Single Simulation
```bash
coval simulations audio <simulation_id> -o recording.wav
```
This downloads the audio file with a progress bar.
## Bulk Download (All from Run)
### Step 1: List Simulations with Audio
```bash
coval simulations list --run-id <run_id> --format json | \
jq -r '.[] | select(.has_audio == true) | .simulation_id'
```
### Step 2: Download Each
```bash
for sim_id in $(coval simulations list --run-id <run_id> --format json | jq -r '.[] | select(.has_audio == true) | .simulation_id'); do
coval simulations audio $sim_id -o "${sim_id}.wav"
done
```
### Step 3: Organize
Suggest organizing by test case:
```bash
mkdir -p audio/<run_id>
# Download files into organized directory
```
## Audio URL Only
To get the URL without downloading:
```bash
coval simulations audio <simulation_id>
```
This prints the presigned URL (valid for 1 hour).
## Notes
- Audio is only available for voice agent simulations
- URLs expire after 1 hour
- Format is typically WAV or MP3
- Files include both agent and simulated caller audio
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!